1 /*
2 * Copyright (C) 2016 foo86
3 *
4 * This file is part of FFmpeg.
5 *
6 * FFmpeg is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
10 *
11 * FFmpeg is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
15 *
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with FFmpeg; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19 */
20
21 #ifndef AVCODEC_DCA_EXSS_H
22 #define AVCODEC_DCA_EXSS_H
23
25
28
30 int asset_offset;
///< Offset to asset data from start of substream
33
43
46
47 int core_offset;
///< Offset to core component from start of substream
48 int core_size;
///< Size of core component in extension substream
49
50 int xbr_offset;
///< Offset to XBR extension from start of substream
51 int xbr_size;
///< Size of XBR extension in extension substream
52
53 int xxch_offset;
///< Offset to XXCH extension from start of substream
54 int xxch_size;
///< Size of XXCH extension in extension substream
55
56 int x96_offset;
///< Offset to X96 extension from start of substream
57 int x96_size;
///< Size of X96 extension in extension substream
58
59 int lbr_offset;
///< Offset to LBR component from start of substream
60 int lbr_size;
///< Size of LBR component in extension substream
61
62 int xll_offset;
///< Offset to XLL data from start of substream
63 int xll_size;
///< Size of XLL data in extension substream
67
70
74
77 int exss_size;
///< Number of bytes of extension substream
78
80 int npresents;
///< Number of defined audio presentations
81 int nassets;
///< Number of audio assets in extension substream
82
85 int nmixoutchs[4];
///< Speaker layout mask for mixer output channels
86
89
91
92 #endif