comparison motion_est.c @ 4758:efeca638ad20 libavcodec

doxy comment tweaks
author lorenm
date Sat, 31 Mar 2007 23:58:33 +0000
parents e511820c4a97
children 4dbe6578f811
comparison
equal deleted inserted replaced
4757:e511820c4a97 4758:efeca638ad20
101 return ((c->avctx->flags&CODEC_FLAG_QPEL) ? FLAG_QPEL : 0) 101 return ((c->avctx->flags&CODEC_FLAG_QPEL) ? FLAG_QPEL : 0)
102 + (direct ? FLAG_DIRECT : 0) 102 + (direct ? FLAG_DIRECT : 0)
103 + (chroma ? FLAG_CHROMA : 0); 103 + (chroma ? FLAG_CHROMA : 0);
104 } 104 }
105 105
106 /*! \brief compares two blocks, which may be full macroblocks or may be 106 /*! \brief compares a block (either a full macroblock or a partition thereof)
107 partitions thereof. 107 against a proposed motion-compensated prediction of that block
108 */ 108 */
109 static av_always_inline int cmp(MpegEncContext *s, const int x, const int y, const int subx, const int suby, 109 static av_always_inline int cmp(MpegEncContext *s, const int x, const int y, const int subx, const int suby,
110 const int size, const int h, int ref_index, int src_index, 110 const int size, const int h, int ref_index, int src_index,
111 me_cmp_func cmp_func, me_cmp_func chroma_cmp_func, const int flags){ 111 me_cmp_func cmp_func, me_cmp_func chroma_cmp_func, const int flags){
112 MotionEstContext * const c= &s->me; 112 MotionEstContext * const c= &s->me;