[FFmpeg-cvslog] vorbis dec: Delete useless scopes
Alexander Strasser
git
Tue Feb 8 21:55:31 CET 2011
ffmpeg | branch: master | Alexander Strasser <eclipse7 at gmx.net> | Tue Feb 8 00:07:47 2011 +0100| [21494e5537cdee82d5c9f99a0d9206fccb66ea08] | committer: Michael Niedermayer
vorbis dec: Delete useless scopes
Signed-off-by: Michael Niedermayer <michaelni at gmx.at>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=21494e5537cdee82d5c9f99a0d9206fccb66ea08
---
libavcodec/vorbis_dec.c | 5 -----
1 files changed, 0 insertions(+), 5 deletions(-)
diff --git a/libavcodec/vorbis_dec.c b/libavcodec/vorbis_dec.c
index bca56ba..3830887 100644
--- a/libavcodec/vorbis_dec.c
+++ b/libavcodec/vorbis_dec.c
@@ -594,8 +594,6 @@ static int vorbis_parse_setup_hdr_floors(vorbis_context *vc)
create_map(vc, i);
- /* allocate mem for lsp coefficients */
- {
/* codebook dim is for padding if codebook dim doesn't *
* divide order+1 then we need to read more data */
floor_setup->data.t0.lsp =
@@ -603,7 +601,6 @@ static int vorbis_parse_setup_hdr_floors(vorbis_context *vc)
* sizeof(float));
if (!floor_setup->data.t0.lsp)
return -1;
- }
#ifdef V_DEBUG /* debug output parsed headers */
AV_DEBUG("floor0 order: %u\n", floor_setup->data.t0.order);
@@ -1110,11 +1107,9 @@ static int vorbis_floor0_decode(vorbis_context *vc,
}
/* calculate linear floor value */
- {
q = exp((((amplitude*vf->amplitude_offset) /
(((1 << vf->amplitude_bits) - 1) * sqrt(p + q)))
- vf->amplitude_offset) * .11512925f);
- }
/* fill vector */
do {
More information about the ffmpeg-cvslog
mailing list