mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
Remove useless casts of malloc return value.
Originally committed as revision 29537 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
This commit is contained in:
parent
386eaeb43f
commit
7b67bd92f4
@ -100,9 +100,9 @@ static int doTest(uint8_t *ref[4], int refStride[4], int w, int h, int srcFormat
|
||||
else
|
||||
dstStride[i]= dstW*4;
|
||||
|
||||
src[i]= (uint8_t*) malloc(srcStride[i]*srcH);
|
||||
dst[i]= (uint8_t*) malloc(dstStride[i]*dstH);
|
||||
out[i]= (uint8_t*) malloc(refStride[i]*h);
|
||||
src[i]= malloc(srcStride[i]*srcH);
|
||||
dst[i]= malloc(dstStride[i]*dstH);
|
||||
out[i]= malloc(refStride[i]*h);
|
||||
if (!src[i] || !dst[i] || !out[i]) {
|
||||
perror("Malloc");
|
||||
res = -1;
|
||||
|
Loading…
Reference in New Issue
Block a user