mirror of https://git.ffmpeg.org/ffmpeg.git
avcodec/h263: Inline constant
Reviewed-by: Michael Niedermayer <michael@niedermayer.cc> Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
This commit is contained in:
parent
645f705d6a
commit
18f22bfb27
|
@ -103,7 +103,7 @@ static inline int h263_get_motion_length(int val, int f_code){
|
|||
int l, bit_size, code;
|
||||
|
||||
if (val == 0) {
|
||||
return ff_mvtab[0][1];
|
||||
return 1; /* ff_mvtab[0][1] */
|
||||
} else {
|
||||
bit_size = f_code - 1;
|
||||
/* modulo encoding */
|
||||
|
|
Loading…
Reference in New Issue