Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
BC
public
external
ffmpeg
Commits
f668afd4
Commit
f668afd4
authored
Apr 15, 2011
by
Janne Grunau
Browse files
swscale: fix "ISO C90 forbids mixed declarations and code" warning
only hit with --enable-runtime-cpudetect
parent
7f2ae5c7
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
6 deletions
+4
-6
libswscale/swscale.c
libswscale/swscale.c
+4
-6
No files found.
libswscale/swscale.c
View file @
f668afd4
...
...
@@ -1198,24 +1198,22 @@ SwsFunc ff_getSwsFunc(SwsContext *c)
sws_init_swScale_c
(
c
);
#if CONFIG_RUNTIME_CPUDETECT
int
flags
=
c
->
flags
;
#if ARCH_X86
// ordered per speed fastest first
if
(
flags
&
SWS_CPU_CAPS_MMX2
)
{
if
(
c
->
flags
&
SWS_CPU_CAPS_MMX2
)
{
sws_init_swScale_MMX2
(
c
);
return
swScale_MMX2
;
}
else
if
(
flags
&
SWS_CPU_CAPS_3DNOW
)
{
}
else
if
(
c
->
flags
&
SWS_CPU_CAPS_3DNOW
)
{
sws_init_swScale_3DNow
(
c
);
return
swScale_3DNow
;
}
else
if
(
flags
&
SWS_CPU_CAPS_MMX
)
{
}
else
if
(
c
->
flags
&
SWS_CPU_CAPS_MMX
)
{
sws_init_swScale_MMX
(
c
);
return
swScale_MMX
;
}
#else
#if COMPILE_ALTIVEC
if
(
flags
&
SWS_CPU_CAPS_ALTIVEC
)
{
if
(
c
->
flags
&
SWS_CPU_CAPS_ALTIVEC
)
{
sws_init_swScale_altivec
(
c
);
return
swScale_altivec
;
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment