diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2004-04-22 03:31:29 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2004-04-22 03:31:29 +0000 |
commit | 2750b827b3144a62fdc161a47341dd58764522b7 (patch) | |
tree | bc45f4aec80d3086f4d1684b554f94a1abb97b22 /libavcodec/avcodec.h | |
parent | c4a171482630978700c52e988801c950a7a92e30 (diff) | |
download | ffmpeg-2750b827b3144a62fdc161a47341dd58764522b7.tar.gz |
motion estimation cleanup
replace ugly macros by always_inline functions, that way its much more readable and flexible as always_inline can simply be removed while the macros couldnt be
about 0.5 % speedup with default parameters
Originally committed as revision 3037 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/avcodec.h')
-rw-r--r-- | libavcodec/avcodec.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index a8acae326a..9030b73775 100644 --- a/libavcodec/avcodec.h +++ b/libavcodec/avcodec.h @@ -1575,7 +1575,7 @@ typedef struct AVCodecContext { * - encoding: set by user * - decoding: set by user */ - void *me_threshold; + int me_threshold; } AVCodecContext; |