diff dsputil.h @ 3215:06f98047ff26 libavcodec

prefetch pixels for future motion compensation. 2-5% faster h264.
author lorenm
date Thu, 23 Mar 2006 20:16:36 +0000
parents 6b9f0c4fbdbe
children d9eceb8313c2
line wrap: on
line diff
--- a/dsputil.h	Wed Mar 22 22:08:28 2006 +0000
+++ b/dsputil.h	Thu Mar 23 20:16:36 2006 +0000
@@ -343,6 +343,8 @@
     void (*vertical_compose97i)(DWTELEM *b0, DWTELEM *b1, DWTELEM *b2, DWTELEM *b3, DWTELEM *b4, DWTELEM *b5, int width);
     void (*horizontal_compose97i)(DWTELEM *b, int width);
     void (*inner_add_yblock)(uint8_t *obmc, const int obmc_stride, uint8_t * * block, int b_w, int b_h, int src_x, int src_y, int src_stride, slice_buffer * sb, int add, uint8_t * dst8);
+
+    void (*prefetch)(void *mem, int stride, int h);
 } DSPContext;
 
 void dsputil_static_init(void);