Browse Source

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)".
tags/n0.10
Clément Bœsch Clément Bœsch 13 years ago
parent
commit
e1a8164d62
1 changed files with 5 additions and 3 deletions
  1. +5
    -3
      libavformat/mp3enc.c

+ 5
- 3
libavformat/mp3enc.c View File

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


Loading…
Cancel
Save