Const-correctness fix.

This commit is contained in:
Themaister 2012-11-28 16:24:47 +01:00
parent 6bae9a44d8
commit ee82a8daf5
1 changed files with 1 additions and 1 deletions

View File

@ -972,7 +972,7 @@ static void ffemu_audio_resample(ffemu_t *handle, struct ffemu_audio_data *data)
{
// It's always two channels ...
struct resampler_data info = {0};
info.data_in = (sample_t*)data->data;
info.data_in = (const sample_t*)data->data;
info.data_out = handle->audio.resample_out;
info.input_frames = data->frames;
info.ratio = handle->audio.ratio;