[FFmpeg-cvslog] avfilter/vf_uspp: fix integer overflow in intermediate
Michael Niedermayer
git at videolan.org
Fri Dec 12 04:55:08 CET 2014
ffmpeg | branch: master | Michael Niedermayer <michaelni at gmx.at> | Fri Dec 12 04:28:34 2014 +0100| [e07c82688e8187dbafac489b7c15427252974021] | committer: Michael Niedermayer
avfilter/vf_uspp: fix integer overflow in intermediate
Fixes Ticket3596
Signed-off-by: Michael Niedermayer <michaelni at gmx.at>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=e07c82688e8187dbafac489b7c15427252974021
---
libavfilter/vf_uspp.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/libavfilter/vf_uspp.c b/libavfilter/vf_uspp.c
index a0e41df..d0ce63e 100644
--- a/libavfilter/vf_uspp.c
+++ b/libavfilter/vf_uspp.c
@@ -45,7 +45,7 @@ typedef struct {
int qscale_type;
int temp_stride[3];
uint8_t *src[3];
- int16_t *temp[3];
+ uint16_t *temp[3];
int outbuf_size;
uint8_t *outbuf;
AVCodecContext *avctx_enc[BLOCK*BLOCK];
@@ -152,7 +152,7 @@ static const uint8_t offset[511][2] = {
{ 3, 4}, {11, 4}, { 3,12}, {11,12}, { 7, 0}, {15, 0}, { 7, 8}, {15, 8},
};
-static void store_slice_c(uint8_t *dst, const int16_t *src,
+static void store_slice_c(uint8_t *dst, const uint16_t *src,
int dst_stride, int src_stride,
int width, int height, int log2_scale)
{
More information about the ffmpeg-cvslog
mailing list