diff options
author | Vitor Sessak <vitor1001@gmail.com> | 2007-07-17 23:51:34 +0000 |
---|---|---|
committer | Vitor Sessak <vitor1001@gmail.com> | 2007-07-17 23:51:34 +0000 |
commit | d562ba238eb04eb36c6e39a51c0ab808d18465e5 (patch) | |
tree | 92248536bc9b1091704f35e5ae6a26ea8714d97d /libavcodec/alac.c | |
parent | 001ec026450ff64c80498945bc40f2ac928068d7 (diff) | |
download | ffmpeg-d562ba238eb04eb36c6e39a51c0ab808d18465e5.tar.gz |
Move var. declaration to allow further clean up
Originally committed as revision 9726 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 df90d7e273..d83f85fcbd 100644 --- a/libavcodec/alac.c +++ b/libavcodec/alac.c @@ -466,6 +466,8 @@ static int alac_decode_frame(AVCodecContext *avctx, 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(AVCodecContext *avctx, break; } case 2: { /* 2 channels */ - uint8_t interlacing_shift; - uint8_t interlacing_leftweight; if (!isnotcompressed) { /* compressed */ |