diff options
author | James Almer <jamrial@gmail.com> | 2016-10-02 02:15:47 -0300 |
---|---|---|
committer | James Almer <jamrial@gmail.com> | 2016-10-02 02:15:47 -0300 |
commit | 42111e8543b18dd50dbdc47d2c8eb0cef23daac0 (patch) | |
tree | ee20cadff6e8076c20c4180126b5599477cc6958 /libavcodec/aarch64 | |
parent | 635a89b0bb36637780d2d273abaacfc3d5304d70 (diff) | |
download | ffmpeg-42111e8543b18dd50dbdc47d2c8eb0cef23daac0.tar.gz |
avcodec: fix arguments on xmm/neon clobber test wrappers
Signed-off-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'libavcodec/aarch64')
-rw-r--r-- | libavcodec/aarch64/neontest.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/aarch64/neontest.c b/libavcodec/aarch64/neontest.c index 93f162d0c4..1e9ef167e3 100644 --- a/libavcodec/aarch64/neontest.c +++ b/libavcodec/aarch64/neontest.c @@ -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); } |