summaryrefslogtreecommitdiff
path: root/libavcodec/x86/w64xmmtest.c
diff options
context:
space:
mode:
authorClément Bœsch <u@pkh.me>2017-03-21 13:09:26 +0100
committerClément Bœsch <u@pkh.me>2017-03-21 14:43:53 +0100
commitad98af27f7100a80fd5ff934ddc7e9aca94f0496 (patch)
treee3f3e2b05113e8150f968927ee2619e1a099d45f /libavcodec/x86/w64xmmtest.c
parent4cca2f74f25331067cfb234328411bd114664871 (diff)
parentde2ae3c1fae5a2eb539b9abd7bc2a9ca8c286ff0 (diff)
downloadffmpeg-ad98af27f7100a80fd5ff934ddc7e9aca94f0496.tar.gz
Merge commit 'de2ae3c1fae5a2eb539b9abd7bc2a9ca8c286ff0'
* commit 'de2ae3c1fae5a2eb539b9abd7bc2a9ca8c286ff0': lavc: add clobber tests for the new encoding/decoding API The merge only re-order what we already have. Merged-by: Clément Bœsch <u@pkh.me>
Diffstat (limited to 'libavcodec/x86/w64xmmtest.c')
-rw-r--r--libavcodec/x86/w64xmmtest.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/libavcodec/x86/w64xmmtest.c b/libavcodec/x86/w64xmmtest.c
index 987fa51e26..8f2b8a6299 100644
--- a/libavcodec/x86/w64xmmtest.c
+++ b/libavcodec/x86/w64xmmtest.c
@@ -83,9 +83,9 @@ wrap(avcodec_send_packet(AVCodecContext *avctx, const AVPacket *avpkt))
testxmmclobbers(avcodec_send_packet, avctx, avpkt);
}
-wrap(avcodec_receive_frame(AVCodecContext *avctx, AVFrame *frame))
+wrap(avcodec_receive_packet(AVCodecContext *avctx, AVPacket *avpkt))
{
- testxmmclobbers(avcodec_receive_frame, avctx, frame);
+ testxmmclobbers(avcodec_receive_packet, avctx, avpkt);
}
wrap(avcodec_send_frame(AVCodecContext *avctx, const AVFrame *frame))
@@ -93,7 +93,7 @@ wrap(avcodec_send_frame(AVCodecContext *avctx, const AVFrame *frame))
testxmmclobbers(avcodec_send_frame, avctx, frame);
}
-wrap(avcodec_receive_packet(AVCodecContext *avctx, AVPacket *avpkt))
+wrap(avcodec_receive_frame(AVCodecContext *avctx, AVFrame *frame))
{
- testxmmclobbers(avcodec_receive_packet, avctx, avpkt);
+ testxmmclobbers(avcodec_receive_frame, avctx, frame);
}