[FFmpeg-cvslog] hpeldsp_template: Merge some declarations and initializations
Diego Biurrun
git at videolan.org
Thu Mar 20 21:29:49 CET 2014
ffmpeg | branch: master | Diego Biurrun <diego at biurrun.de> | Fri Jan 10 14:41:47 2014 +0100| [cce791b17becc99f47e097adb93f4b4bbd382e7e] | committer: Diego Biurrun
hpeldsp_template: Merge some declarations and initializations
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=cce791b17becc99f47e097adb93f4b4bbd382e7e
---
libavcodec/hpeldsp_template.c | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/libavcodec/hpeldsp_template.c b/libavcodec/hpeldsp_template.c
index 76c3fd3..9456490 100644
--- a/libavcodec/hpeldsp_template.c
+++ b/libavcodec/hpeldsp_template.c
@@ -133,14 +133,14 @@ static inline void FUNCC(OPNAME ## _pixels2_xy2)(uint8_t *_block, \
ptrdiff_t line_size, \
int h) \
{ \
- int i, a0, b0, a1, b1; \
pixel *block = (pixel *) _block; \
const pixel *pixels = (const pixel *) _pixels; \
- a0 = pixels[0]; \
- b0 = pixels[1] + 2; \
+ int i, a1, b1; \
+ int a0 = pixels[0]; \
+ int b0 = pixels[1] + 2; \
+ \
a0 += b0; \
b0 += pixels[2]; \
- \
line_size /= sizeof(pixel); \
pixels += line_size; \
for (i = 0; i < h; i += 2) { \
More information about the ffmpeg-cvslog
mailing list