mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-01-29 22:00:58 +02:00
Initialize *srcContext, *dstContext, *outContext to NULL, avoids the warnings:
libswscale/swscale-example.c:60: warning: 'outContext' may be used uninitialized in this function libswscale/swscale-example.c:60: warning: 'dstContext' may be used uninitialized in this function libswscale/swscale-example.c:60: warning: 'srcContext' may be used uninitialized in this function Originally committed as revision 29008 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
This commit is contained in:
parent
e29c3f934f
commit
54ea773614
@ -57,7 +57,8 @@ static int doTest(uint8_t *ref[3], int refStride[3], int w, int h, int srcFormat
|
||||
int srcStride[3], dstStride[3];
|
||||
int i;
|
||||
uint64_t ssdY, ssdU, ssdV;
|
||||
struct SwsContext *srcContext, *dstContext, *outContext;
|
||||
struct SwsContext *srcContext = NULL, *dstContext = NULL,
|
||||
*outContext = NULL;
|
||||
int res;
|
||||
|
||||
res = 0;
|
||||
@ -84,7 +85,6 @@ static int doTest(uint8_t *ref[3], int refStride[3], int w, int h, int srcFormat
|
||||
}
|
||||
}
|
||||
|
||||
dstContext = outContext = NULL;
|
||||
srcContext= sws_getContext(w, h, PIX_FMT_YUV420P, srcW, srcH, srcFormat, flags, NULL, NULL, NULL);
|
||||
if (!srcContext) {
|
||||
fprintf(stderr, "Failed to get %s ---> %s\n",
|
||||
|
Loading…
x
Reference in New Issue
Block a user