[FFmpeg-cvslog] r26280 - trunk/libavcodec/eacmv.c
pross
subversion
Sun Jan 9 09:30:24 CET 2011
Author: pross
Date: Sun Jan 9 09:30:23 2011
New Revision: 26280
Log:
fix indentation
Modified:
trunk/libavcodec/eacmv.c
Modified: trunk/libavcodec/eacmv.c
==============================================================================
--- trunk/libavcodec/eacmv.c Sun Jan 9 09:28:40 2011 (r26279)
+++ trunk/libavcodec/eacmv.c Sun Jan 9 09:30:23 2011 (r26280)
@@ -98,9 +98,9 @@ static void cmv_decode_inter(CmvContext
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 */
More information about the ffmpeg-cvslog
mailing list