mirror of https://github.com/mpv-player/mpv
cosmetics after last commit; remove superfluous braces
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22979 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
parent
fdc96044ff
commit
42ece1776c
|
@ -215,17 +215,15 @@ static uint64_t __attribute__((aligned(8))) dither8[2]={
|
||||||
|
|
||||||
void sws_rgb2rgb_init(int flags){
|
void sws_rgb2rgb_init(int flags){
|
||||||
#if (defined(HAVE_MMX2) || defined(HAVE_3DNOW) || defined(HAVE_MMX)) && defined(CONFIG_GPL)
|
#if (defined(HAVE_MMX2) || defined(HAVE_3DNOW) || defined(HAVE_MMX)) && defined(CONFIG_GPL)
|
||||||
if(flags & SWS_CPU_CAPS_MMX2){
|
if(flags & SWS_CPU_CAPS_MMX2)
|
||||||
rgb2rgb_init_MMX2();
|
rgb2rgb_init_MMX2();
|
||||||
}else if(flags & SWS_CPU_CAPS_3DNOW){
|
else if(flags & SWS_CPU_CAPS_3DNOW)
|
||||||
rgb2rgb_init_3DNOW();
|
rgb2rgb_init_3DNOW();
|
||||||
}else if(flags & SWS_CPU_CAPS_MMX){
|
else if(flags & SWS_CPU_CAPS_MMX)
|
||||||
rgb2rgb_init_MMX();
|
rgb2rgb_init_MMX();
|
||||||
}else
|
else
|
||||||
#endif /* defined(HAVE_MMX2) || defined(HAVE_3DNOW) || defined(HAVE_MMX) */
|
#endif /* defined(HAVE_MMX2) || defined(HAVE_3DNOW) || defined(HAVE_MMX) */
|
||||||
{
|
|
||||||
rgb2rgb_init_C();
|
rgb2rgb_init_C();
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in New Issue