diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2003-12-12 19:26:55 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2003-12-12 19:26:55 +0000 |
commit | fb0666392c0f90eeed96ff39d19ff19554e22ffc (patch) | |
tree | 8827fa2362f28635719c551aba4705ce7161a71b /libavcodec/mpegvideo.h | |
parent | 7a0f9d7e7d03ec7af11f77d474323fedbaa82368 (diff) | |
download | ffmpeg-fb0666392c0f90eeed96ff39d19ff19554e22ffc.tar.gz |
CBR improvements
Originally committed as revision 2601 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/mpegvideo.h')
-rw-r--r-- | libavcodec/mpegvideo.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/mpegvideo.h b/libavcodec/mpegvideo.h index 5aa7e1460d..c47159d77c 100644 --- a/libavcodec/mpegvideo.h +++ b/libavcodec/mpegvideo.h @@ -93,7 +93,7 @@ typedef struct RateControlContext{ FILE *stats_file; int num_entries; ///< number of RateControlEntries RateControlEntry *entry; - int buffer_index; ///< amount of bits in the video/audio buffer + double buffer_index; ///< amount of bits in the video/audio buffer Predictor pred[5]; double short_term_qsum; ///< sum of recent qscales double short_term_qcount; ///< count of recent qscales |