summaryrefslogtreecommitdiff
path: root/libavcodec
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2007-12-18 19:40:08 +0000
committerMichael Niedermayer <michaelni@gmx.at>2007-12-18 19:40:08 +0000
commit9b4dd1b879e50bfb0971eb140b28ea83f900ca2a (patch)
tree4d22dc8be22361bf879e1307ed266eb728c3bdbe /libavcodec
parent3e0b7b562700ea2d76b2641140957319c56b669a (diff)
Document Motion_Est_IDs.
Originally committed as revision 11262 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec')
-rw-r--r--libavcodec/avcodec.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h
index 4f5681bd69..834b88a695 100644
--- a/libavcodec/avcodec.h
+++ b/libavcodec/avcodec.h
@@ -335,15 +335,15 @@ enum SampleFormat {
* motion estimation type.
*/
enum Motion_Est_ID {
- ME_ZERO = 1,
+ ME_ZERO = 1, ///< no search, that is use 0,0 vector whenever one is needed
ME_FULL,
ME_LOG,
ME_PHODS,
- ME_EPZS,
- ME_X1,
- ME_HEX,
- ME_UMH,
- ME_ITER,
+ ME_EPZS, ///< enhanced predictive zonal search
+ ME_X1, ///< reserved for experiments
+ ME_HEX, ///< hexagon based search
+ ME_UMH, ///< uneven multi-hexagon search
+ ME_ITER, ///< iterative search
};
enum AVDiscard{