Browse Source

avformat/mp3enc: switch to AVFMT_FLAG_BITEXACT

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

+ 1
- 1
libavformat/mp3enc.c View File

@@ -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;


Loading…
Cancel
Save