Commit 42111e85 authored by James Almer's avatar James Almer

avcodec: fix arguments on xmm/neon clobber test wrappers

Signed-off-by: 's avatarJames Almer <jamrial@gmail.com>
parent 635a89b0
......@@ -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);
}
......@@ -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);
}
......@@ -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);
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment