[FFmpeg-cvslog] h264pred: Add a few missing const declarations for ff_cropTbl derived pointers

Martin Storsjö git at videolan.org
Tue Apr 9 11:51:03 CEST 2013


ffmpeg | branch: master | Martin Storsjö <martin at martin.st> | Mon Apr  8 17:34:38 2013 +0300| [bc0522dffacb9ef8f4eac8e47f73fea58c216799] | committer: Martin Storsjö

h264pred: Add a few missing const declarations for ff_cropTbl derived pointers

The pointers that get assigned ff_cropTbl were made const in
9e0f14f1, but other variables that transitively are assigned
based on these variables were missed.

Signed-off-by: Martin Storsjö <martin at martin.st>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=bc0522dffacb9ef8f4eac8e47f73fea58c216799
---

 libavcodec/h264pred.c |    6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/libavcodec/h264pred.c b/libavcodec/h264pred.c
index 07aa2ae..6825cf2 100644
--- a/libavcodec/h264pred.c
+++ b/libavcodec/h264pred.c
@@ -273,7 +273,7 @@ static void pred4x4_tm_vp8_c(uint8_t *src, const uint8_t *topright,
     int y;
 
     for (y = 0; y < 4; y++) {
-        uint8_t *cm_in = cm + src[-1];
+        const uint8_t *cm_in = cm + src[-1];
         src[0] = cm_in[top[0]];
         src[1] = cm_in[top[1]];
         src[2] = cm_in[top[2]];
@@ -299,7 +299,7 @@ static void pred16x16_tm_vp8_c(uint8_t *src, ptrdiff_t stride)
     int y;
 
     for (y = 0; y < 16; y++) {
-        uint8_t *cm_in = cm + src[-1];
+        const uint8_t *cm_in = cm + src[-1];
         src[0]  = cm_in[top[0]];
         src[1]  = cm_in[top[1]];
         src[2]  = cm_in[top[2]];
@@ -381,7 +381,7 @@ static void pred8x8_tm_vp8_c(uint8_t *src, ptrdiff_t stride)
     int y;
 
     for (y = 0; y < 8; y++) {
-        uint8_t *cm_in = cm + src[-1];
+        const uint8_t *cm_in = cm + src[-1];
         src[0] = cm_in[top[0]];
         src[1] = cm_in[top[1]];
         src[2] = cm_in[top[2]];



More information about the ffmpeg-cvslog mailing list