summaryrefslogtreecommitdiffstats
path: root/libhb/audio_remap.h
diff options
context:
space:
mode:
Diffstat (limited to 'libhb/audio_remap.h')
-rw-r--r--libhb/audio_remap.h8
1 files changed, 3 insertions, 5 deletions
diff --git a/libhb/audio_remap.h b/libhb/audio_remap.h
index a776fe57b..0bdd23bb7 100644
--- a/libhb/audio_remap.h
+++ b/libhb/audio_remap.h
@@ -40,15 +40,13 @@ typedef struct
typedef struct
{
int nchannels;
- int sample_size;
int remap_needed;
- hb_buffer_t *buf;
hb_chan_map_t *channel_map_in;
hb_chan_map_t *channel_map_out;
int table[HB_AUDIO_REMAP_MAX_CHANNELS];
- void (*remap)(uint8_t *tmp_buf, uint8_t *samples, int nsamples,
- int nchannels, int sample_size, int *remap_table);
+ void (*remap)(uint8_t **samples, int nsamples,
+ int nchannels, int *remap_table);
} hb_audio_remap_t;
/*
@@ -88,7 +86,7 @@ void hb_audio_remap_free(hb_audio_remap_t *remap);
*
* The remap parameter can be NULL (no remapping).
*/
-void hb_audio_remap(hb_audio_remap_t *remap, uint8_t *samples,
+void hb_audio_remap(hb_audio_remap_t *remap, uint8_t **samples,
int nsamples);
/*