summaryrefslogtreecommitdiff
path: root/libavcodec/dsputil.h
diff options
context:
space:
mode:
authorDavid Conrad <lessen42@gmail.com>2009-04-15 06:20:22 +0000
committerDavid Conrad <lessen42@gmail.com>2009-04-15 06:20:22 +0000
commit0e58865d6e86bbb664d92311c0f81c65e0213c35 (patch)
treef685d4f29bfcf3a4b6fd5ac205bc009f43824a95 /libavcodec/dsputil.h
parent9bf0fdf378cd8d93a105e7b26d143b4718656e87 (diff)
Move VC1 loop filter to DSPContext
Originally committed as revision 18520 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/dsputil.h')
-rw-r--r--libavcodec/dsputil.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/dsputil.h b/libavcodec/dsputil.h
index 0dfbfaca25..3599259f8e 100644
--- a/libavcodec/dsputil.h
+++ b/libavcodec/dsputil.h
@@ -482,6 +482,7 @@ typedef struct DSPContext {
void (*vc1_inv_trans_4x4)(uint8_t *dest, int line_size, DCTELEM *block);
void (*vc1_v_overlap)(uint8_t* src, int stride);
void (*vc1_h_overlap)(uint8_t* src, int stride);
+ void (*vc1_loop_filter)(uint8_t *src, int step, int stride, int len, int pq);
/* put 8x8 block with bicubic interpolation and quarterpel precision
* last argument is actually round value instead of height
*/