x86: Add an xmm clobbering wrapper for avcodec_encode_video2

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

Signed-off-by: Martin Storsjö <martin@martin.st>
pull/36/head
Martin Storsjö 12 years ago
parent 7308439158
commit 1daea5232f
  1. 6
      libavcodec/x86/w64xmmtest.c

@ -71,3 +71,9 @@ wrap(avcodec_encode_subtitle(AVCodecContext *avctx,
{
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);
}

Loading…
Cancel
Save