Mercurial > libavcodec.hg
changeset 5368:a31f6ae7e83d libavcodec
Make deinterlace_16 receive an array as a parameter and not two separated vars
author | vitor |
---|---|
date | Wed, 18 Jul 2007 14:45:01 +0000 |
parents | 1a1f93a4e726 |
children | 04a241c308e8 |
files | alac.c |
diffstat | 1 files changed, 6 insertions(+), 7 deletions(-) [+] |
line wrap: on
line diff
--- a/alac.c Wed Jul 18 14:37:39 2007 +0000 +++ b/alac.c Wed Jul 18 14:45:01 2007 +0000 @@ -399,7 +399,7 @@ } } -static void deinterlace_16(int32_t *buffer_a, int32_t *buffer_b, +static void deinterlace_16(int32_t *buffer[MAX_CHANNELS], int16_t *buffer_out, int numchannels, int numsamples, uint8_t interlacing_shift, @@ -416,8 +416,8 @@ int16_t left; int16_t right; - midright = buffer_a[i]; - difference = buffer_b[i]; + midright = buffer[0][i]; + difference = buffer[1][i]; right = midright - ((difference * interlacing_leftweight) >> interlacing_shift); @@ -434,8 +434,8 @@ for (i = 0; i < numsamples; i++) { int16_t left, right; - left = buffer_a[i]; - right = buffer_b[i]; + left = buffer[0][i]; + right = buffer[1][i]; buffer_out[i*numchannels] = left; buffer_out[i*numchannels + 1] = right; @@ -602,8 +602,7 @@ switch(alac->setinfo_sample_size) { case 16: { if (channels == 2) { - deinterlace_16(alac->outputsamples_buffer[0], - alac->outputsamples_buffer[1], + deinterlace_16(alac->outputsamples_buffer, (int16_t*)outbuffer, alac->numchannels, outputsamples,