diff options
author | Ganesh Ajjanagadde <gajjanagadde@gmail.com> | 2015-08-11 13:04:09 -0400 |
---|---|---|
committer | Michael Niedermayer <michael@niedermayer.cc> | 2015-08-11 23:16:35 +0200 |
commit | 0581ab2cacccb96740ef246972f12d7a34f1cc0f (patch) | |
tree | aa14849dc7d4cd3541c23c6adf132e9da330a566 /libavcodec/g729.h | |
parent | daf2c35f52e0193b7fc39fc954767bcbc1b52a39 (diff) | |
download | ffmpeg-0581ab2cacccb96740ef246972f12d7a34f1cc0f.tar.gz |
avcodec/g729: add g729_parser
Add trivial g729 parser; fixes Ticket4753
Signed-off-by: Ganesh Ajjanagadde <gajjanagadde@gmail.com>
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
Diffstat (limited to 'libavcodec/g729.h')
-rw-r--r-- | libavcodec/g729.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libavcodec/g729.h b/libavcodec/g729.h index 61683130a9..7c5f693a7a 100644 --- a/libavcodec/g729.h +++ b/libavcodec/g729.h @@ -26,4 +26,8 @@ */ #define SUBFRAME_SIZE 40 +/* bytes per block */ +#define G729_8K_BLOCK_SIZE 10 +#define G729D_6K4_BLOCK_SIZE 8 + #endif // AVCODEC_G729_H |