Browse code

Remove an unused field from the BandCodingPath struct.

Originally committed as revision 19473 to svn://svn.ffmpeg.org/ffmpeg/trunk

Alex Converse authored on 2009/07/21 06:52:03
Showing 1 changed files
... ...
@@ -347,7 +347,6 @@ static void quantize_and_encode_band(struct AACEncContext *s, PutBitContext *pb,
347 347
  */
348 348
 typedef struct BandCodingPath {
349 349
     int prev_idx; ///< pointer to the previous path point
350
-    int codebook; ///< codebook for coding band run
351 350
     float cost;   ///< path cost
352 351
     int run;
353 352
 } BandCodingPath;