mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
avcodec: fix arguments on xmm/neon clobber test wrappers
Signed-off-by: James Almer <jamrial@gmail.com>
This commit is contained in:
parent
635a89b0bb
commit
42111e8543
@ -90,10 +90,10 @@ wrap(avcodec_receive_frame(AVCodecContext *avctx, AVFrame *frame))
|
|||||||
|
|
||||||
wrap(avcodec_send_frame(AVCodecContext *avctx, const 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))
|
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))
|
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))
|
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))
|
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))
|
wrap(avcodec_receive_packet(AVCodecContext *avctx, AVPacket *avpkt))
|
||||||
{
|
{
|
||||||
testxmmclobbers(avcodec_receive_packet, avctx, frame);
|
testxmmclobbers(avcodec_receive_packet, avctx, avpkt);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user