Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
F
ffmpeg.wasm-core
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Linshizhi
ffmpeg.wasm-core
Commits
1ac5b512
Commit
1ac5b512
authored
Oct 23, 2011
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
swscale: disable functions that do not yet work
Signed-off-by:
Michael Niedermayer
<
michaelni@gmx.at
>
parent
f97faf67
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
swscale_mmx.c
libswscale/x86/swscale_mmx.c
+4
-4
No files found.
libswscale/x86/swscale_mmx.c
View file @
1ac5b512
...
...
@@ -268,10 +268,10 @@ void ff_sws_init_swScale_mmx(SwsContext *c)
}
#define ASSIGN_VSCALEX_FUNC(vscalefn, opt1, opt2, opt2chk, do_16_case) \
switch(c->dstBpc){ \
case 16:
do_16_case;
break; \
case 10: if (!isBE(c->dstFormat) && opt2chk)
vscalefn = ff_yuv2planeX_10_ ## opt2;
break; \
case 9: if (!isBE(c->dstFormat) && opt2chk)
vscalefn = ff_yuv2planeX_9_ ## opt2;
break; \
default:
vscalefn = ff_yuv2planeX_8_ ## opt1;
break; \
case 16:
/*do_16_case;*/
break; \
case 10: if (!isBE(c->dstFormat) && opt2chk)
/*vscalefn = ff_yuv2planeX_10_ ## opt2;*/
break; \
case 9: if (!isBE(c->dstFormat) && opt2chk)
/*vscalefn = ff_yuv2planeX_9_ ## opt2;*/
break; \
default:
/*vscalefn = ff_yuv2planeX_8_ ## opt1;*/
break; \
}
#if ARCH_X86_32
if
(
cpu_flags
&
AV_CPU_FLAG_MMX
)
{
...
...
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