Add unconditional return statement to yuva420_rgb32_MMX() / yuva420_bgr32_MMX().
authorDiego Biurrun <diego@biurrun.de>
Sun, 10 Apr 2011 19:12:08 +0000 (21:12 +0200)
committerDiego Biurrun <diego@biurrun.de>
Mon, 11 Apr 2011 12:18:48 +0000 (14:18 +0200)
commitdb46be01ecf44608932cfa33e8914a4c38b93431
tree21c41e08f33f5b25501db8929d0a3e54c589c7fd
parent70ad9842a5d0d685080d4e61243554dfad6dc00e
Add unconditional return statement to yuva420_rgb32_MMX() / yuva420_bgr32_MMX().

When HAVE_7REGS was not defined these functions had an empty body
causing the following warnings during compilation.
In file included from libswscale/x86/yuv2rgb_mmx.c:58:
libswscale/x86/yuv2rgb_template.c: In function ‘yuva420_rgb32_MMX’:
libswscale/x86/yuv2rgb_template.c:412: warning: no return statement in function returning non-void
libswscale/x86/yuv2rgb_template.c: In function ‘yuva420_bgr32_MMX’:
libswscale/x86/yuv2rgb_template.c:457: warning: no return statement in function returning non-void

Signed-off-by: Diego Biurrun <diego@biurrun.de>
libswscale/x86/yuv2rgb_template.c