Skip to content
Snippets Groups Projects
Commit 1daea523 authored by Martin Storsjö's avatar Martin Storsjö
Browse files

x86: Add an xmm clobbering wrapper for avcodec_encode_video2


This is required since 187105ff when we started trying to
wrap this function as well.

Signed-off-by: default avatarMartin Storsjö <martin@martin.st>
parent 73084391
No related branches found
No related tags found
No related merge requests found
...@@ -71,3 +71,9 @@ wrap(avcodec_encode_subtitle(AVCodecContext *avctx, ...@@ -71,3 +71,9 @@ wrap(avcodec_encode_subtitle(AVCodecContext *avctx,
{ {
testxmmclobbers(avcodec_encode_subtitle, avctx, buf, buf_size, sub); testxmmclobbers(avcodec_encode_subtitle, avctx, buf, buf_size, sub);
} }
wrap(avcodec_encode_video2(AVCodecContext *avctx, AVPacket *avpkt,
const AVFrame *frame, int *got_packet_ptr))
{
testxmmclobbers(avcodec_encode_video2, avctx, avpkt, frame, got_packet_ptr);
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment