Skip to content

Commit

Permalink
aiffdec: set block_duration to 1 for PCM codecs that are supported in…
Browse files Browse the repository at this point in the history
… AIFF-C
  • Loading branch information
justinruggles committed Mar 22, 2012
1 parent b38b7cc commit f036342
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions libavformat/aiffdec.c
Original file line number Diff line number Diff line change
Expand Up @@ -123,6 +123,13 @@ static unsigned int get_aiff_header(AVFormatContext *s, int size,
aiff->block_duration = 1;
} else {
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:
codec->block_align = 34*codec->channels;
break;
Expand Down

0 comments on commit f036342

Please sign in to comment.