diff options
author | Vladimir Voroshilov <voroshil@gmail.com> | 2009-06-14 02:29:39 +0000 |
---|---|---|
committer | Vladimir Voroshilov <voroshil@gmail.com> | 2009-06-14 02:29:39 +0000 |
commit | 730c1e4a0660f0c72950bbb61c17fd79453de786 (patch) | |
tree | 3ca5450235d068a9c1caac3028916c2c82f3f79e /libavcodec/g729.h | |
parent | d7bb185f993fe10bf7feec80e262d2e39147c31b (diff) | |
download | ffmpeg-730c1e4a0660f0c72950bbb61c17fd79453de786.tar.gz |
Replace MAX_SUBFRAME_SIZE and ctx->subframe_size with SUBFRAME_SIZE,
since subframe length is the same in all G.729 modes.
Originally committed as revision 19187 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/g729.h')
-rw-r--r-- | libavcodec/g729.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/g729.h b/libavcodec/g729.h index 3fdf1ee650..462cf8f1ac 100644 --- a/libavcodec/g729.h +++ b/libavcodec/g729.h @@ -22,8 +22,8 @@ #define AVCODEC_G729_H /** - * maximum possible subframe size + * subframe size */ -#define MAX_SUBFRAME_SIZE 44 +#define SUBFRAME_SIZE 40 #endif // AVCODEC_G729_H |