Commit dc239b3b authored by Paul B Mahol's avatar Paul B Mahol

av_get_audio_frame_duration: add IAC

Signed-off-by: 's avatarPaul B Mahol <onemda@gmail.com>
parent 0e4d34e0
......@@ -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;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment