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
7f56a527
Commit
7f56a527
authored
Jan 20, 2002
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
101
Originally committed as revision 4282 to
svn://svn.mplayerhq.hu/mplayer/trunk/postproc
parent
28bf81c9
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
3 deletions
+5
-3
swscale.c
postproc/swscale.c
+5
-3
No files found.
postproc/swscale.c
View file @
7f56a527
...
...
@@ -26,6 +26,7 @@
#undef PAVGB
//#undef HAVE_MMX2
//#define HAVE_3DNOW
//#undef HAVE_MMX
//#undef ARCH_X86
#define DITHER1XBPP
...
...
@@ -787,7 +788,7 @@ cpuCaps= gCpuCaps;
if
(
gCpuCaps
.
hasMMX2
)
swScale
=
swScale_MMX2
;
else
if
(
gCpuCaps
.
has3DNow
)
swScale
=
swScale_3DN
OW
;
swScale
=
swScale_3DN
ow
;
else
if
(
gCpuCaps
.
hasMMX
)
swScale
=
swScale_MMX
;
else
...
...
@@ -802,7 +803,7 @@ cpuCaps= gCpuCaps;
swScale
=
swScale_MMX2
;
cpuCaps
.
has3DNow
=
0
;
#elif defined (HAVE_3DNOW)
swScale
=
swScale_3DN
OW
;
swScale
=
swScale_3DN
ow
;
cpuCaps
.
hasMMX2
=
0
;
#elif defined (HAVE_MMX)
swScale
=
swScale_MMX
;
...
...
@@ -1122,3 +1123,4 @@ double *sum(double *a, int aLength, double *b, int bLength){
for(i=0; i<aLength; i++) coeff[i]+= a[i];
}
*/
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