mirror of https://git.ffmpeg.org/ffmpeg.git
aiffdec: set block_duration to 1 for PCM codecs that are supported in AIFF-C
This commit is contained in:
parent
b38b7cc392
commit
f036342b4b
|
@ -123,6 +123,13 @@ static unsigned int get_aiff_header(AVFormatContext *s, int size,
|
||||||
aiff->block_duration = 1;
|
aiff->block_duration = 1;
|
||||||
} else {
|
} else {
|
||||||
switch (codec->codec_id) {
|
switch (codec->codec_id) {
|
||||||
|
case CODEC_ID_PCM_F32BE:
|
||||||
|
case CODEC_ID_PCM_F64BE:
|
||||||
|
case CODEC_ID_PCM_S16LE:
|
||||||
|
case CODEC_ID_PCM_ALAW:
|
||||||
|
case CODEC_ID_PCM_MULAW:
|
||||||
|
aiff->block_duration = 1;
|
||||||
|
break;
|
||||||
case CODEC_ID_ADPCM_IMA_QT:
|
case CODEC_ID_ADPCM_IMA_QT:
|
||||||
codec->block_align = 34*codec->channels;
|
codec->block_align = 34*codec->channels;
|
||||||
break;
|
break;
|
||||||
|
|
Loading…
Reference in New Issue