diff h264pred.h @ 11916:73f4fd490f2a libavcodec

Make "topright" argument to pred4x4() const. Patch by David Conrad <lessen42 gmail com>.
author rbultje
date Tue, 22 Jun 2010 19:12:54 +0000
parents 7dd2a45249a9
children 823f332655e8
line wrap: on
line diff
--- a/h264pred.h	Tue Jun 22 19:06:35 2010 +0000
+++ b/h264pred.h	Tue Jun 22 19:12:54 2010 +0000
@@ -72,7 +72,7 @@
  * Context for storing H.264 prediction functions
  */
 typedef struct H264PredContext{
-    void (*pred4x4  [9+3+3])(uint8_t *src, uint8_t *topright, int stride);//FIXME move to dsp?
+    void (*pred4x4  [9+3+3])(uint8_t *src, const uint8_t *topright, int stride);//FIXME move to dsp?
     void (*pred8x8l [9+3])(uint8_t *src, int topleft, int topright, int stride);
     void (*pred8x8  [4+3+4])(uint8_t *src, int stride);
     void (*pred16x16[4+3])(uint8_t *src, int stride);