2 * check NEON registers for clobbers
3 * Copyright (c) 2013 Martin Storsjo
5 * This file is part of FFmpeg.
7 * FFmpeg is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2.1 of the License, or (at your option) any later version.
12 * FFmpeg is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with FFmpeg; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
22 #include "libavcodec/avcodec.h"
23 #include "libavutil/aarch64/neontest.h"
25 wrap(avcodec_open2(AVCodecContext *avctx,
27 AVDictionary **options))
29 testneonclobbers(avcodec_open2, avctx, codec, options);
32 wrap(avcodec_decode_audio4(AVCodecContext *avctx,
37 testneonclobbers(avcodec_decode_audio4, avctx, frame,
38 got_frame_ptr, avpkt);
41 wrap(avcodec_decode_video2(AVCodecContext *avctx,
46 testneonclobbers(avcodec_decode_video2, avctx, picture,
47 got_picture_ptr, avpkt);
50 wrap(avcodec_decode_subtitle2(AVCodecContext *avctx,
55 testneonclobbers(avcodec_decode_subtitle2, avctx, sub,
59 wrap(avcodec_encode_audio2(AVCodecContext *avctx,
64 testneonclobbers(avcodec_encode_audio2, avctx, avpkt, frame,
68 wrap(avcodec_encode_subtitle(AVCodecContext *avctx,
69 uint8_t *buf, int buf_size,
70 const AVSubtitle *sub))
72 testneonclobbers(avcodec_encode_subtitle, avctx, buf, buf_size, sub);
75 wrap(avcodec_encode_video2(AVCodecContext *avctx, AVPacket *avpkt,
76 const AVFrame *frame, int *got_packet_ptr))
78 testneonclobbers(avcodec_encode_video2, avctx, avpkt, frame, got_packet_ptr);
81 wrap(avcodec_send_packet(AVCodecContext *avctx, const AVPacket *avpkt))
83 testneonclobbers(avcodec_send_packet, avctx, avpkt);
86 wrap(avcodec_receive_packet(AVCodecContext *avctx, AVPacket *avpkt))
88 testneonclobbers(avcodec_receive_packet, avctx, avpkt);
91 wrap(avcodec_send_frame(AVCodecContext *avctx, const AVFrame *frame))
93 testneonclobbers(avcodec_send_frame, avctx, frame);
96 wrap(avcodec_receive_frame(AVCodecContext *avctx, AVFrame *frame))
98 testneonclobbers(avcodec_receive_frame, avctx, frame);