Commit 592a854f authored by Michael Niedermayer's avatar Michael Niedermayer

avformat/iff: Fix "source comment"

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 25692276
...@@ -584,7 +584,7 @@ static int iff_read_header(AVFormatContext *s) ...@@ -584,7 +584,7 @@ static int iff_read_header(AVFormatContext *s)
} }
break; break;
case 2: 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; break;
case 3: case 3:
tag = ref < FF_ARRAY_ELEMS(dsd_history_comment) ? dsd_history_comment[ref] : "file_history"; tag = ref < FF_ARRAY_ELEMS(dsd_history_comment) ? dsd_history_comment[ref] : "file_history";
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment