Commit 543eebd5 authored by Baptiste Coudurier's avatar Baptiste Coudurier

fix mp3 muxing

Originally committed as revision 5472 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 329b1e75
...@@ -361,6 +361,7 @@ static int mov_write_audio_tag(ByteIOContext *pb, MOVTrack* track) ...@@ -361,6 +361,7 @@ static int mov_write_audio_tag(ByteIOContext *pb, MOVTrack* track)
offset_t pos = url_ftell(pb); offset_t pos = url_ftell(pb);
int version = track->mode == MODE_MOV && int version = track->mode == MODE_MOV &&
(track->enc->codec_id == CODEC_ID_AAC || (track->enc->codec_id == CODEC_ID_AAC ||
track->enc->codec_id == CODEC_ID_MP3 ||
track->enc->codec_id == CODEC_ID_PCM_S32LE || track->enc->codec_id == CODEC_ID_PCM_S32LE ||
track->enc->codec_id == CODEC_ID_PCM_S24LE); track->enc->codec_id == CODEC_ID_PCM_S24LE);
......
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