comparison mpegaudiodec.c @ 6703:656a92752424 libavcodec

cosmetics: merge decls
author bcoudurier
date Sat, 26 Apr 2008 14:34:01 +0000
parents a9a28c8b40fb
children 2f439a593e56
comparison
equal deleted inserted replaced
6702:a9a28c8b40fb 6703:656a92752424
2564 void *data, int *data_size, 2564 void *data, int *data_size,
2565 const uint8_t * buf, int buf_size) 2565 const uint8_t * buf, int buf_size)
2566 { 2566 {
2567 MP3On4DecodeContext *s = avctx->priv_data; 2567 MP3On4DecodeContext *s = avctx->priv_data;
2568 MPADecodeContext *m; 2568 MPADecodeContext *m;
2569 int len, out_size = 0; 2569 int len, fsize, out_size = 0;
2570 uint32_t header; 2570 uint32_t header;
2571 OUT_INT *out_samples = data; 2571 OUT_INT *out_samples = data;
2572 OUT_INT decoded_buf[MPA_FRAME_SIZE * MPA_MAX_CHANNELS]; 2572 OUT_INT decoded_buf[MPA_FRAME_SIZE * MPA_MAX_CHANNELS];
2573 OUT_INT *outptr, *bp; 2573 OUT_INT *outptr, *bp;
2574 int fsize;
2575 int fr, j, n; 2574 int fr, j, n;
2576 2575
2577 len = buf_size; 2576 len = buf_size;
2578 2577
2579 *data_size = 0; 2578 *data_size = 0;