Browse Source

movenc: write 'chan' tag for AC-3 in MOV

tags/n0.9
Justin Ruggles 14 years ago
parent
commit
60cd802daf
1 changed files with 1 additions and 0 deletions
  1. +1
    -0
      libavformat/movenc.c

+ 1
- 0
libavformat/movenc.c View File

@@ -386,6 +386,7 @@ static int mov_write_wave_tag(AVIOContext *pb, MOVTrack *track)
} else if (track->enc->codec_id == CODEC_ID_AMR_NB) {
mov_write_amr_tag(pb, track);
} else if (track->enc->codec_id == CODEC_ID_AC3) {
mov_write_chan_tag(pb, track);
mov_write_ac3_tag(pb, track);
} else if (track->enc->codec_id == CODEC_ID_ALAC) {
mov_write_extradata_tag(pb, track);


Loading…
Cancel
Save