diff options
author | Aurelien Jacobs <aurel@gnuage.org> | 2009-02-09 23:37:31 +0000 |
---|---|---|
committer | Aurelien Jacobs <aurel@gnuage.org> | 2009-02-09 23:37:31 +0000 |
commit | 26f3ae828b38f70dd6ac4abaf1be697fa861eab6 (patch) | |
tree | 1afa2ca70f0fb6272cd346e61dc72e858af3fcc2 /libavcodec/dsputil.c | |
parent | 862c1d2f0573c81ed0929b685c55959906b4300c (diff) | |
download | ffmpeg-26f3ae828b38f70dd6ac4abaf1be697fa861eab6.tar.gz |
move vp6_filter_diag4() to a new vp6dsp.c file and use it throught dsputil
Originally committed as revision 17111 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/dsputil.c')
-rw-r--r-- | libavcodec/dsputil.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libavcodec/dsputil.c b/libavcodec/dsputil.c index d4d4d2d829..b33fb501b9 100644 --- a/libavcodec/dsputil.c +++ b/libavcodec/dsputil.c @@ -4597,6 +4597,9 @@ void dsputil_init(DSPContext* c, AVCodecContext *avctx) c->vp3_h_loop_filter= ff_vp3_h_loop_filter_c; c->vp3_v_loop_filter= ff_vp3_v_loop_filter_c; } + if (CONFIG_VP6_DECODER) { + c->vp6_filter_diag4= ff_vp6_filter_diag4_c; + } c->h261_loop_filter= h261_loop_filter_c; |