Mercurial > libavformat.hg
changeset 1375:c42cb95fa0d4 libavformat
use av_get_bits_per_sample, compute block align if not set
author | bcoudurier |
---|---|
date | Wed, 11 Oct 2006 10:15:05 +0000 |
parents | 75e006876c55 |
children | 1d7727481acf |
files | aiff.c |
diffstat | 1 files changed, 8 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/aiff.c Wed Oct 11 10:09:45 2006 +0000 +++ b/aiff.c Wed Oct 11 10:15:05 2006 +0000 @@ -208,7 +208,14 @@ put_be32(pb, 0); /* Number of frames */ if (!enc->bits_per_sample) - enc->bits_per_sample = (enc->block_align<<3) / enc->channels; + enc->bits_per_sample = av_get_bits_per_sample(enc->codec_id); + if (!enc->bits_per_sample) { + av_log(s, AV_LOG_ERROR, "could not compute bits per sample\n"); + return -1; + } + if (!enc->block_align) + enc->block_align = (enc->bits_per_sample * enc->channels) >> 3; + put_be16(pb, enc->bits_per_sample); /* Sample size */ sample_rate = av_dbl2ext((double)enc->sample_rate);