[FFmpeg-cvslog] r9726 - trunk/libavcodec/alac.c
vitor
subversion
Wed Jul 18 01:51:34 CEST 2007
Author: vitor
Date: Wed Jul 18 01:51:34 2007
New Revision: 9726
Log:
Move var. declaration to allow further clean up
Modified:
trunk/libavcodec/alac.c
Modified: trunk/libavcodec/alac.c
==============================================================================
--- trunk/libavcodec/alac.c (original)
+++ trunk/libavcodec/alac.c Wed Jul 18 01:51:34 2007
@@ -466,6 +466,8 @@ static int alac_decode_frame(AVCodecCont
int readsamplesize;
int wasted_bytes;
int isnotcompressed;
+ uint8_t interlacing_shift;
+ uint8_t interlacing_leftweight;
/* short-circuit null buffers */
if (!inbuffer || !input_buffer_size)
@@ -625,8 +627,6 @@ static int alac_decode_frame(AVCodecCont
break;
}
case 2: { /* 2 channels */
- uint8_t interlacing_shift;
- uint8_t interlacing_leftweight;
if (!isnotcompressed) {
/* compressed */
More information about the ffmpeg-cvslog
mailing list