libdvbpsi 1.3.2
dr_7c.h
Go to the documentation of this file.
1/*****************************************************************************
2 * dr_7c.h
3 * Copyright (c) 2012 VideoLAN
4 * $Id$
5 *
6 * Authors: Jean-Paul Saman <jpsaman@videolan.org>
7 *
8 * This library is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Lesser General Public
10 * License as published by the Free Software Foundation; either
11 * version 2.1 of the License, or (at your option) any later version.
12 *
13 * This library is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * Lesser General Public License for more details.
17 *
18 * You should have received a copy of the GNU Lesser General Public
19 * License along with this library; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
21 *
22 *****************************************************************************/
23
33#ifndef _DVBPSI_DR_7C_H_
34#define _DVBPSI_DR_7c_H_
35
36#include "types/aac_profile.h"
37
38#ifdef __cplusplus
39extern "C" {
40#endif
41
86
113
114/*****************************************************************************
115 * dvbpsi_DecodeAACDr
116 *****************************************************************************/
125
126/*****************************************************************************
127 * dvbpsi_GenAACDr
128 *****************************************************************************/
138
139#ifdef __cplusplus
140};
141#endif
142
143#else
144#error "Multiple inclusions of dr_7c.h"
145#endif
struct dvbpsi_aac_dr_s dvbpsi_aac_dr_t
dvbpsi_aac_dr_t type definition.
dvbpsi_aac_dr_t * dvbpsi_DecodeAACDr(dvbpsi_descriptor_t *p_descriptor)
"AAC Audio" descriptor decoder.
dvbpsi_descriptor_t * dvbpsi_GenAACDr(dvbpsi_aac_dr_t *p_decoded, bool b_duplicate)
"AAC" descriptor generator.
dvbpsi_aac_type_s
AAC type information as described in table 26, page 41 where column.
Definition dr_7c.h:55
@ DVBPSI_HE_AAC_BROADCAST_MIXED_IMPAIRED
Definition dr_7c.h:76
@ DVBPSI_HE_AAC_MONO
Definition dr_7c.h:57
@ DVBPSI_HE_AAC_V2_HEARING
Definition dr_7c.h:71
@ DVBPSI_HE_AAC_STEREO
Definition dr_7c.h:59
@ DVBPSI_AAC_RESERVED1
Definition dr_7c.h:58
@ DVBPSI_HE_AAC_V2_IMPAIRED
Definition dr_7c.h:69
@ DVBPSI_AAC_RESERVED4
Definition dr_7c.h:82
@ DVBPSI_HE_AAC_HEARING
Definition dr_7c.h:65
@ DVBPSI_AAC_RESERVED0
Definition dr_7c.h:56
@ DVBPSI_HE_AAC_V2_STEREO
Definition dr_7c.h:68
@ DVBPSI_HE_AAC_IMPAIRED
Definition dr_7c.h:63
@ DVBPSI_HE_AAC_V2_MIXED
Definition dr_7c.h:72
@ DVBPSI_AAC_RESERVED5
Definition dr_7c.h:84
@ DVBPSI_AAC_RESERVED2
Definition dr_7c.h:60
@ DVBPSI_HE_AAC_MIXED_IMPAIRED
Definition dr_7c.h:74
@ DVBPSI_HE_AAC_V2_BROADCAST_MIXED_IMPAIRED
Definition dr_7c.h:80
@ DVBPSI_AAC_USER
Definition dr_7c.h:83
@ DVBPSI_AAC_RESERVED3
Definition dr_7c.h:62
@ DVBPSI_HE_AAC_SURROUND
Definition dr_7c.h:61
@ DVBPSI_HE_AAC_MIXED
Definition dr_7c.h:66
@ DVBPSI_HE_AAC_V2_MIXED_IMPAIRED
Definition dr_7c.h:78
enum dvbpsi_aac_type_s dvbpsi_aac_type_t
AAC type information as descripted in table 26, page 41 where column 'stream_content' has value 0x06.
"AAC Audio" descriptor structure.
Definition dr_7c.h:98
bool b_type
Definition dr_7c.h:104
uint8_t * p_additional_info
Definition dr_7c.h:108
uint8_t i_additional_info_length
Definition dr_7c.h:107
dvbpsi_aac_profile_and_level_t i_profile_and_level
Definition dr_7c.h:99
dvbpsi_aac_type_t i_type
Definition dr_7c.h:105
Descriptor structure.
Definition descriptor.h:83