From 7a459be8e7551cd1a00a7f4e9f28a9d3ec1fa337 Mon Sep 17 00:00:00 2001 From: Thomas Volkert Date: Sat, 21 Feb 2015 22:36:18 +0100 Subject: [PATCH] avformat/rtpdec_dv: fix bundled audio typo Signed-off-by: Michael Niedermayer --- 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 b88daf1113..94ac3d6308 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 */