diff options
author | Michael Niedermayer | 2012-07-02 17:32:23 +0200 |
---|---|---|
committer | Michael Niedermayer | 2012-07-02 17:32:23 +0200 |
commit | 338509c2e1f010bf6190797488c7afaf0969dfc8 (patch) | |
tree | 0450b0c0d4e0c6d82ab59b4fb17d31d9dccc2c9b /libswresample | |
parent | 087d067a9943b48b9af592baf4a360d8d783829a (diff) |
swr: fix warning: passing argument 1 of s->mix_any_f from incompatible pointer type
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libswresample')
-rw-r--r-- | libswresample/swresample_internal.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libswresample/swresample_internal.h b/libswresample/swresample_internal.h index ddcecf1f45..52b60ce734 100644 --- a/libswresample/swresample_internal.h +++ b/libswresample/swresample_internal.h @@ -26,7 +26,7 @@ typedef void (mix_1_1_func_type)(void *out, const void *in, void *coeffp, int index, int len); typedef void (mix_2_1_func_type)(void *out, const void *in1, const void *in2, void *coeffp, int index1, int index2, int len); -typedef void (mix_any_func_type)(void **out, const void **in1, void *coeffp, int len); +typedef void (mix_any_func_type)(uint8_t **out, const uint8_t **in1, void *coeffp, int len); typedef struct AudioData{ uint8_t *ch[SWR_CH_MAX]; ///< samples buffer per channel |