hpel_template: Drop some unnecessary parentheses
authorDiego Biurrun <diego@biurrun.de>
Fri, 10 Jan 2014 11:11:41 +0000 (12:11 +0100)
committerDiego Biurrun <diego@biurrun.de>
Thu, 20 Mar 2014 12:03:22 +0000 (05:03 -0700)
libavcodec/hpel_template.c

index 8f99950..0d90445 100644 (file)
@@ -27,7 +27,7 @@ static inline void FUNCC(OPNAME ## _pixels2)(uint8_t *block,            \
 {                                                                       \
     int i;                                                              \
     for (i = 0; i < h; i++) {                                           \
-        OP(*((pixel2 *) (block)), AV_RN2P(pixels));                     \
+        OP(*((pixel2 *) block), AV_RN2P(pixels));                       \
         pixels += line_size;                                            \
         block  += line_size;                                            \
     }                                                                   \
@@ -40,7 +40,7 @@ static inline void FUNCC(OPNAME ## _pixels4)(uint8_t *block,            \
 {                                                                       \
     int i;                                                              \
     for (i = 0; i < h; i++) {                                           \
-        OP(*((pixel4 *) (block)), AV_RN4P(pixels));                     \
+        OP(*((pixel4 *) block), AV_RN4P(pixels));                       \
         pixels += line_size;                                            \
         block  += line_size;                                            \
     }                                                                   \
@@ -53,7 +53,7 @@ static inline void FUNCC(OPNAME ## _pixels8)(uint8_t *block,            \
 {                                                                       \
     int i;                                                              \
     for (i = 0; i < h; i++) {                                           \
-        OP(*((pixel4 *) (block)), AV_RN4P(pixels));                     \
+        OP(*((pixel4 *) block), AV_RN4P(pixels));                       \
         OP(*((pixel4 *) (block + 4 * sizeof(pixel))),                   \
            AV_RN4P(pixels + 4 * sizeof(pixel)));                        \
         pixels += line_size;                                            \