diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2006-05-07 11:48:07 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2006-05-07 11:48:07 +0000 |
commit | 1dd509b1576e9fcac45ea63a664abf29ee419ded (patch) | |
tree | 5da894f614107fe5e10f3d54b1eb98a738c6f7f4 /libavcodec/avcodec.h | |
parent | 60827a1a802f0608852b1bd2184fc7d4bcd71cd4 (diff) | |
download | ffmpeg-1dd509b1576e9fcac45ea63a664abf29ee419ded.tar.gz |
make zero motion vector threshold user setable
Originally committed as revision 5348 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/avcodec.h')
-rw-r--r-- | libavcodec/avcodec.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index 0ba573e5ba..a5eb93b008 100644 --- a/libavcodec/avcodec.h +++ b/libavcodec/avcodec.h @@ -1967,6 +1967,14 @@ typedef struct AVCodecContext { * - decoding: unused */ int scenechange_factor; + + /** + * + * note: value depends upon the compare functin used for fullpel ME + * - encoding: set by user. + * - decoding: unused + */ + int mv0_threshold; } AVCodecContext; /** |