summaryrefslogtreecommitdiff
path: root/libavcodec/x86/w64xmmtest.c
diff options
context:
space:
mode:
authorJames Almer <jamrial@gmail.com>2016-10-02 02:15:47 -0300
committerJames Almer <jamrial@gmail.com>2016-10-02 02:15:47 -0300
commit42111e8543b18dd50dbdc47d2c8eb0cef23daac0 (patch)
treeee20cadff6e8076c20c4180126b5599477cc6958 /libavcodec/x86/w64xmmtest.c
parent635a89b0bb36637780d2d273abaacfc3d5304d70 (diff)
downloadffmpeg-42111e8543b18dd50dbdc47d2c8eb0cef23daac0.tar.gz
avcodec: fix arguments on xmm/neon clobber test wrappers
Signed-off-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'libavcodec/x86/w64xmmtest.c')
-rw-r--r--libavcodec/x86/w64xmmtest.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/x86/w64xmmtest.c b/libavcodec/x86/w64xmmtest.c
index d76a322a73..7d4a6630c2 100644
--- a/libavcodec/x86/w64xmmtest.c
+++ b/libavcodec/x86/w64xmmtest.c
@@ -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);
}