comparison mpeg4videodec.c @ 11556:b94e1810ce4c libavcodec

Replace @returns by @return.
author benoit
date Tue, 30 Mar 2010 15:50:57 +0000
parents 77b3f322dba8
children 8a4984c5cacc
comparison
equal deleted inserted replaced
11555:e603f624b03f 11556:b94e1810ce4c
433 } 433 }
434 434
435 /** 435 /**
436 * gets the average motion vector for a GMC MB. 436 * gets the average motion vector for a GMC MB.
437 * @param n either 0 for the x component or 1 for y 437 * @param n either 0 for the x component or 1 for y
438 * @returns the average MV for a GMC MB 438 * @return the average MV for a GMC MB
439 */ 439 */
440 static inline int get_amv(MpegEncContext *s, int n){ 440 static inline int get_amv(MpegEncContext *s, int n){
441 int x, y, mb_v, sum, dx, dy, shift; 441 int x, y, mb_v, sum, dx, dy, shift;
442 int len = 1 << (s->f_code + 4); 442 int len = 1 << (s->f_code + 4);
443 const int a= s->sprite_warping_accuracy; 443 const int a= s->sprite_warping_accuracy;