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
94789b9e
Commit
94789b9e
authored
Oct 25, 2003
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
10l
Originally committed as revision 2435 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
9b4b6e09
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
0 deletions
+3
-0
dct-test.c
libavcodec/dct-test.c
+1
-0
fdct_mmx.c
libavcodec/i386/fdct_mmx.c
+2
-0
No files found.
libavcodec/dct-test.c
View file @
94789b9e
...
...
@@ -484,6 +484,7 @@ int main(int argc, char **argv)
dct_error
(
"IJG-AAN-INT"
,
0
,
fdct_ifast
,
fdct
,
test
);
dct_error
(
"IJG-LLM-INT"
,
0
,
ff_jpeg_fdct_islow
,
fdct
,
test
);
dct_error
(
"MMX"
,
0
,
ff_fdct_mmx
,
fdct
,
test
);
dct_error
(
"MMX2"
,
0
,
ff_fdct_mmx2
,
fdct
,
test
);
dct_error
(
"FAAN"
,
0
,
ff_faandct
,
fdct
,
test
);
}
else
{
dct_error
(
"REF-DBL"
,
1
,
idct
,
idct
,
test
);
...
...
libavcodec/i386/fdct_mmx.c
View file @
94789b9e
...
...
@@ -233,6 +233,8 @@ static always_inline void fdct_row_mmx2(const int16_t *in, int16_t *out, const i
pmaddwd_m2r
(
*
(
table
+
12
),
mm1
);
pmaddwd_m2r
(
*
(
table
+
24
),
mm5
);
pmaddwd_m2r
(
*
(
table
+
28
),
mm6
);
paddd_r2r
(
mm4
,
mm3
);
paddd_r2r
(
mm7
,
mm2
);
paddd_r2r
(
mm1
,
mm0
);
paddd_r2r
(
mm6
,
mm5
);
movq_m2r
(
*
fdct_r_row
,
mm7
);
...
...
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