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
42111e85
Commit
42111e85
authored
Oct 02, 2016
by
James Almer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avcodec: fix arguments on xmm/neon clobber test wrappers
Signed-off-by:
James Almer
<
jamrial@gmail.com
>
parent
635a89b0
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
6 deletions
+6
-6
neontest.c
libavcodec/aarch64/neontest.c
+2
-2
neontest.c
libavcodec/arm/neontest.c
+2
-2
w64xmmtest.c
libavcodec/x86/w64xmmtest.c
+2
-2
No files found.
libavcodec/aarch64/neontest.c
View file @
42111e85
...
...
@@ -90,10 +90,10 @@ wrap(avcodec_receive_frame(AVCodecContext *avctx, AVFrame *frame))
wrap
(
avcodec_send_frame
(
AVCodecContext
*
avctx
,
const
AVFrame
*
frame
))
{
testneonclobbers
(
avcodec_send_frame
,
avctx
,
avpkt
);
testneonclobbers
(
avcodec_send_frame
,
avctx
,
frame
);
}
wrap
(
avcodec_receive_packet
(
AVCodecContext
*
avctx
,
AVPacket
*
avpkt
))
{
testneonclobbers
(
avcodec_receive_packet
,
avctx
,
frame
);
testneonclobbers
(
avcodec_receive_packet
,
avctx
,
avpkt
);
}
libavcodec/arm/neontest.c
View file @
42111e85
...
...
@@ -90,10 +90,10 @@ wrap(avcodec_receive_frame(AVCodecContext *avctx, AVFrame *frame))
wrap
(
avcodec_send_frame
(
AVCodecContext
*
avctx
,
const
AVFrame
*
frame
))
{
testneonclobbers
(
avcodec_send_frame
,
avctx
,
avpkt
);
testneonclobbers
(
avcodec_send_frame
,
avctx
,
frame
);
}
wrap
(
avcodec_receive_packet
(
AVCodecContext
*
avctx
,
AVPacket
*
avpkt
))
{
testneonclobbers
(
avcodec_receive_packet
,
avctx
,
frame
);
testneonclobbers
(
avcodec_receive_packet
,
avctx
,
avpkt
);
}
libavcodec/x86/w64xmmtest.c
View file @
42111e85
...
...
@@ -90,10 +90,10 @@ wrap(avcodec_receive_frame(AVCodecContext *avctx, AVFrame *frame))
wrap
(
avcodec_send_frame
(
AVCodecContext
*
avctx
,
const
AVFrame
*
frame
))
{
testxmmclobbers
(
avcodec_send_frame
,
avctx
,
avpkt
);
testxmmclobbers
(
avcodec_send_frame
,
avctx
,
frame
);
}
wrap
(
avcodec_receive_packet
(
AVCodecContext
*
avctx
,
AVPacket
*
avpkt
))
{
testxmmclobbers
(
avcodec_receive_packet
,
avctx
,
frame
);
testxmmclobbers
(
avcodec_receive_packet
,
avctx
,
avpkt
);
}
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