resampler: Drop redundant assignment in convert_from_work_format()

r->from_work_format_buf.length is set twice

Signed-off-by: Peter Meerwald <p.meerwald@bct-electronic.com>
This commit is contained in:
Peter Meerwald 2013-01-30 11:04:04 +01:00 committed by Tanu Kaskinen
parent 34c631c0ae
commit 4b3de4422e

View file

@ -1277,8 +1277,6 @@ static pa_memchunk *convert_from_work_format(pa_resampler *r, pa_memchunk *input
pa_memblock_release(input->memblock);
pa_memblock_release(r->from_work_format_buf.memblock);
r->from_work_format_buf.length = r->o_fz * n_frames;
return &r->from_work_format_buf;
}