Browse Source

avformat/iff: Fix "source comment"

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
tags/n2.4
Michael Niedermayer 11 years ago
parent
commit
592a854f8c
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavformat/iff.c

+ 1
- 1
libavformat/iff.c View 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";


Loading…
Cancel
Save