# HG changeset patch # User kostya # Date 1151723968 0 # Node ID 9bf829b51da0afa58d56427b1333549826de276e # Parent a1c2e1603be95da7dad299bd9de821d19b2ad214 Remove unused variable (and it wasn't free'd too) diff -r a1c2e1603be9 -r 9bf829b51da0 vc1.c --- a/vc1.c Sat Jul 01 03:17:54 2006 +0000 +++ b/vc1.c Sat Jul 01 03:19:28 2006 +0000 @@ -307,7 +307,6 @@ */ uint8_t mvrange; uint8_t pquantizer; ///< Uniform (over sequence) quantizer in use - uint8_t *previous_line_cbpcy; ///< To use for predicted CBPCY VLC *cbpcy_vlc; ///< CBPCY VLC table int tt_index; ///< Index for Transform Type tables uint8_t* mv_type_mb_plane; ///< bitplane for mv_type == (4MV) @@ -2519,10 +2518,6 @@ /* Allocate mb bitplanes */ v->mv_type_mb_plane = av_malloc(s->mb_stride * s->mb_height); - /* For predictors */ - v->previous_line_cbpcy = (uint8_t *)av_malloc(s->mb_stride*4); - if (!v->previous_line_cbpcy) return -1; - /* Init coded blocks info */ if (v->profile == PROFILE_ADVANCED) {