/usr/include/bitstream/mpeg/aac.h is in libbitstream-dev 1.0-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 | /*****************************************************************************
* aac.h: ISO/IEC 14496-3 Advanced Audio Coding
*****************************************************************************
* Copyright (C) 2010 VideoLAN
*
* Authors: Christophe Massiot <massiot@via.ecp.fr>
*
* Permission is hereby granted, free of charge, to any person obtaining
* a copy of this software and associated documentation files (the
* "Software"), to deal in the Software without restriction, including
* without limitation the rights to use, copy, modify, merge, publish,
* distribute, sublicense, and/or sell copies of the Software, and to
* permit persons to whom the Software is furnished to do so, subject
* to the following conditions:
*
* The above copyright notice and this permission notice shall be
* included in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*****************************************************************************/
/*
* Normative references:
* - ISO/IEC 14496-3 Subpart 4:1998(E)
* (Advanced Audio Coding, Time/Frequency Coding)
*/
#ifndef __BITSTREAM_MPEG_AAC_H__
#define __BITSTREAM_MPEG_AAC_H__
#include <stdint.h> /* uint8_t, uint16_t, etc... */
#include <stdbool.h> /* bool */
#ifdef __cplusplus
extern "C"
{
#endif
/*****************************************************************************
* ADTS header
*****************************************************************************/
#define ADTS_HEADER_SIZE 7
/* fixed header */
static inline void adts_set_sync(uint8_t *p_adts)
{
p_adts[0] = 0xff;
p_adts[1] = 0xf9; /* protection absent */
p_adts[2] = 0x0;
p_adts[3] = 0x0;
p_adts[4] = 0x0;
p_adts[5] = 0x0;
p_adts[6] = 0x0;
}
static inline void adts_set_profile(uint8_t *p_adts, uint8_t i_profile)
{
p_adts[2] &= ~0xc0;
p_adts[2] |= i_profile << 6;
}
static inline void adts_set_index(uint8_t *p_adts, uint8_t i_index)
{
p_adts[2] &= ~0x3c;
p_adts[2] |= (i_index & 0xf) << 2;
}
static inline void adts_set_channels(uint8_t *p_adts, uint8_t i_channels)
{
p_adts[2] &= ~0x03; /* also clear out the private bit */
p_adts[2] |= (i_channels & 0x7) >> 2;
p_adts[3] &= ~0xc0;
p_adts[3] |= (i_channels & 0x7) << 6;
}
static inline void adts_set_copy(uint8_t *p_adts, bool b_copy)
{
if (!b_copy)
p_adts[3] &= ~0x20;
else
p_adts[3] |= 0x20;
}
static inline void adts_set_home(uint8_t *p_adts, bool b_home)
{
if (!b_home)
p_adts[3] &= ~0x10;
else
p_adts[3] |= 0x10;
}
/* variable header */
static inline void adts_set_cp_id(uint8_t *p_adts, bool b_bit, bool b_start)
{
p_adts[3] &= ~0x0c;
if (b_bit)
p_adts[3] |= 0x08;
if (b_start)
p_adts[3] |= 0x04;
}
static inline void adts_set_length(uint8_t *p_adts, uint16_t i_length)
{
p_adts[3] &= ~0x03;
p_adts[3] |= (i_length >> 11) & 0x03;
p_adts[4] = i_length >> 3;
p_adts[5] &= ~0xe0;
p_adts[5] |= (i_length << 5) & 0xe0;
}
static inline void adts_set_fullness(uint8_t *p_adts, uint16_t i_fullness)
{
p_adts[5] &= ~0x1f;
p_adts[5] |= (i_fullness >> 6) & 0x1f;
p_adts[6] &= ~0xfc;
p_adts[6] |= (i_fullness << 2) & 0xfc;
}
/* i_blocks == number of blocks - 1 */
static inline void adts_set_num_blocks(uint8_t *p_adts, uint8_t i_blocks)
{
p_adts[6] &= ~0x03;
p_adts[6] |= i_blocks & 0x03;
}
#ifdef __cplusplus
}
#endif
#endif
|