Commit fc1d7811 authored by Michael Niedermayer's avatar Michael Niedermayer

Merge commit '4506a854'

* commit '4506a854':
  arm: vp3: remove incorrect const in ff_vp3_idct_dc_add_neon declaration
Merged-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parents ea9399f8 4506a854
......@@ -26,7 +26,7 @@
void ff_vp3_idct_put_neon(uint8_t *dest, int line_size, int16_t *data);
void ff_vp3_idct_add_neon(uint8_t *dest, int line_size, int16_t *data);
void ff_vp3_idct_dc_add_neon(uint8_t *dest, int line_size, const int16_t *data);
void ff_vp3_idct_dc_add_neon(uint8_t *dest, int line_size, int16_t *data);
void ff_vp3_v_loop_filter_neon(uint8_t *, int, int *);
void ff_vp3_h_loop_filter_neon(uint8_t *, int, int *);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment