comparison alac.c @ 5358:f3a26c190f9a libavcodec

Move var. declaration to allow further clean up
author vitor
date Tue, 17 Jul 2007 23:51:34 +0000
parents 07c6fa478918
children 4743a1e95531
comparison
equal deleted inserted replaced
5357:07c6fa478918 5358:f3a26c190f9a
464 int32_t outputsamples; 464 int32_t outputsamples;
465 int hassize; 465 int hassize;
466 int readsamplesize; 466 int readsamplesize;
467 int wasted_bytes; 467 int wasted_bytes;
468 int isnotcompressed; 468 int isnotcompressed;
469 uint8_t interlacing_shift;
470 uint8_t interlacing_leftweight;
469 471
470 /* short-circuit null buffers */ 472 /* short-circuit null buffers */
471 if (!inbuffer || !input_buffer_size) 473 if (!inbuffer || !input_buffer_size)
472 return input_buffer_size; 474 return input_buffer_size;
473 475
623 break; 625 break;
624 } 626 }
625 break; 627 break;
626 } 628 }
627 case 2: { /* 2 channels */ 629 case 2: { /* 2 channels */
628 uint8_t interlacing_shift;
629 uint8_t interlacing_leftweight;
630 630
631 if (!isnotcompressed) { 631 if (!isnotcompressed) {
632 /* compressed */ 632 /* compressed */
633 int16_t predictor_coef_table[channels][32]; 633 int16_t predictor_coef_table[channels][32];
634 int predictor_coef_num[channels]; 634 int predictor_coef_num[channels];