diff options
author | Keiji Costantini <lists@strites.net> | 2008-04-21 08:32:11 +0000 |
---|---|---|
committer | Benoit Fouet <benoit.fouet@free.fr> | 2008-04-21 08:32:11 +0000 |
commit | b1d31e2f1236f4f7791bb2b969c214b57ac2a1c0 (patch) | |
tree | e3fed7f739af5c4e1263843df32ea6183eed386b /libavcodec | |
parent | bd7c626ad0d00da0620dd9e5873ffb02b3d4efd1 (diff) | |
download | ffmpeg-b1d31e2f1236f4f7791bb2b969c214b57ac2a1c0.tar.gz |
Force inlining of MPV_motion_internal.
Patch by strites: strites gmail com
Original thread: [FFmpeg-devel] [PATCH] Patch cleanup for MPEG 1 & 2 optimizations
Date: 04/06/2008 11:32 PM
Originally committed as revision 12918 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/mpegvideo_common.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/mpegvideo_common.h b/libavcodec/mpegvideo_common.h index dfc5897c2a..4f3396f589 100644 --- a/libavcodec/mpegvideo_common.h +++ b/libavcodec/mpegvideo_common.h @@ -635,7 +635,7 @@ static inline void prefetch_motion(MpegEncContext *s, uint8_t **pix, int dir){ * @param pic_op qpel motion compensation function (average or put normally) * the motion vectors are taken from s->mv and the MV type from s->mv_type */ -static inline void MPV_motion_internal(MpegEncContext *s, +static av_always_inline void MPV_motion_internal(MpegEncContext *s, uint8_t *dest_y, uint8_t *dest_cb, uint8_t *dest_cr, int dir, uint8_t **ref_picture, |