]> git.sesse.net Git - vlc/blob - plugins/ac3_adec/ac3_mantissa.c
44c9017185152d50e7d2dbc56e51844f649e916d
[vlc] / plugins / ac3_adec / ac3_mantissa.c
1 /*****************************************************************************
2  * ac3_mantissa.c: ac3 mantissa computation
3  *****************************************************************************
4  * Copyright (C) 1999, 2000, 2001 VideoLAN
5  * $Id: ac3_mantissa.c,v 1.2 2001/11/25 22:52:21 gbazin Exp $
6  *
7  * Authors: Michel Kaempf <maxx@via.ecp.fr>
8  *          Aaron Holtzman <aholtzma@engr.uvic.ca>
9  *          Renaud Dartus <reno@videolan.org>
10  *
11  * This program is free software; you can redistribute it and/or modify
12  * it under the terms of the GNU General Public License as published by
13  * the Free Software Foundation; either version 2 of the License, or
14  * (at your option) any later version.
15  * 
16  * This program is distributed in the hope that it will be useful,
17  * but WITHOUT ANY WARRANTY; without even the implied warranty of
18  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19  * GNU General Public License for more details.
20  *
21  * You should have received a copy of the GNU General Public License
22  * along with this program; if not, write to the Free Software
23  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
24  *****************************************************************************/
25
26 /*****************************************************************************
27  * Preamble
28  *****************************************************************************/
29 #include "defs.h"
30
31 #include <string.h>                                              /* memcpy() */
32
33 #include "config.h"
34 #include "common.h"
35 #include "threads.h"
36 #include "mtime.h"
37 #include "intf_msg.h"
38
39 #include "audio_output.h"
40
41 #include "modules.h"
42 #include "modules_export.h"
43
44 #include "stream_control.h"
45 #include "input_ext-dec.h"
46
47
48 #include "ac3_imdct.h"
49 #include "ac3_downmix.h"
50 #include "ac3_decoder.h"
51
52 #include "ac3_mantissa.h"
53
54 void mantissa_unpack (ac3dec_t * p_ac3dec)
55 {
56     int i, j;
57     u32 done_cpl = 0;
58
59     p_ac3dec->mantissa.q_1_pointer = -1;
60     p_ac3dec->mantissa.q_2_pointer = -1;
61     p_ac3dec->mantissa.q_4_pointer = -1;
62
63     for (i=0; i< p_ac3dec->bsi.nfchans; i++) {
64         for (j=0; j < p_ac3dec->audblk.endmant[i]; j++)
65             *(p_ac3dec->samples+i*256+j) = coeff_get_float(p_ac3dec, p_ac3dec->audblk.fbw_bap[i][j],
66                     p_ac3dec->audblk.dithflag[i], p_ac3dec->audblk.fbw_exp[i][j]);
67
68         if (p_ac3dec->audblk.cplinu && p_ac3dec->audblk.chincpl[i] && !(done_cpl)) {
69         /* ncplmant is equal to 12 * ncplsubnd
70          * Don't dither coupling channel until channel
71          * separation so that interchannel noise is uncorrelated 
72          */
73             for (j=p_ac3dec->audblk.cplstrtmant; j < p_ac3dec->audblk.cplendmant; j++)
74                 p_ac3dec->audblk.cpl_flt[j] = coeff_get_float(p_ac3dec, p_ac3dec->audblk.cpl_bap[j],
75                         0, p_ac3dec->audblk.cpl_exp[j]);
76             done_cpl = 1;
77         }
78     }
79     
80     /* uncouple the channel if necessary */
81     if (p_ac3dec->audblk.cplinu) {
82         for (i=0; i< p_ac3dec->bsi.nfchans; i++) {
83             if (p_ac3dec->audblk.chincpl[i])
84                 uncouple_channel(p_ac3dec, i);
85         }
86     }
87
88     if (p_ac3dec->bsi.lfeon) {
89         /* There are always 7 mantissas for lfe, no dither for lfe */
90         for (j=0; j < 7 ; j++)
91             *(p_ac3dec->samples+5*256+j) = coeff_get_float(p_ac3dec, p_ac3dec->audblk.lfe_bap[j],
92                     0, p_ac3dec->audblk.lfe_exp[j]);
93     }
94 }
95