You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-15 14:13:16 +02:00
avcodec/motion_est: fix indention of ff_get_best_fcode()
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
@@ -1621,9 +1621,9 @@ int ff_get_best_fcode(MpegEncContext * s, int16_t (*mv_table)[2], int type)
|
|||||||
fcode_tab[my + MAX_MV]);
|
fcode_tab[my + MAX_MV]);
|
||||||
int j;
|
int j;
|
||||||
|
|
||||||
if(mx >= range || mx < -range ||
|
if (mx >= range || mx < -range ||
|
||||||
my >= range || my < -range)
|
my >= range || my < -range)
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
for(j=0; j<fcode && j<8; j++){
|
for(j=0; j<fcode && j<8; j++){
|
||||||
if(s->pict_type==AV_PICTURE_TYPE_B || s->current_picture.mc_mb_var[xy] < s->current_picture.mb_var[xy])
|
if(s->pict_type==AV_PICTURE_TYPE_B || s->current_picture.mc_mb_var[xy] < s->current_picture.mb_var[xy])
|
||||||
|
Reference in New Issue
Block a user