diff options
author | Peter Ross <pross@xvid.org> | 2011-01-09 08:30:23 +0000 |
---|---|---|
committer | Peter Ross <pross@xvid.org> | 2011-01-09 08:30:23 +0000 |
commit | cd426563f41a62d6cd4e4b1c4ef819a208e0582e (patch) | |
tree | ca6f965046a600fab03a9da04cdc2a5126fb4cdf /libavcodec/eacmv.c | |
parent | 062421e30d1142729e0fddb0d2d488b0ad699471 (diff) | |
download | ffmpeg-cd426563f41a62d6cd4e4b1c4ef819a208e0582e.tar.gz |
fix indentation
Originally committed as revision 26280 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/eacmv.c')
-rw-r--r-- | libavcodec/eacmv.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libavcodec/eacmv.c b/libavcodec/eacmv.c index 016b234243..4a2d7c06a0 100644 --- a/libavcodec/eacmv.c +++ b/libavcodec/eacmv.c @@ -98,9 +98,9 @@ static void cmv_decode_inter(CmvContext * s, const uint8_t *buf, const uint8_t * int xoffset = (*raw & 0xF) - 7; int yoffset = ((*raw >> 4)) - 7; if (s->last2_frame.data[0]) - cmv_motcomp(s->frame.data[0], s->frame.linesize[0], - s->last2_frame.data[0], s->last2_frame.linesize[0], - x*4, y*4, xoffset, yoffset, s->avctx->width, s->avctx->height); + cmv_motcomp(s->frame.data[0], s->frame.linesize[0], + s->last2_frame.data[0], s->last2_frame.linesize[0], + x*4, y*4, xoffset, yoffset, s->avctx->width, s->avctx->height); raw++; } }else{ /* inter using last frame as reference */ |