Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarl Eugen Hoyos <cehoyos@ag.or.at>2012-11-19 13:19:50 +0400
committerCarl Eugen Hoyos <cehoyos@ag.or.at>2012-11-19 13:19:50 +0400
commita5d4e94a97a692e55fa47d8a60f79fb827d15315 (patch)
tree4d40d380a61ddbb8c876ddbda59281c4ec673a97 /libavformat/cafenc.c
parentba353436a375b92659366aeec8c0139da08f8a0b (diff)
Support iLBC in caf.
Diffstat (limited to 'libavformat/cafenc.c')
-rw-r--r--libavformat/cafenc.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/libavformat/cafenc.c b/libavformat/cafenc.c
index cc39a8341c..92b61c9e1e 100644
--- a/libavformat/cafenc.c
+++ b/libavformat/cafenc.c
@@ -75,6 +75,7 @@ static uint32_t samples_per_packet(enum AVCodecID codec_id, int channels) {
return 64;
case AV_CODEC_ID_AMR_NB:
case AV_CODEC_ID_GSM:
+ case AV_CODEC_ID_ILBC:
case AV_CODEC_ID_QCELP:
return 160;
case AV_CODEC_ID_GSM_MS: