summaryrefslogtreecommitdiff
path: root/libavcodec/huffyuvdsp.h
diff options
context:
space:
mode:
authorChristophe Gisquet <christophe.gisquet@gmail.com>2014-05-29 09:10:39 +0000
committerMichael Niedermayer <michaelni@gmx.at>2014-05-29 14:46:21 +0200
commit25e6310a3ec96ce991c73f50c411736f4c80de11 (patch)
tree0abeb6b4f7711a3c14454f7bad0c515e2e79c576 /libavcodec/huffyuvdsp.h
parentc609f803e1c1689e8a557a9a9d624bf53aa4b7d3 (diff)
huffyuv: change left prediction access in BGRA
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/huffyuvdsp.h')
-rw-r--r--libavcodec/huffyuvdsp.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/libavcodec/huffyuvdsp.h b/libavcodec/huffyuvdsp.h
index cc12c75a39..fd66f0a56e 100644
--- a/libavcodec/huffyuvdsp.h
+++ b/libavcodec/huffyuvdsp.h
@@ -42,8 +42,7 @@ typedef struct HuffYUVDSPContext {
int (*add_hfyu_left_pred)(uint8_t *dst, const uint8_t *src,
int w, int left);
void (*add_hfyu_left_pred_bgr32)(uint8_t *dst, const uint8_t *src,
- int w, int *red, int *green,
- int *blue, int *alpha);
+ intptr_t w, uint8_t *left);
} HuffYUVDSPContext;
void ff_huffyuvdsp_init(HuffYUVDSPContext *c);