aboutsummaryrefslogtreecommitdiffstats
path: root/libavcodec/avcodec.h
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2004-04-22 03:31:29 +0000
committerMichael Niedermayer <michaelni@gmx.at>2004-04-22 03:31:29 +0000
commit2750b827b3144a62fdc161a47341dd58764522b7 (patch)
treebc45f4aec80d3086f4d1684b554f94a1abb97b22 /libavcodec/avcodec.h
parentc4a171482630978700c52e988801c950a7a92e30 (diff)
downloadffmpeg-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.h2
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;