Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-2-2
Commits
485a070f
Commit
485a070f
authored
Oct 13, 2012
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avcodec: clobber XMM registers correctly (fixes #5268)
parent
07d8e576
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
3 deletions
+6
-3
modules/codec/avcodec/copy.c
modules/codec/avcodec/copy.c
+6
-3
No files found.
modules/codec/avcodec/copy.c
View file @
485a070f
...
...
@@ -70,7 +70,7 @@ void CopyCleanCache(copy_cache_t *cache)
store " %%xmm2, 16(%[dst])\n" \
store " %%xmm3, 32(%[dst])\n" \
store " %%xmm4, 48(%[dst])\n" \
: : [dst]"r"(dstp), [src]"r"(srcp) : "memory")
: : [dst]"r"(dstp), [src]"r"(srcp) : "memory"
, "xmm1", "xmm2", "xmm3", "xmm4"
)
#ifndef __SSE4_1__
# undef vlc_CPU_SSE4_1
...
...
@@ -91,6 +91,7 @@ void CopyCleanCache(copy_cache_t *cache)
* as used by some video surface.
* XXX It is really efficient only when SSE4.1 is available.
*/
VLC_SSE
static
void
CopyFromUswc
(
uint8_t
*
dst
,
size_t
dst_pitch
,
const
uint8_t
*
src
,
size_t
src_pitch
,
unsigned
width
,
unsigned
height
,
...
...
@@ -136,6 +137,7 @@ static void CopyFromUswc(uint8_t *dst, size_t dst_pitch,
}
}
VLC_SSE
static
void
Copy2d
(
uint8_t
*
dst
,
size_t
dst_pitch
,
const
uint8_t
*
src
,
size_t
src_pitch
,
unsigned
width
,
unsigned
height
)
...
...
@@ -164,6 +166,7 @@ static void Copy2d(uint8_t *dst, size_t dst_pitch,
}
}
VLC_SSE
static
void
SSE_SplitUV
(
uint8_t
*
dstu
,
size_t
dstu_pitch
,
uint8_t
*
dstv
,
size_t
dstv_pitch
,
const
uint8_t
*
src
,
size_t
src_pitch
,
...
...
@@ -209,7 +212,7 @@ static void SSE_SplitUV(uint8_t *dstu, size_t dstu_pitch,
"pshufb %%xmm7, %%xmm2
\n
"
"pshufb %%xmm7, %%xmm3
\n
"
STORE2X32
:
:
[
dst1
]
"r"
(
&
dstu
[
x
]),
[
dst2
]
"r"
(
&
dstv
[
x
]),
[
src
]
"r"
(
&
src
[
2
*
x
]),
[
shuffle
]
"r"
(
shuffle
)
:
"memory"
);
:
:
[
dst1
]
"r"
(
&
dstu
[
x
]),
[
dst2
]
"r"
(
&
dstv
[
x
]),
[
src
]
"r"
(
&
src
[
2
*
x
]),
[
shuffle
]
"r"
(
shuffle
)
:
"memory"
,
"xmm0"
,
"xmm1"
,
"xmm2"
,
"xmm3"
,
"xmm7"
);
}
}
else
#endif
...
...
@@ -234,7 +237,7 @@ static void SSE_SplitUV(uint8_t *dstu, size_t dstu_pitch,
"packuswb %%xmm6, %%xmm2
\n
"
"packuswb %%xmm7, %%xmm3
\n
"
STORE2X32
:
:
[
dst2
]
"r"
(
&
dstu
[
x
]),
[
dst1
]
"r"
(
&
dstv
[
x
]),
[
src
]
"r"
(
&
src
[
2
*
x
]),
[
mask
]
"r"
(
mask
)
:
"memory"
);
:
:
[
dst2
]
"r"
(
&
dstu
[
x
]),
[
dst1
]
"r"
(
&
dstv
[
x
]),
[
src
]
"r"
(
&
src
[
2
*
x
]),
[
mask
]
"r"
(
mask
)
:
"memory"
,
"xmm0"
,
"xmm1"
,
"xmm2"
,
"xmm3"
,
"xmm4"
,
"xmm5"
,
"xmm6"
,
"xmm7"
);
}
}
#undef STORE2X32
...
...
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