summaryrefslogtreecommitdiff
path: root/libavcodec/dv.c
diff options
context:
space:
mode:
authorMartin Vignali <martin.vignali@gmail.com>2015-03-19 22:10:57 +0100
committerMichael Niedermayer <michaelni@gmx.at>2015-03-20 04:39:01 +0100
commit5f9d30ae8f6a9bd7c074779bb7d25038e11402f6 (patch)
treeb8a24a82b5b8a2a3f28257e4fba27663c104d3bb /libavcodec/dv.c
parent57e8047972b499d9805a90587b3fd7c42d9f44d9 (diff)
avcodec/dv: remove unused var dv100qstep
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/dv.c')
-rw-r--r--libavcodec/dv.c7
1 files changed, 0 insertions, 7 deletions
diff --git a/libavcodec/dv.c b/libavcodec/dv.c
index 2bc7fc5ab1..4c46a530bf 100644
--- a/libavcodec/dv.c
+++ b/libavcodec/dv.c
@@ -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)