lavf/movenc: Write G.726 bitrate to make the files decodable.

Fixes ticket #4069.
This commit is contained in:
Carl Eugen Hoyos 2014-11-03 00:38:13 +01:00
parent 9c097f1cfc
commit e6b7246a68
1 changed files with 2 additions and 0 deletions

View File

@ -938,6 +938,8 @@ static int mov_write_audio_tag(AVIOContext *pb, MOVTrack *track)
if (track->enc->codec_id == AV_CODEC_ID_PCM_U8 ||
track->enc->codec_id == AV_CODEC_ID_PCM_S8)
avio_wb16(pb, 8); /* bits per sample */
else if (track->enc->codec_id == AV_CODEC_ID_ADPCM_G726)
avio_wb16(pb, track->enc->bits_per_coded_sample);
else
avio_wb16(pb, 16);
avio_wb16(pb, track->audio_vbr ? -2 : 0); /* compression ID */