comparison aaccoder.c @ 9967:cd01ef12809a libavcodec

Remove an unused field from the BandCodingPath struct.
author alexc
date Mon, 20 Jul 2009 21:52:03 +0000
parents fd487090d901
children 4b6f16da6652
comparison
equal deleted inserted replaced
9966:fd487090d901 9967:cd01ef12809a
345 /** 345 /**
346 * structure used in optimal codebook search 346 * structure used in optimal codebook search
347 */ 347 */
348 typedef struct BandCodingPath { 348 typedef struct BandCodingPath {
349 int prev_idx; ///< pointer to the previous path point 349 int prev_idx; ///< pointer to the previous path point
350 int codebook; ///< codebook for coding band run
351 float cost; ///< path cost 350 float cost; ///< path cost
352 int run; 351 int run;
353 } BandCodingPath; 352 } BandCodingPath;
354 353
355 /** 354 /**