diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2012-07-23 03:45:12 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2012-07-23 03:55:28 +0200 |
commit | 1eb1392690fdf51cf2a51a8a8203d9fd48010af8 (patch) | |
tree | 77f326172c8ad2b636ae4712b6ac5b78540697a2 /libavcodec/g723_1_data.h | |
parent | d486a6eae9a2dbbbfdad43f598a44831cd259952 (diff) | |
download | ffmpeg-1eb1392690fdf51cf2a51a8a8203d9fd48010af8.tar.gz |
g723.1: various cosmetics and changes that should have no user vissible effect.
code from qatar (55c3a4f617171ad1138df684cbafa570807bc6a9)
Author of the code was probably Mohamed or Kostya
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/g723_1_data.h')
-rw-r--r-- | libavcodec/g723_1_data.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libavcodec/g723_1_data.h b/libavcodec/g723_1_data.h index 66a032490b..b62f207b23 100644 --- a/libavcodec/g723_1_data.h +++ b/libavcodec/g723_1_data.h @@ -25,8 +25,8 @@ * G723.1 compatible decoder data tables */ -#ifndef AVCODEC_G729_1_DATA_H -#define AVCODEC_G729_1_DATA_H +#ifndef AVCODEC_G723_1_DATA_H +#define AVCODEC_G723_1_DATA_H #include <stdint.h> @@ -55,7 +55,7 @@ typedef enum FrameType { UNTRANSMITTED_FRAME } FrameType; -static const uint8_t frame_size[4] = {24, 20, 4, 1}; +static const uint8_t frame_size[4] = { 24, 20, 4, 1 }; typedef enum Rate { RATE_6300, @@ -1319,4 +1319,4 @@ static const int16_t percept_flt_tbl[2][LPC_ORDER] = { {16384, 8192, 4096, 2048, 1024, 512, 256, 128, 64, 32} }; -#endif /* AVCODEC_G729_1_DATA_H */ +#endif /* AVCODEC_G723_1_DATA_H */ |