diff options
author | Justin Ruggles <justin.ruggles@gmail.com> | 2012-01-08 19:50:31 -0500 |
---|---|---|
committer | Justin Ruggles <justin.ruggles@gmail.com> | 2012-01-11 08:56:24 -0500 |
commit | 82390f57d1714fdc952c15ba91511d93f2e59bfc (patch) | |
tree | efad4f447a332c17c0fd4c5dd9dcf55e2b6c0ace /libavcodec/gsmdec_template.c | |
parent | f1355dfcd6cf0a4d413d7b04c2c166b825d559ce (diff) | |
download | ffmpeg-82390f57d1714fdc952c15ba91511d93f2e59bfc.tar.gz |
avcodec: add GSM parser
The WAVE demuxer returns packets with many blocks per frame, which needs to be
parsed into single blocks. This has a side-effect of fixing the timestamps.
Diffstat (limited to 'libavcodec/gsmdec_template.c')
-rw-r--r-- | libavcodec/gsmdec_template.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/gsmdec_template.c b/libavcodec/gsmdec_template.c index 7e57c7183f..b5222af4da 100644 --- a/libavcodec/gsmdec_template.c +++ b/libavcodec/gsmdec_template.c @@ -25,6 +25,7 @@ */ #include "get_bits.h" +#include "gsm.h" #include "gsmdec_data.h" static void apcm_dequant_add(GetBitContext *gb, int16_t *dst) |