cosmetics: break some long lines and insert few spaces

Originally committed as revision 20559 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Kostya Shishkov 2009-11-20 07:26:17 +00:00
parent dd562761d9
commit e4de5b0fb5

View File

@ -61,7 +61,8 @@ static int score_tab[256];
* XXX should be optimized and moved to DSPContext * XXX should be optimized and moved to DSPContext
* TODO handle out of edge ME * TODO handle out of edge ME
*/ */
static inline int block_cmp(uint8_t *src, int stride, uint8_t *src2, int stride2, int bw, int bh, int *xored) static inline int block_cmp(uint8_t *src, int stride, uint8_t *src2, int stride2,
int bw, int bh, int *xored)
{ {
int sum = 0; int sum = 0;
int i, j; int i, j;
@ -87,8 +88,8 @@ static inline int block_cmp(uint8_t *src, int stride, uint8_t *src2, int stride2
/** Motion estimation function /** Motion estimation function
* TODO make better ME decisions * TODO make better ME decisions
*/ */
static int zmbv_me(ZmbvEncContext *c, uint8_t *src, int sstride, uint8_t *prev, int pstride, static int zmbv_me(ZmbvEncContext *c, uint8_t *src, int sstride, uint8_t *prev,
int x, int y, int *mx, int *my, int *xored) int pstride, int x, int y, int *mx, int *my, int *xored)
{ {
int dx, dy, tx, ty, tv, bv, bw, bh; int dx, dy, tx, ty, tv, bv, bw, bh;