]> git.sesse.net Git - ffmpeg/commitdiff
avformat/iff: Fix "source comment"
authorMichael Niedermayer <michaelni@gmx.at>
Tue, 5 Aug 2014 16:16:46 +0000 (18:16 +0200)
committerMichael Niedermayer <michaelni@gmx.at>
Tue, 5 Aug 2014 16:16:46 +0000 (18:16 +0200)
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
libavformat/iff.c

index 62f0b8387c297d35e1d209ff3cc14bf2c1a84fa1..2a0633158f1101b99050cba432c7d574aa6d3f09 100644 (file)
@@ -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";