Browse Source

avcodec: fix arguments on xmm/neon clobber test wrappers

Signed-off-by: James Almer <jamrial@gmail.com>
tags/n3.2
James Almer 8 years ago
parent
commit
42111e8543
3 changed files with 6 additions and 6 deletions
  1. +2
    -2
      libavcodec/aarch64/neontest.c
  2. +2
    -2
      libavcodec/arm/neontest.c
  3. +2
    -2
      libavcodec/x86/w64xmmtest.c

+ 2
- 2
libavcodec/aarch64/neontest.c View File

@@ -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);
}

+ 2
- 2
libavcodec/arm/neontest.c View File

@@ -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);
}

+ 2
- 2
libavcodec/x86/w64xmmtest.c View File

@@ -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);
}

Loading…
Cancel
Save