Commit fdce9a6e authored by vitor's avatar vitor

Move var. declaration to allow further clean up

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@9726 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 2b32ba82
...@@ -466,6 +466,8 @@ static int alac_decode_frame(AVCodecContext *avctx, ...@@ -466,6 +466,8 @@ static int alac_decode_frame(AVCodecContext *avctx,
int readsamplesize; int readsamplesize;
int wasted_bytes; int wasted_bytes;
int isnotcompressed; int isnotcompressed;
uint8_t interlacing_shift;
uint8_t interlacing_leftweight;
/* short-circuit null buffers */ /* short-circuit null buffers */
if (!inbuffer || !input_buffer_size) if (!inbuffer || !input_buffer_size)
...@@ -625,8 +627,6 @@ static int alac_decode_frame(AVCodecContext *avctx, ...@@ -625,8 +627,6 @@ static int alac_decode_frame(AVCodecContext *avctx,
break; break;
} }
case 2: { /* 2 channels */ case 2: { /* 2 channels */
uint8_t interlacing_shift;
uint8_t interlacing_leftweight;
if (!isnotcompressed) { if (!isnotcompressed) {
/* compressed */ /* compressed */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment