ffmpeg | branch: master | Michael Niedermayer <[email protected]> | Sat Feb 21 
14:44:47 2015 +0100| [b20426398cc475e12a0ea6d7269408435c982044] | committer: 
Michael Niedermayer

swscale/yuv2rgb: Use av_clip_uint8()

Signed-off-by: Michael Niedermayer <[email protected]>

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

 libswscale/yuv2rgb.c |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/libswscale/yuv2rgb.c b/libswscale/yuv2rgb.c
index cadd7f8..1d682ba 100644
--- a/libswscale/yuv2rgb.c
+++ b/libswscale/yuv2rgb.c
@@ -720,7 +720,7 @@ static void fill_table(uint8_t* table[256 + 
2*YUVRGB_TABLE_HEADROOM], const int
     y_table -= elemsize * (inc >> 9);
 
     for (i = 0; i < 256 + 2*YUVRGB_TABLE_HEADROOM; i++) {
-        int64_t cb = av_clip(i-YUVRGB_TABLE_HEADROOM, 0, 255)*inc;
+        int64_t cb = av_clip_uint8(i-YUVRGB_TABLE_HEADROOM)*inc;
         table[i] = y_table + elemsize * (cb >> 16);
     }
 }
@@ -731,7 +731,7 @@ static void fill_gv_table(int table[256 + 
2*YUVRGB_TABLE_HEADROOM], const int el
     int off    = -(inc >> 9);
 
     for (i = 0; i < 256 + 2*YUVRGB_TABLE_HEADROOM; i++) {
-        int64_t cb = av_clip(i-YUVRGB_TABLE_HEADROOM, 0, 255)*inc;
+        int64_t cb = av_clip_uint8(i-YUVRGB_TABLE_HEADROOM)*inc;
         table[i] = elemsize * (off + (cb >> 16));
     }
 }

_______________________________________________
ffmpeg-cvslog mailing list
[email protected]
http://ffmpeg.org/mailman/listinfo/ffmpeg-cvslog

Reply via email to