Commit fab50573 authored by Michael Niedermayer's avatar Michael Niedermayer

avformat/mp3enc: switch to AVFMT_FLAG_BITEXACT

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent d524d424
......@@ -125,7 +125,7 @@ static int mp3_write_xing(AVFormatContext *s)
int xing_offset;
int ver = 0;
int bytes_needed;
const char *vendor = (codec->flags & CODEC_FLAG_BITEXACT) ? "Lavf" : LIBAVFORMAT_IDENT;
const char *vendor = (s->flags & AVFMT_FLAG_BITEXACT) ? "Lavf" : LIBAVFORMAT_IDENT;
if (!s->pb->seekable || !mp3->write_xing)
return 0;
......
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