This file is indexed.

/usr/include/bitstream/smpte/337.h is in libbitstream-dev 1.3-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
137
138
139
140
141
142
143
144
145
146
/*****************************************************************************
 * 337.h: SMPTE 337 Non-PCM data in AES3
 *****************************************************************************
 * Copyright (C) 2016 OpenHeadend
 *
 * Authors: Christophe Massiot <cmassiot@openheadend.tv>
 *
 * 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:
 *  - SMPTE 337
 *  - SMPTE 338
 */

#ifndef __BITSTREAM_SMPTE_337_H__
#define __BITSTREAM_SMPTE_337_H__

#include <stdint.h>   /* uint8_t, uint16_t, etc... */
#include <stdbool.h>  /* bool */

#ifdef __cplusplus
extern "C"
{
#endif

/*****************************************************************************
 * SMPTE 337 burst preamble (16-bit mode only)
 *****************************************************************************/
#define S337_PREAMBLE_SIZE          8
#define S337_PREAMBLE_A1            0xf8
#define S337_PREAMBLE_A2            0x72
#define S337_PREAMBLE_B1            0x4e
#define S337_PREAMBLE_B2            0x1f

#define S337_TYPE_NULL              0
#define S337_TYPE_A52               1
#define S337_TYPE_TIMESTAMP         2
#define S337_TYPE_PAUSE             3
#define S337_TYPE_A52E              16
#define S337_TYPE_VSYNC             26
#define S337_TYPE_DOLBY_E           28
#define S337_TYPE_CAPTION           29
#define S337_TYPE_USER              30

#define S337_MODE_16                0
#define S337_MODE_20                1
#define S337_MODE_24                2
#define S337_MODE_RESERVED          3

#define S337_TYPE_A52_REP_RATE_FLAG 0x08
#define S337_TYPE_A52_NOT_FULL_SVC  0x10

static inline void s337_set_data_type(uint8_t *p_s337, uint8_t i_data_type)
{
    p_s337[5] &= ~0x1f;
    p_s337[5] |= i_data_type & 0x1f;
}

static inline uint8_t s337_get_data_type(const uint8_t *p_s337)
{
    return p_s337[5] & 0x1f;
}

static inline void s337_set_data_mode(uint8_t *p_s337, uint8_t i_data_mode)
{
    p_s337[5] &= ~0x60;
    p_s337[5] |= (i_data_mode << 5) & 0x60;
}

static inline uint8_t s337_get_data_mode(const uint8_t *p_s337)
{
    return (p_s337[5] & 0x60) >> 5;
}

static inline void s337_set_error(uint8_t *p_s337)
{
    p_s337[5] |= 0x80;
}

static inline void s337_clear_error(uint8_t *p_s337)
{
    p_s337[5] &= ~0x80;
}

static inline bool s337_get_error(const uint8_t *p_s337)
{
    return p_s337[5] & 0x80;
}

static inline void s337_set_data_type_dep(uint8_t *p_s337, uint8_t i_data_type_dep)
{
    p_s337[4] &= ~0x1f;
    p_s337[4] |= i_data_type_dep & 0x1f;
}

static inline uint8_t s337_get_data_type_dep(const uint8_t *p_s337)
{
    return p_s337[4] & 0x1f;
}

static inline void s337_set_data_stream(uint8_t *p_s337, uint8_t i_data_stream)
{
    p_s337[4] &= ~0xe0;
    p_s337[4] |= (i_data_stream << 5) & 0xe0;
}

static inline uint8_t s337_get_data_stream(const uint8_t *p_s337)
{
    return (p_s337[4] & 0xe0) >> 5;
}

static inline void s337_set_length(uint8_t *p_s337, uint16_t i_length)
{
    p_s337[6] = i_length >> 8;
    p_s337[7] = i_length & 0xff;
}

static inline uint16_t s337_get_length(const uint8_t *p_s337)
{
    return (p_s337[6] << 8) | p_s337[7];
}

#ifdef __cplusplus
}
#endif

#endif