Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mpc-hc/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2014-08-05 20:16:46 +0400
committerMichael Niedermayer <michaelni@gmx.at>2014-08-05 20:16:46 +0400
commit592a854f8c8bf402efad5d651363bdb17f85786a (patch)
tree03364889e67d67f89e28544cfd47d3bf9abd169d /libavformat/iff.c
parent2569227689265bfd1fecf827719f730fb60219ab (diff)
avformat/iff: Fix "source comment"
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavformat/iff.c')
-rw-r--r--libavformat/iff.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/iff.c b/libavformat/iff.c
index 62f0b8387c..2a0633158f 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";