summaryrefslogtreecommitdiff
path: root/libavcodec/arm
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2016-09-21 20:44:36 +0200
committerAnton Khirnov <anton@khirnov.net>2016-09-28 10:01:52 +0200
commitde2ae3c1fae5a2eb539b9abd7bc2a9ca8c286ff0 (patch)
treec11a082f4db0f33ecfdd52d1e645cea47bb3d919 /libavcodec/arm
parent68811a41c70f019bde6df2a4f289674228c48958 (diff)
lavc: add clobber tests for the new encoding/decoding API
Diffstat (limited to 'libavcodec/arm')
-rw-r--r--libavcodec/arm/neontest.c20
1 files changed, 20 insertions, 0 deletions
diff --git a/libavcodec/arm/neontest.c b/libavcodec/arm/neontest.c
index 692576ee45..67d7747571 100644
--- a/libavcodec/arm/neontest.c
+++ b/libavcodec/arm/neontest.c
@@ -77,3 +77,23 @@ wrap(avcodec_encode_video2(AVCodecContext *avctx, AVPacket *avpkt,
{
testneonclobbers(avcodec_encode_video2, avctx, avpkt, frame, got_packet_ptr);
}
+
+wrap(avcodec_send_packet(AVCodecContext *avctx, const AVPacket *avpkt))
+{
+ testneonclobbers(avcodec_send_packet, avctx, avpkt);
+}
+
+wrap(avcodec_receive_packet(AVCodecContext *avctx, AVPacket *avpkt))
+{
+ testneonclobbers(avcodec_receive_packet, avctx, avpkt);
+}
+
+wrap(avcodec_send_frame(AVCodecContext *avctx, const AVFrame *frame))
+{
+ testneonclobbers(avcodec_send_frame, avctx, frame);
+}
+
+wrap(avcodec_receive_frame(AVCodecContext *avctx, AVFrame *frame))
+{
+ testneonclobbers(avcodec_receive_frame, avctx, frame);
+}