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
c3c5bba1
Commit
c3c5bba1
authored
Sep 17, 2008
by
David Conrad
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Cosmetics: reindent
Originally committed as revision 15349 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
4ee735fc
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
9 deletions
+9
-9
vp3dsp_mmx.c
libavcodec/i386/vp3dsp_mmx.c
+6
-6
vp3dsp_sse2.c
libavcodec/i386/vp3dsp_sse2.c
+3
-3
No files found.
libavcodec/i386/vp3dsp_mmx.c
View file @
c3c5bba1
...
...
@@ -251,30 +251,30 @@ void ff_vp3_idct_mmx(int16_t *output_data)
#define J(x) AV_STRINGIFY(16*(x-4) + 8)"(%0)"
asm
volatile
(
RowIDCT
()
Transpose
()
RowIDCT
()
Transpose
()
#undef I
#undef J
#define I(x) AV_STRINGIFY(16* x + 64)"(%0)"
#define J(x) AV_STRINGIFY(16*(x-4) + 72)"(%0)"
RowIDCT
()
Transpose
()
RowIDCT
()
Transpose
()
#undef I
#undef J
#define I(x) AV_STRINGIFY(16*x)"(%0)"
#define J(x) AV_STRINGIFY(16*x)"(%0)"
ColumnIDCT
()
ColumnIDCT
()
#undef I
#undef J
#define I(x) AV_STRINGIFY(16*x + 8)"(%0)"
#define J(x) AV_STRINGIFY(16*x + 8)"(%0)"
ColumnIDCT
()
ColumnIDCT
()
::
"r"
(
output_data
),
"r"
(
ff_vp3_idct_data
),
"m"
(
ff_pw_8
)
);
#undef I
...
...
libavcodec/i386/vp3dsp_sse2.c
View file @
c3c5bba1
...
...
@@ -457,11 +457,11 @@ void ff_vp3_idct_sse2(int16_t *input_data)
#define C(x) AV_STRINGIFY(16*(x-1))"(%1)"
asm
volatile
(
SSE2_Row_IDCT
()
SSE2_Row_IDCT
()
SSE2_Transpose
()
SSE2_Transpose
()
SSE2_Column_IDCT
()
SSE2_Column_IDCT
()
::
"r"
(
input_data
),
"r"
(
ff_vp3_idct_data
),
"m"
(
ff_pw_8
)
);
}
...
...
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