diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2014-05-18 04:02:44 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-05-18 04:04:20 +0200 |
commit | 9646ea63df78fe79b2f9fa3e8a0f08e48bd074bb (patch) | |
tree | bdc2b87dd6a318c096850f6f2efc92bd9f66744f | |
parent | 0421409c5216fa198e9694868d6dd13c4c60235e (diff) | |
download | ffmpeg-9646ea63df78fe79b2f9fa3e8a0f08e48bd074bb.tar.gz |
avformat/mmf: switch to AVFMT_FLAG_BITEXACT
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r-- | libavformat/mmf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/mmf.c b/libavformat/mmf.c index cb87a6dddb..a023dd6170 100644 --- a/libavformat/mmf.c +++ b/libavformat/mmf.c @@ -69,7 +69,7 @@ static int mmf_write_header(AVFormatContext *s) AVIOContext *pb = s->pb; int64_t pos; int rate; - const char *version = s->streams[0]->codec->flags & CODEC_FLAG_BITEXACT ? + const char *version = s->flags & AVFMT_FLAG_BITEXACT ? "VN:Lavf," : "VN:"LIBAVFORMAT_IDENT","; |