diff options
Diffstat (limited to 'libhb/declpcm.c')
-rw-r--r-- | libhb/declpcm.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libhb/declpcm.c b/libhb/declpcm.c index 88776dedf..853bbd0d9 100644 --- a/libhb/declpcm.c +++ b/libhb/declpcm.c @@ -338,7 +338,8 @@ static hb_buffer_t *Decode( hb_work_object_t *w ) hb_log("declpcm: hb_audio_resample_update() failed"); return NULL; } - out = hb_audio_resample(pv->resample, &pv->data, pv->nsamples); + out = hb_audio_resample(pv->resample, (const uint8_t **)&pv->data, + pv->nsamples); if (out != NULL) { |