From 76025d91da3d24ba57e27b6946cbaf40b443ccf7 Mon Sep 17 00:00:00 2001 From: Aurelien Jacobs Date: Thu, 11 Dec 2008 23:00:58 +0000 Subject: [PATCH] cosmetics: vertical alignment Originally committed as revision 16069 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/vp56.c | 2 +- libavcodec/vp56.h | 12 ++++++------ 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/libavcodec/vp56.c b/libavcodec/vp56.c index 1ebb54af59..d954c5daf5 100644 --- a/libavcodec/vp56.c +++ b/libavcodec/vp56.c @@ -145,7 +145,7 @@ static void vp56_parse_mb_type_models(VP56Context *s) } static VP56mb vp56_parse_mb_type(VP56Context *s, - VP56mb prev_type, int ctx) + VP56mb prev_type, int ctx) { uint8_t *mb_type_model = s->modelp->mb_type[ctx][prev_type]; VP56RangeCoder *c = &s->c; diff --git a/libavcodec/vp56.h b/libavcodec/vp56.h index 0c352e8175..2870f2a396 100644 --- a/libavcodec/vp56.h +++ b/libavcodec/vp56.h @@ -34,17 +34,17 @@ typedef struct vp56_context VP56Context; typedef struct vp56_mv VP56mv; typedef void (*VP56ParseVectorAdjustment)(VP56Context *s, - VP56mv *vect); -typedef int (*VP56Adjust)(int v, int t); + VP56mv *vect); +typedef int (*VP56Adjust)(int v, int t); typedef void (*VP56Filter)(VP56Context *s, uint8_t *dst, uint8_t *src, - int offset1, int offset2, int stride, - VP56mv mv, int mask, int select, int luma); + int offset1, int offset2, int stride, + VP56mv mv, int mask, int select, int luma); typedef void (*VP56ParseCoeff)(VP56Context *s); typedef void (*VP56DefaultModelsInit)(VP56Context *s); typedef void (*VP56ParseVectorModels)(VP56Context *s); typedef void (*VP56ParseCoeffModels)(VP56Context *s); -typedef int (*VP56ParseHeader)(VP56Context *s, const uint8_t *buf, - int buf_size, int *golden_frame); +typedef int (*VP56ParseHeader)(VP56Context *s, const uint8_t *buf, + int buf_size, int *golden_frame); typedef struct { int high;