diff options
author | Michael Niedermayer <michael@niedermayer.cc> | 2017-02-01 17:38:43 +0100 |
---|---|---|
committer | Michael Niedermayer <michael@niedermayer.cc> | 2017-02-01 19:09:27 +0100 |
commit | e00c516d1e245af6e9a83c4c0c83aeef3be21fdd (patch) | |
tree | a5df6d1e777bddbfa89865bd0b841a538e6fd3a2 | |
parent | aecdb14ad9a0c5d68c15e10dfbcefa36bf5ed7cd (diff) | |
download | ffmpeg-e00c516d1e245af6e9a83c4c0c83aeef3be21fdd.tar.gz |
avcodec/ituh263dec: Correct indention
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
-rw-r--r-- | libavcodec/ituh263dec.c | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/libavcodec/ituh263dec.c b/libavcodec/ituh263dec.c index b36557604b..46b98352d5 100644 --- a/libavcodec/ituh263dec.c +++ b/libavcodec/ituh263dec.c @@ -364,14 +364,14 @@ static void preview_obmc(MpegEncContext *s){ /* 16x16 motion prediction */ mot_val= ff_h263_pred_motion(s, 0, 0, &pred_x, &pred_y); if (s->umvplus) - mx = h263p_decode_umotion(s, pred_x); + mx = h263p_decode_umotion(s, pred_x); else - mx = ff_h263_decode_motion(s, pred_x, 1); + mx = ff_h263_decode_motion(s, pred_x, 1); if (s->umvplus) - my = h263p_decode_umotion(s, pred_y); + my = h263p_decode_umotion(s, pred_y); else - my = ff_h263_decode_motion(s, pred_y, 1); + my = ff_h263_decode_motion(s, pred_y, 1); mot_val[0 ]= mot_val[2 ]= mot_val[0+stride]= mot_val[2+stride]= mx; @@ -382,16 +382,16 @@ static void preview_obmc(MpegEncContext *s){ for(i=0;i<4;i++) { mot_val = ff_h263_pred_motion(s, i, 0, &pred_x, &pred_y); if (s->umvplus) - mx = h263p_decode_umotion(s, pred_x); + mx = h263p_decode_umotion(s, pred_x); else - mx = ff_h263_decode_motion(s, pred_x, 1); + mx = ff_h263_decode_motion(s, pred_x, 1); if (s->umvplus) - my = h263p_decode_umotion(s, pred_y); + my = h263p_decode_umotion(s, pred_y); else - my = ff_h263_decode_motion(s, pred_y, 1); + my = ff_h263_decode_motion(s, pred_y, 1); if (s->umvplus && (mx - pred_x) == 1 && (my - pred_y) == 1) - skip_bits1(&s->gb); /* Bit stuffing to prevent PSC */ + skip_bits1(&s->gb); /* Bit stuffing to prevent PSC */ mot_val[0] = mx; mot_val[1] = my; } @@ -690,16 +690,16 @@ int ff_h263_decode_mb(MpegEncContext *s, for(i=0;i<4;i++) { mot_val = ff_h263_pred_motion(s, i, 0, &pred_x, &pred_y); if (s->umvplus) - mx = h263p_decode_umotion(s, pred_x); + mx = h263p_decode_umotion(s, pred_x); else - mx = ff_h263_decode_motion(s, pred_x, 1); + mx = ff_h263_decode_motion(s, pred_x, 1); if (mx >= 0xffff) return -1; if (s->umvplus) - my = h263p_decode_umotion(s, pred_y); + my = h263p_decode_umotion(s, pred_y); else - my = ff_h263_decode_motion(s, pred_y, 1); + my = ff_h263_decode_motion(s, pred_y, 1); if (my >= 0xffff) return -1; s->mv[0][i][0] = mx; |