diff options
author | Diego Biurrun <diego@biurrun.de> | 2014-03-26 04:41:29 -0700 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2014-04-04 19:08:05 +0200 |
commit | 5f9220437025a0d66abc68323b4ce9b50e72d51b (patch) | |
tree | ad5169f00610fce0194a61287bced043e065ec5a /libavcodec/dv.c | |
parent | 57b5b84e208ad61ffdd74ad849bed212deb92bc5 (diff) | |
download | ffmpeg-5f9220437025a0d66abc68323b4ce9b50e72d51b.tar.gz |
dsputil: Move DV-specific ff_zigzag248_direct table to dvdata
Diffstat (limited to 'libavcodec/dv.c')
-rw-r--r-- | libavcodec/dv.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; |