diff options
author | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2011-07-09 17:13:13 +0200 |
---|---|---|
committer | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2011-07-09 17:13:13 +0200 |
commit | 43e96d0466094e3780260fa896046b1ecbb8ff06 (patch) | |
tree | 46e419170f9b6f460f35c224429f83d76b8240b0 /libavformat/cafenc.c | |
parent | a7aabda267d6e2277ac8e234a603ebee3ede2fca (diff) | |
download | ffmpeg-43e96d0466094e3780260fa896046b1ecbb8ff06.tar.gz |
Support gsm_ms in caf files.
Diffstat (limited to 'libavformat/cafenc.c')
-rw-r--r-- | libavformat/cafenc.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavformat/cafenc.c b/libavformat/cafenc.c index 4156c49f7a..7cb4777bc6 100644 --- a/libavformat/cafenc.c +++ b/libavformat/cafenc.c @@ -72,6 +72,8 @@ static uint32_t samples_per_packet(enum CodecID codec_id) { case CODEC_ID_GSM: case CODEC_ID_QCELP: return 160; + case CODEC_ID_GSM_MS: + return 320; case CODEC_ID_MP1: return 384; case CODEC_ID_MP2: |