summaryrefslogtreecommitdiff
path: root/libavcodec/dsputil_template.c
diff options
context:
space:
mode:
authorDerek Buitenhuis <derek.buitenhuis@gmail.com>2012-09-09 07:02:51 -0400
committerMichael Niedermayer <michaelni@gmx.at>2012-09-09 17:21:37 +0200
commit3629d1c09dc400657d4f65959dc173a82bacc7b3 (patch)
tree73d54801b653a221edb2fadc6d79a3a5b7b3e3da /libavcodec/dsputil_template.c
parent6add8eb2ce165ea943ddeee611fd3f68b85012e0 (diff)
dsputil_template: Reindent after recent change
Forgot to keep it pretty in e62e455f7b4c5b148f5a289ba823dcc71d6ca389. Signed-off-by: Derek Buitenhuis <derek.buitenhuis@gmail.com> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/dsputil_template.c')
-rw-r--r--libavcodec/dsputil_template.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/libavcodec/dsputil_template.c b/libavcodec/dsputil_template.c
index 1967e1674f..7286726410 100644
--- a/libavcodec/dsputil_template.c
+++ b/libavcodec/dsputil_template.c
@@ -193,12 +193,12 @@ void FUNC(ff_emulated_edge_mc)(uint8_t *buf, const uint8_t *src, int linesize, i
}
#define DCTELEM_FUNCS(dctcoef, suffix) \
-static void FUNCC(get_pixels ## suffix)(DCTELEM *av_restrict _block, \
+static void FUNCC(get_pixels ## suffix)(DCTELEM *av_restrict _block, \
const uint8_t *_pixels, \
int line_size) \
{ \
const pixel *pixels = (const pixel *) _pixels; \
- dctcoef *av_restrict block = (dctcoef *) _block; \
+ dctcoef *av_restrict block = (dctcoef *) _block; \
int i; \
\
/* read the pixels */ \
@@ -216,12 +216,12 @@ static void FUNCC(get_pixels ## suffix)(DCTELEM *av_restrict _block, \
} \
} \
\
-static void FUNCC(add_pixels8 ## suffix)(uint8_t *av_restrict _pixels, \
+static void FUNCC(add_pixels8 ## suffix)(uint8_t *av_restrict _pixels, \
DCTELEM *_block, \
int line_size) \
{ \
int i; \
- pixel *av_restrict pixels = (pixel *av_restrict)_pixels; \
+ pixel *av_restrict pixels = (pixel *av_restrict)_pixels; \
dctcoef *block = (dctcoef*)_block; \
line_size /= sizeof(pixel); \
\
@@ -239,12 +239,12 @@ static void FUNCC(add_pixels8 ## suffix)(uint8_t *av_restrict _pixels, \
} \
} \
\
-static void FUNCC(add_pixels4 ## suffix)(uint8_t *av_restrict _pixels, \
+static void FUNCC(add_pixels4 ## suffix)(uint8_t *av_restrict _pixels, \
DCTELEM *_block, \
int line_size) \
{ \
int i; \
- pixel *av_restrict pixels = (pixel *av_restrict)_pixels; \
+ pixel *av_restrict pixels = (pixel *av_restrict)_pixels; \
dctcoef *block = (dctcoef*)_block; \
line_size /= sizeof(pixel); \
\