From 5f9220437025a0d66abc68323b4ce9b50e72d51b Mon Sep 17 00:00:00 2001 From: Diego Biurrun Date: Wed, 26 Mar 2014 04:41:29 -0700 Subject: dsputil: Move DV-specific ff_zigzag248_direct table to dvdata --- libavcodec/dv.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavcodec/dv.c') diff --git a/libavcodec/dv.c b/libavcodec/dv.c index a6f614a425..1a54c4efa8 100644 --- a/libavcodec/dv.c +++ b/libavcodec/dv.c @@ -311,7 +311,7 @@ av_cold int ff_dvvideo_init(AVCodecContext *avctx) /* 248DCT setup */ s->fdct[1] = dsp.fdct248; s->idct_put[1] = ff_simple_idct248_put; // FIXME: need to add it to DSP - memcpy(s->dv_zigzag[1], ff_zigzag248_direct, 64); + memcpy(s->dv_zigzag[1], ff_dv_zigzag248_direct, 64); s->avctx = avctx; avctx->chroma_sample_location = AVCHROMA_LOC_TOPLEFT; -- cgit v1.2.3