projects
/
ffmpeg.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e7843db
)
swscale-test: fix stack overread.
author
Ronald S. Bultje
<rsbultje@gmail.com>
Thu, 12 Jan 2012 23:38:37 +0000
(15:38 -0800)
committer
Ronald S. Bultje
<rsbultje@gmail.com>
Fri, 13 Jan 2012 00:38:29 +0000
(16:38 -0800)
Fixes problems in swscale-test where it gives a 3-member array to a
function expecting a 4-member array.
libswscale/swscale-test.c
patch
|
blob
|
history
diff --git
a/libswscale/swscale-test.c
b/libswscale/swscale-test.c
index
7ea01a6
..
3497dff
100644
(file)
--- a/
libswscale/swscale-test.c
+++ b/
libswscale/swscale-test.c
@@
-337,8
+337,8
@@
int main(int argc, char **argv)
enum PixelFormat srcFormat = PIX_FMT_NONE;
enum PixelFormat dstFormat = PIX_FMT_NONE;
uint8_t *rgb_data = av_malloc(W * H * 4);
- uint8_t *rgb_src[
3] = { rgb_data
, NULL, NULL };
- int rgb_stride[
3] = { 4 * W
, 0, 0 };
+ uint8_t *rgb_src[
4] = { rgb_data, NULL
, NULL, NULL };
+ int rgb_stride[
4] = { 4 * W, 0
, 0, 0 };
uint8_t *data = av_malloc(4 * W * H);
uint8_t *src[4] = { data, data + W * H, data + W * H * 2, data + W * H * 3 };
int stride[4] = { W, W, W, W };