This website works better with JavaScript.
Home
Help
Sign In
falkTX
/
FFmpeg
mirror of
https://github.com/falkTX/FFmpeg.git
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
338
Wiki
Activity
Browse Source
Mark Y variable in EPILOG macro as av_unused to avoid unused variable warnings.
Originally committed as revision 26220 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
tags/v0.5
Diego Biurrun
17 years ago
parent
bf99f4fccc
commit
a04e32407d
1 changed files
with
1 additions
and
2 deletions
Unified View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-2
libswscale/yuv2rgb.c
+ 1
- 2
libswscale/yuv2rgb.c
View File
@@ -276,8 +276,7 @@ static int func_name(SwsContext *c, uint8_t* src[], int srcStride[], int srcSlic
dst_2 += dst_delta;\
dst_2 += dst_delta;\
}\
}\
if (c->dstW & 4) {\
if (c->dstW & 4) {\
int av_unused U, V;\
int Y;\
int av_unused Y, U, V;\
#define EPILOG2()\
#define EPILOG2()\
}\
}\
Write
Preview
Loading…
Cancel
Save