mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2024-12-21 23:10:13 +00:00
Fix muxing QDM2 mono into caf.
This commit is contained in:
parent
ef90639004
commit
7f1b3c2ca6
@ -86,8 +86,9 @@ static uint32_t samples_per_packet(enum AVCodecID codec_id, int channels) {
|
||||
return 1152;
|
||||
case AV_CODEC_ID_AC3:
|
||||
return 1536;
|
||||
case AV_CODEC_ID_ALAC:
|
||||
case AV_CODEC_ID_QDM2:
|
||||
return 2048 * channels;
|
||||
case AV_CODEC_ID_ALAC:
|
||||
return 4096;
|
||||
case AV_CODEC_ID_ADPCM_IMA_WAV:
|
||||
return (1024 - 4 * channels) * 8 / (4 * channels) + 1;
|
||||
|
Loading…
Reference in New Issue
Block a user