Browse Source

swr: fix warning: passing argument 1 of s->mix_any_f from incompatible pointer type

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
tags/n1.0
Michael Niedermayer 13 years ago
parent
commit
338509c2e1
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libswresample/swresample_internal.h

+ 1
- 1
libswresample/swresample_internal.h View File

@@ -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


Loading…
Cancel
Save