[FFmpeg-cvslog] avformat/rtpdec_dv: fix bundled audio typo

Thomas Volkert git at videolan.org
Sat Feb 21 22:43:48 CET 2015


ffmpeg | branch: master | Thomas Volkert <thomas at homer-conferencing.com> | Sat Feb 21 22:36:18 2015 +0100| [7a459be8e7551cd1a00a7f4e9f28a9d3ec1fa337] | committer: Michael Niedermayer

avformat/rtpdec_dv: fix bundled audio typo

Signed-off-by: Michael Niedermayer <michaelni at gmx.at>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=7a459be8e7551cd1a00a7f4e9f28a9d3ec1fa337
---

 libavformat/rtpdec_dv.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libavformat/rtpdec_dv.c b/libavformat/rtpdec_dv.c
index b88daf1..94ac3d6 100644
--- a/libavformat/rtpdec_dv.c
+++ b/libavformat/rtpdec_dv.c
@@ -68,7 +68,7 @@ static av_cold int dv_sdp_parse_fmtp_config(AVFormatContext *s,
                                             char *attr, char *value)
 {
     /* does the DV stream include audio? */
-    if (!strcmp(attr, "audio") && !strcmp(value, "audio"))
+    if (!strcmp(attr, "audio") && !strcmp(value, "bundled"))
         dv_data->bundled_audio = 1;
 
     /* extract the DV profile */



More information about the ffmpeg-cvslog mailing list