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
56d8bd56
Commit
56d8bd56
authored
Sep 08, 2004
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
optimization
Originally committed as revision 3440 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
a6e39f45
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
20 additions
and
54 deletions
+20
-54
dsputil_mmx.c
libavcodec/i386/dsputil_mmx.c
+20
-54
No files found.
libavcodec/i386/dsputil_mmx.c
View file @
56d8bd56
...
...
@@ -2349,67 +2349,33 @@ static void OPNAME ## h264_qpel4_h_lowpass_ ## MMX(uint8_t *dst, uint8_t *src, i
);\
}\
static void OPNAME ## h264_qpel4_v_lowpass_ ## MMX(uint8_t *dst, uint8_t *src, int dstStride, int srcStride){\
uint64_t temp[4+5];\
uint64_t *temp_ptr= temp;\
int h= 3;\
src -= 2*srcStride;\
/*FIXME unroll */
\
asm volatile(\
"pxor %%mm7, %%mm7 \n\t"\
"1: \n\t"\
"movd (%0), %%mm0 \n\t"\
"punpcklbw %%mm7, %%mm0 \n\t"\
"movq %%mm0, (%1) \n\t"\
"addl %3, %0 \n\t"\
"movd (%0), %%mm0 \n\t"\
"punpcklbw %%mm7, %%mm0 \n\t"\
"movq %%mm0, 8(%1) \n\t"\
"addl %3, %0 \n\t"\
"movd (%0), %%mm0 \n\t"\
"addl %2, %0 \n\t"\
"movd (%0), %%mm1 \n\t"\
"addl %2, %0 \n\t"\
"movd (%0), %%mm2 \n\t"\
"addl %2, %0 \n\t"\
"movd (%0), %%mm3 \n\t"\
"addl %2, %0 \n\t"\
"movd (%0), %%mm4 \n\t"\
"addl %2, %0 \n\t"\
"punpcklbw %%mm7, %%mm0 \n\t"\
"movq %%mm0, 16(%1) \n\t"\
"addl %3, %0 \n\t"\
"addl $24, %1 \n\t"\
"decl %2 \n\t"\
" jnz 1b \n\t"\
: "+a" (src), "+c" (temp_ptr), "+d"(h)\
: "S" (srcStride)\
: "memory"\
);\
\
temp_ptr= temp;\
h= 4;\
\
asm volatile(\
"movq %4, %%mm6 \n\t"\
"movq %5, %%mm7 \n\t"\
"1: \n\t"\
"movq 2*8(%0), %%mm0 \n\t"\
"movq 3*8(%0), %%mm1 \n\t"\
"paddw %%mm1, %%mm0 \n\t"\
"psllw $2, %%mm0 \n\t"\
"movq 1*8(%0), %%mm2 \n\t"\
"movq 4*8(%0), %%mm3 \n\t"\
"paddw %%mm3, %%mm2 \n\t"\
"psubw %%mm2, %%mm0 \n\t"\
"pmullw %%mm6, %%mm0 \n\t"\
"movq 0*8(%0), %%mm4 \n\t"\
"movq 5*8(%0), %%mm5 \n\t"\
"paddw %%mm5, %%mm4 \n\t"\
"paddw %%mm7, %%mm4 \n\t"\
"paddw %%mm4, %%mm0 \n\t"\
"psraw $5, %%mm0 \n\t"\
"packuswb %%mm0, %%mm0 \n\t"\
OP(%%mm0, (%1),%%mm5, d)\
"addl %3, %1 \n\t"\
"addl $8, %0 \n\t"\
"decl %2 \n\t"\
" jnz 1b \n\t"\
"punpcklbw %%mm7, %%mm1 \n\t"\
"punpcklbw %%mm7, %%mm2 \n\t"\
"punpcklbw %%mm7, %%mm3 \n\t"\
"punpcklbw %%mm7, %%mm4 \n\t"\
QPEL_H264V(%%mm0, %%mm1, %%mm2, %%mm3, %%mm4, %%mm5, OP)\
QPEL_H264V(%%mm1, %%mm2, %%mm3, %%mm4, %%mm5, %%mm0, OP)\
QPEL_H264V(%%mm2, %%mm3, %%mm4, %%mm5, %%mm0, %%mm1, OP)\
QPEL_H264V(%%mm3, %%mm4, %%mm5, %%mm0, %%mm1, %%mm2, OP)\
\
: "+a"(
temp_ptr), "+c"(dst), "+d"(h
)\
: "S"(dstStride), "m"(ff_pw_5), "m"(ff_pw_16)\
: "+a"(
src), "+c"(dst
)\
: "S"(
srcStride), "D"(
dstStride), "m"(ff_pw_5), "m"(ff_pw_16)\
: "memory"\
);\
);\
}\
static void OPNAME ## h264_qpel4_hv_lowpass_ ## MMX(uint8_t *dst, int16_t *tmp, uint8_t *src, int dstStride, int tmpStride, int srcStride){\
const int h=4;\
...
...
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