[FFmpeg-cvslog] r19720 - trunk/libavcodec/ffv1.c
cehoyos
subversion
Wed Aug 26 23:25:43 CEST 2009
Author: cehoyos
Date: Wed Aug 26 23:25:43 2009
New Revision: 19720
Log:
Fix comments after switching from CABAC to range coder in r3658.
Patch by Lars T?uber, lars D taeuber A gmx D net
Modified:
trunk/libavcodec/ffv1.c
Modified: trunk/libavcodec/ffv1.c
==============================================================================
--- trunk/libavcodec/ffv1.c Wed Aug 26 23:23:21 2009 (r19719)
+++ trunk/libavcodec/ffv1.c Wed Aug 26 23:25:43 2009 (r19720)
@@ -212,7 +212,7 @@ typedef struct FFV1Context{
int picture_number;
AVFrame picture;
int plane_count;
- int ac; ///< 1-> CABAC 0-> golomb rice
+ int ac; ///< 1=range coder <-> 0=golomb rice
PlaneContext plane[MAX_PLANES];
int16_t quant_table[5][256];
int run_index;
@@ -736,7 +736,6 @@ static int encode_frame(AVCodecContext *
uint8_t keystate=128;
ff_init_range_encoder(c, buf, buf_size);
-// ff_init_cabac_states(c, ff_h264_lps_range, ff_h264_mps_state, ff_h264_lps_state, 64);
ff_build_rac_states(c, 0.05*(1LL<<32), 256-8);
*p = *pict;
More information about the ffmpeg-cvslog
mailing list