1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2024-12-23 12:43:46 +02:00

avcodec/dv: remove unused var dv100qstep

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
Martin Vignali 2015-03-19 22:10:57 +01:00 committed by Michael Niedermayer
parent 57e8047972
commit 5f9d30ae8f

View File

@ -173,13 +173,6 @@ static inline void dv_calc_mb_coordinates(const AVDVProfile *d, int chan,
}
}
/* quantization quanta by QNO for DV100 */
static const uint8_t dv100_qstep[16] = {
1, /* QNO = 0 and 1 both have no quantization */
1,
2, 3, 4, 5, 6, 7, 8, 16, 18, 20, 22, 24, 28, 52
};
static const uint8_t dv_quant_areas[4] = { 6, 21, 43, 64 };
int ff_dv_init_dynamic_tables(DVVideoContext *ctx, const AVDVProfile *d)