diff --git a/libavcodec/utils.c b/libavcodec/utils.c index 2453a5d1d978fb7a28fb574c2d8e4100f1ccc259..2cc33ba7177035c681f00d073999c2f841e0c7a7 100644 --- a/libavcodec/utils.c +++ b/libavcodec/utils.c @@ -2471,6 +2471,7 @@ int av_get_audio_frame_duration(AVCodecContext *avctx, int frame_bytes) return 6 * frame_bytes / ch; case AV_CODEC_ID_PCM_LXF: return 2 * (frame_bytes / (5 * ch)); + case AV_CODEC_ID_IAC: case AV_CODEC_ID_IMC: return 4 * frame_bytes / ch; }