[FFmpeg-cvslog] avformat/iff: Fix "source comment"

Michael Niedermayer git at videolan.org
Tue Aug 5 18:23:02 CEST 2014


ffmpeg | branch: master | Michael Niedermayer <michaelni at gmx.at> | Tue Aug  5 18:16:46 2014 +0200| [592a854f8c8bf402efad5d651363bdb17f85786a] | committer: Michael Niedermayer

avformat/iff: Fix "source comment"

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

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

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

diff --git a/libavformat/iff.c b/libavformat/iff.c
index 62f0b83..2a06331 100644
--- a/libavformat/iff.c
+++ b/libavformat/iff.c
@@ -584,7 +584,7 @@ static int iff_read_header(AVFormatContext *s)
                     }
                     break;
                 case 2:
-                    tag = ref < FF_ARRAY_ELEMS(dsd_source_comment) ? dsd_history_comment[ref] : "source_comment";
+                    tag = ref < FF_ARRAY_ELEMS(dsd_source_comment) ? dsd_source_comment[ref] : "source_comment";
                     break;
                 case 3:
                     tag = ref < FF_ARRAY_ELEMS(dsd_history_comment) ? dsd_history_comment[ref] : "file_history";



More information about the ffmpeg-cvslog mailing list