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:
authorJustin Ruggles <justin.ruggles@gmail.com>2012-01-09 04:50:31 +0400
committerJustin Ruggles <justin.ruggles@gmail.com>2012-01-11 17:56:24 +0400
commit82390f57d1714fdc952c15ba91511d93f2e59bfc (patch)
treeefad4f447a332c17c0fd4c5dd9dcf55e2b6c0ace /libavcodec/libgsm.c
parentf1355dfcd6cf0a4d413d7b04c2c166b825d559ce (diff)
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/libgsm.c')
-rw-r--r--libavcodec/libgsm.c7
1 files changed, 2 insertions, 5 deletions
diff --git a/libavcodec/libgsm.c b/libavcodec/libgsm.c
index 16d9972f2c..1fa04cf9d9 100644
--- a/libavcodec/libgsm.c
+++ b/libavcodec/libgsm.c
@@ -27,13 +27,10 @@
// The idiosyncrasies of GSM-in-WAV are explained at http://kbs.cs.tu-berlin.de/~jutta/toast.html
-#include "avcodec.h"
#include <gsm/gsm.h>
-// gsm.h misses some essential constants
-#define GSM_BLOCK_SIZE 33
-#define GSM_MS_BLOCK_SIZE 65
-#define GSM_FRAME_SIZE 160
+#include "avcodec.h"
+#include "gsm.h"
static av_cold int libgsm_encode_init(AVCodecContext *avctx) {
if (avctx->channels > 1) {