annotate ps.h @ 11890:747ea58d1ac6 libavcodec

Remove iid_mode from the PS context.
author alexc
date Sun, 20 Jun 2010 17:15:28 +0000
parents 2d81202be6e2
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
11886
2d81202be6e2 Add HE-AAC v2 support to the AAC decoder.
alexc
parents:
diff changeset
1 /*
2d81202be6e2 Add HE-AAC v2 support to the AAC decoder.
alexc
parents:
diff changeset
2 * MPEG-4 Parametric Stereo definitions and declarations
2d81202be6e2 Add HE-AAC v2 support to the AAC decoder.
alexc
parents:
diff changeset
3 * Copyright (c) 2010 Alex Converse <alex.converse@gmail.com>
2d81202be6e2 Add HE-AAC v2 support to the AAC decoder.
alexc
parents:
diff changeset
4 *
2d81202be6e2 Add HE-AAC v2 support to the AAC decoder.
alexc
parents:
diff changeset
5 * This file is part of FFmpeg.
2d81202be6e2 Add HE-AAC v2 support to the AAC decoder.
alexc
parents:
diff changeset
6 *
2d81202be6e2 Add HE-AAC v2 support to the AAC decoder.
alexc
parents:
diff changeset
7 * FFmpeg is free software; you can redistribute it and/or
2d81202be6e2 Add HE-AAC v2 support to the AAC decoder.
alexc
parents:
diff changeset
8 * modify it under the terms of the GNU Lesser General Public
2d81202be6e2 Add HE-AAC v2 support to the AAC decoder.
alexc
parents:
diff changeset
9 * License as published by the Free Software Foundation; either
2d81202be6e2 Add HE-AAC v2 support to the AAC decoder.
alexc
parents:
diff changeset
10 * version 2.1 of the License, or (at your option) any later version.
2d81202be6e2 Add HE-AAC v2 support to the AAC decoder.
alexc
parents:
diff changeset
11 *
2d81202be6e2 Add HE-AAC v2 support to the AAC decoder.
alexc
parents:
diff changeset
12 * FFmpeg is distributed in the hope that it will be useful,
2d81202be6e2 Add HE-AAC v2 support to the AAC decoder.
alexc
parents:
diff changeset
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
2d81202be6e2 Add HE-AAC v2 support to the AAC decoder.
alexc
parents:
diff changeset
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
2d81202be6e2 Add HE-AAC v2 support to the AAC decoder.
alexc
parents:
diff changeset
15 * Lesser General Public License for more details.
2d81202be6e2 Add HE-AAC v2 support to the AAC decoder.
alexc
parents:
diff changeset
16 *
2d81202be6e2 Add HE-AAC v2 support to the AAC decoder.
alexc
parents:
diff changeset
17 * You should have received a copy of the GNU Lesser General Public
2d81202be6e2 Add HE-AAC v2 support to the AAC decoder.
alexc
parents:
diff changeset
18 * License along with FFmpeg; if not, write to the Free Software
2d81202be6e2 Add HE-AAC v2 support to the AAC decoder.
alexc
parents:
diff changeset
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
2d81202be6e2 Add HE-AAC v2 support to the AAC decoder.
alexc
parents:
diff changeset
20 */
2d81202be6e2 Add HE-AAC v2 support to the AAC decoder.
alexc
parents:
diff changeset
21
2d81202be6e2 Add HE-AAC v2 support to the AAC decoder.
alexc
parents:
diff changeset
22 #ifndef AVCODEC_PS_H
2d81202be6e2 Add HE-AAC v2 support to the AAC decoder.
alexc
parents:
diff changeset
23 #define AVCODEC_PS_H
2d81202be6e2 Add HE-AAC v2 support to the AAC decoder.
alexc
parents:
diff changeset
24
2d81202be6e2 Add HE-AAC v2 support to the AAC decoder.
alexc
parents:
diff changeset
25 #include <stdint.h>
2d81202be6e2 Add HE-AAC v2 support to the AAC decoder.
alexc
parents:
diff changeset
26
2d81202be6e2 Add HE-AAC v2 support to the AAC decoder.
alexc
parents:
diff changeset
27 #define PS_MAX_NUM_ENV 5
2d81202be6e2 Add HE-AAC v2 support to the AAC decoder.
alexc
parents:
diff changeset
28 #define PS_MAX_NR_IIDICC 34
2d81202be6e2 Add HE-AAC v2 support to the AAC decoder.
alexc
parents:
diff changeset
29 #define PS_MAX_NR_IPDOPD 17
2d81202be6e2 Add HE-AAC v2 support to the AAC decoder.
alexc
parents:
diff changeset
30 #define PS_MAX_SSB 91
2d81202be6e2 Add HE-AAC v2 support to the AAC decoder.
alexc
parents:
diff changeset
31 #define PS_MAX_AP_BANDS 50
2d81202be6e2 Add HE-AAC v2 support to the AAC decoder.
alexc
parents:
diff changeset
32 #define PS_QMF_TIME_SLOTS 32
2d81202be6e2 Add HE-AAC v2 support to the AAC decoder.
alexc
parents:
diff changeset
33 #define PS_MAX_DELAY 14
2d81202be6e2 Add HE-AAC v2 support to the AAC decoder.
alexc
parents:
diff changeset
34 #define PS_AP_LINKS 3
2d81202be6e2 Add HE-AAC v2 support to the AAC decoder.
alexc
parents:
diff changeset
35 #define PS_MAX_AP_DELAY 5
2d81202be6e2 Add HE-AAC v2 support to the AAC decoder.
alexc
parents:
diff changeset
36
2d81202be6e2 Add HE-AAC v2 support to the AAC decoder.
alexc
parents:
diff changeset
37 typedef struct {
2d81202be6e2 Add HE-AAC v2 support to the AAC decoder.
alexc
parents:
diff changeset
38 int start;
2d81202be6e2 Add HE-AAC v2 support to the AAC decoder.
alexc
parents:
diff changeset
39 int enable_iid;
2d81202be6e2 Add HE-AAC v2 support to the AAC decoder.
alexc
parents:
diff changeset
40 int iid_quant;
2d81202be6e2 Add HE-AAC v2 support to the AAC decoder.
alexc
parents:
diff changeset
41 int nr_iid_par;
2d81202be6e2 Add HE-AAC v2 support to the AAC decoder.
alexc
parents:
diff changeset
42 int nr_ipdopd_par;
2d81202be6e2 Add HE-AAC v2 support to the AAC decoder.
alexc
parents:
diff changeset
43 int enable_icc;
2d81202be6e2 Add HE-AAC v2 support to the AAC decoder.
alexc
parents:
diff changeset
44 int icc_mode;
2d81202be6e2 Add HE-AAC v2 support to the AAC decoder.
alexc
parents:
diff changeset
45 int nr_icc_par;
2d81202be6e2 Add HE-AAC v2 support to the AAC decoder.
alexc
parents:
diff changeset
46 int enable_ext;
2d81202be6e2 Add HE-AAC v2 support to the AAC decoder.
alexc
parents:
diff changeset
47 int frame_class;
2d81202be6e2 Add HE-AAC v2 support to the AAC decoder.
alexc
parents:
diff changeset
48 int num_env_old;
2d81202be6e2 Add HE-AAC v2 support to the AAC decoder.
alexc
parents:
diff changeset
49 int num_env;
2d81202be6e2 Add HE-AAC v2 support to the AAC decoder.
alexc
parents:
diff changeset
50 int enable_ipdopd;
2d81202be6e2 Add HE-AAC v2 support to the AAC decoder.
alexc
parents:
diff changeset
51 int border_position[PS_MAX_NUM_ENV+1];
2d81202be6e2 Add HE-AAC v2 support to the AAC decoder.
alexc
parents:
diff changeset
52 int8_t iid_par[PS_MAX_NUM_ENV][PS_MAX_NR_IIDICC]; //<Inter-channel Intensity Difference Parameters
2d81202be6e2 Add HE-AAC v2 support to the AAC decoder.
alexc
parents:
diff changeset
53 int8_t icc_par[PS_MAX_NUM_ENV][PS_MAX_NR_IIDICC]; //<Inter-Channel Coherence Parameters
2d81202be6e2 Add HE-AAC v2 support to the AAC decoder.
alexc
parents:
diff changeset
54 /* ipd/opd is iid/icc sized so that the same functions can handle both */
2d81202be6e2 Add HE-AAC v2 support to the AAC decoder.
alexc
parents:
diff changeset
55 int8_t ipd_par[PS_MAX_NUM_ENV][PS_MAX_NR_IIDICC]; //<Inter-channel Phase Difference Parameters
2d81202be6e2 Add HE-AAC v2 support to the AAC decoder.
alexc
parents:
diff changeset
56 int8_t opd_par[PS_MAX_NUM_ENV][PS_MAX_NR_IIDICC]; //<Overall Phase Difference Parameters
2d81202be6e2 Add HE-AAC v2 support to the AAC decoder.
alexc
parents:
diff changeset
57 int is34bands;
2d81202be6e2 Add HE-AAC v2 support to the AAC decoder.
alexc
parents:
diff changeset
58 int is34bands_old;
2d81202be6e2 Add HE-AAC v2 support to the AAC decoder.
alexc
parents:
diff changeset
59
2d81202be6e2 Add HE-AAC v2 support to the AAC decoder.
alexc
parents:
diff changeset
60 float in_buf[5][44][2];
2d81202be6e2 Add HE-AAC v2 support to the AAC decoder.
alexc
parents:
diff changeset
61 float delay[PS_MAX_SSB][PS_QMF_TIME_SLOTS + PS_MAX_DELAY][2];
2d81202be6e2 Add HE-AAC v2 support to the AAC decoder.
alexc
parents:
diff changeset
62 float ap_delay[PS_MAX_AP_BANDS][PS_AP_LINKS][PS_QMF_TIME_SLOTS + PS_MAX_AP_DELAY][2];
2d81202be6e2 Add HE-AAC v2 support to the AAC decoder.
alexc
parents:
diff changeset
63 float peak_decay_nrg[34];
2d81202be6e2 Add HE-AAC v2 support to the AAC decoder.
alexc
parents:
diff changeset
64 float power_smooth[34];
2d81202be6e2 Add HE-AAC v2 support to the AAC decoder.
alexc
parents:
diff changeset
65 float peak_decay_diff_smooth[34];
2d81202be6e2 Add HE-AAC v2 support to the AAC decoder.
alexc
parents:
diff changeset
66 float H11[2][PS_MAX_NUM_ENV+1][PS_MAX_NR_IIDICC];
2d81202be6e2 Add HE-AAC v2 support to the AAC decoder.
alexc
parents:
diff changeset
67 float H12[2][PS_MAX_NUM_ENV+1][PS_MAX_NR_IIDICC];
2d81202be6e2 Add HE-AAC v2 support to the AAC decoder.
alexc
parents:
diff changeset
68 float H21[2][PS_MAX_NUM_ENV+1][PS_MAX_NR_IIDICC];
2d81202be6e2 Add HE-AAC v2 support to the AAC decoder.
alexc
parents:
diff changeset
69 float H22[2][PS_MAX_NUM_ENV+1][PS_MAX_NR_IIDICC];
2d81202be6e2 Add HE-AAC v2 support to the AAC decoder.
alexc
parents:
diff changeset
70 int8_t opd_hist[PS_MAX_NR_IIDICC];
2d81202be6e2 Add HE-AAC v2 support to the AAC decoder.
alexc
parents:
diff changeset
71 int8_t ipd_hist[PS_MAX_NR_IIDICC];
2d81202be6e2 Add HE-AAC v2 support to the AAC decoder.
alexc
parents:
diff changeset
72 } PSContext;
2d81202be6e2 Add HE-AAC v2 support to the AAC decoder.
alexc
parents:
diff changeset
73
2d81202be6e2 Add HE-AAC v2 support to the AAC decoder.
alexc
parents:
diff changeset
74 void ff_ps_init(void);
2d81202be6e2 Add HE-AAC v2 support to the AAC decoder.
alexc
parents:
diff changeset
75 void ff_ps_ctx_init(PSContext *ps);
2d81202be6e2 Add HE-AAC v2 support to the AAC decoder.
alexc
parents:
diff changeset
76 int ff_ps_read_data(AVCodecContext *avctx, GetBitContext *gb, PSContext *ps, int bits_left);
2d81202be6e2 Add HE-AAC v2 support to the AAC decoder.
alexc
parents:
diff changeset
77 int ff_ps_apply(AVCodecContext *avctx, PSContext *ps, float L[2][38][64], float R[2][38][64], int top);
2d81202be6e2 Add HE-AAC v2 support to the AAC decoder.
alexc
parents:
diff changeset
78
2d81202be6e2 Add HE-AAC v2 support to the AAC decoder.
alexc
parents:
diff changeset
79 #endif /* AVCODEC_PS_H */