diff options
author | Ronald S. Bultje <rsbultje@gmail.com> | 2010-08-25 13:42:28 +0000 |
---|---|---|
committer | Ronald S. Bultje <rsbultje@gmail.com> | 2010-08-25 13:42:28 +0000 |
commit | 3a0885146c61d6eff4da4006f6459e720fcf5ccd (patch) | |
tree | 406da1209da75dc7d303966665da812273e31ecb /libavcodec/dsputil.c | |
parent | 2401660d2f200007d00337a86dc4d88f51a2f3f8 (diff) | |
download | ffmpeg-3a0885146c61d6eff4da4006f6459e720fcf5ccd.tar.gz |
Move vp6_filter_diag4() from DSPContext to VP56DSPContext.
Originally committed as revision 24921 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/dsputil.c')
-rw-r--r-- | libavcodec/dsputil.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/libavcodec/dsputil.c b/libavcodec/dsputil.c index 534f03f885..fcd5a38472 100644 --- a/libavcodec/dsputil.c +++ b/libavcodec/dsputil.c @@ -4428,9 +4428,6 @@ av_cold void dsputil_init(DSPContext* c, AVCodecContext *avctx) c->vp3_v_loop_filter= ff_vp3_v_loop_filter_c; c->vp3_idct_dc_add= ff_vp3_idct_dc_add_c; } - if (CONFIG_VP6_DECODER) { - c->vp6_filter_diag4= ff_vp6_filter_diag4_c; - } c->h261_loop_filter= h261_loop_filter_c; |