diff options
author | Vitor Sessak <vitor1001@gmail.com> | 2007-08-07 12:44:23 +0000 |
---|---|---|
committer | Vitor Sessak <vitor1001@gmail.com> | 2007-08-07 12:44:23 +0000 |
commit | 4a5e6389fe4c535703afc4d0ba075a674c144c8c (patch) | |
tree | b6d0ebf56dce1c8d465ac499b895d563cd53ffea /libavcodec/alac.c | |
parent | e48f83fe47a302674295117ee2281cdfb49e88a9 (diff) | |
download | ffmpeg-4a5e6389fe4c535703afc4d0ba075a674c144c8c.tar.gz |
Rename function
Originally committed as revision 9977 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/alac.c')
-rw-r--r-- | libavcodec/alac.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/alac.c b/libavcodec/alac.c index 8bf8ee1eae..63dcc96af4 100644 --- a/libavcodec/alac.c +++ b/libavcodec/alac.c @@ -399,7 +399,7 @@ static void predictor_decompress_fir_adapt(int32_t *error_buffer, } } -static void deinterlace_16(int32_t *buffer[MAX_CHANNELS], +static void reconstruct_stereo_16(int32_t *buffer[MAX_CHANNELS], int16_t *buffer_out, int numchannels, int numsamples, uint8_t interlacing_shift, @@ -598,7 +598,7 @@ static int alac_decode_frame(AVCodecContext *avctx, switch(alac->setinfo_sample_size) { case 16: if (channels == 2) { - deinterlace_16(alac->outputsamples_buffer, + reconstruct_stereo_16(alac->outputsamples_buffer, (int16_t*)outbuffer, alac->numchannels, outputsamples, |