# HG changeset patch # User michael # Date 1270170839 0 # Node ID 7b86b341edd07b23f69fb59538cdb4c23fc1208e # Parent a734f92c94b46c012387b5d80bdadec9125a62eb Move comment that belonged to cmp() back to cmp(). diff -r a734f92c94b4 -r 7b86b341edd0 motion_est.c --- a/motion_est.c Fri Apr 02 01:07:03 2010 +0000 +++ b/motion_est.c Fri Apr 02 01:13:59 2010 +0000 @@ -104,9 +104,6 @@ + (chroma ? FLAG_CHROMA : 0); } -/*! \brief compares a block (either a full macroblock or a partition thereof) - against a proposed motion-compensated prediction of that block - */ static av_always_inline int cmp_direct_inline(MpegEncContext *s, const int x, const int y, const int subx, const int suby, const int size, const int h, int ref_index, int src_index, me_cmp_func cmp_func, me_cmp_func chroma_cmp_func, int qpel){ @@ -251,6 +248,9 @@ } } +/*! \brief compares a block (either a full macroblock or a partition thereof) + against a proposed motion-compensated prediction of that block + */ static av_always_inline int cmp(MpegEncContext *s, const int x, const int y, const int subx, const int suby, const int size, const int h, int ref_index, int src_index, me_cmp_func cmp_func, me_cmp_func chroma_cmp_func, const int flags){