diff options
author | Diego Biurrun <diego@biurrun.de> | 2012-08-13 13:11:38 +0200 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2012-08-24 02:23:16 +0200 |
commit | d211547dddf9deeb34b7dda9cd80b86f3f5cd07a (patch) | |
tree | f9295bda1276cba5bff5221556211d91fa8c5547 /libavcodec/mpegvideo.h | |
parent | 26ce9aec03d925b1ff4beaea462252ad1d7d2c61 (diff) | |
download | ffmpeg-d211547dddf9deeb34b7dda9cd80b86f3f5cd07a.tar.gz |
x86: mpegvideoenc: Split optimizations off into a separate file
Diffstat (limited to 'libavcodec/mpegvideo.h')
-rw-r--r-- | libavcodec/mpegvideo.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/mpegvideo.h b/libavcodec/mpegvideo.h index 80fa0fa1bd..850681b1e6 100644 --- a/libavcodec/mpegvideo.h +++ b/libavcodec/mpegvideo.h @@ -756,6 +756,7 @@ int ff_MPV_encode_init(AVCodecContext *avctx); int ff_MPV_encode_end(AVCodecContext *avctx); int ff_MPV_encode_picture(AVCodecContext *avctx, AVPacket *pkt, const AVFrame *frame, int *got_packet); +void ff_MPV_encode_init_x86(MpegEncContext *s); void ff_MPV_common_init_mmx(MpegEncContext *s); void ff_MPV_common_init_axp(MpegEncContext *s); void ff_MPV_common_init_mmi(MpegEncContext *s); |