Commit e1a8164d authored by Clément Bœsch's avatar Clément Bœsch Committed by Clément Bœsch

mp3enc: fix playback with mp3 encoded files on some devices.

This partially reverts 1fea432b; header variable needs to keep its value
in case it triggers "if (needed <= c.frame_size)".
parent 940d3cc0
......@@ -160,7 +160,7 @@ static int mp3_write_xing(AVFormatContext *s)
int best_bitrate_idx;
int best_bitrate_error= INT_MAX;
int64_t xing_offset;
int32_t header;
int32_t header, mask;
MPADecodeHeader c;
int srate_idx, i, channels;
int needed;
......@@ -200,8 +200,9 @@ static int mp3_write_xing(AVFormatContext *s)
for (bitrate_idx= best_bitrate_idx;; bitrate_idx++) {
if (15 == bitrate_idx)
return -1;
avpriv_mpegaudio_decode_header(&c, header | (bitrate_idx << (4+8)));
mask = bitrate_idx << (4+8);
header |= mask;
avpriv_mpegaudio_decode_header(&c, header);
xing_offset=xing_offtbl[c.lsf == 1][c.nb_channels == 1];
needed = 4 // header
+ xing_offset
......@@ -213,6 +214,7 @@ static int mp3_write_xing(AVFormatContext *s)
if (needed <= c.frame_size)
break;
header &= ~mask;
}
avio_wb32(s->pb, header);
......
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