FFmpeg
tdrdi.h
Go to the documentation of this file.
1 /*
2  * This file is part of FFmpeg.
3  *
4  * FFmpeg is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Lesser General Public
6  * License as published by the Free Software Foundation; either
7  * version 2.1 of the License, or (at your option) any later version.
8  *
9  * FFmpeg is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12  * Lesser General Public License for more details.
13  *
14  * You should have received a copy of the GNU Lesser General Public
15  * License along with FFmpeg; if not, write to the Free Software
16  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
17  */
18 
19 /**
20  * @file
21  * @ingroup lavu_video_3d_reference_displays_info
22  * Spherical video
23  */
24 
25 #ifndef AVUTIL_TDRDI_H
26 #define AVUTIL_TDRDI_H
27 
28 #include <stddef.h>
29 #include <stdint.h>
30 
31 #include "libavutil/avassert.h"
32 
33 /**
34  * @defgroup lavu_video_3d_reference_displays_info 3D Reference Displays Information
35  * @ingroup lavu_video
36  *
37  * The 3D Reference Displays Information describes information about the reference display
38  * width(s) and reference viewing distance(s) as well as information about the corresponding
39  * reference stereo pair(s).
40  * @{
41  */
42 
43 #define AV_TDRDI_MAX_NUM_REF_DISPLAY 32
44 
45 /**
46  * This structure describes information about the reference display width(s) and reference
47  * viewing distance(s) as well as information about the corresponding reference stereo pair(s).
48  * See section G.14.3.2.3 of ITU-T H.265 for more information.
49  *
50  * @note The struct must be allocated with av_tdrdi_alloc() and
51  * its size is not a part of the public ABI.
52  */
53 typedef struct AV3DReferenceDisplaysInfo {
54  /**
55  * The exponent of the maximum allowable truncation error for
56  * {exponent,mantissa}_ref_display_width as given by 2<sup>(-prec_ref_display_width)</sup>.
57  */
59 
60  /**
61  * A flag to indicate the presence of reference viewing distance.
62  * If false, the values of prec_ref_viewing_dist, exponent_ref_viewing_distance,
63  * and mantissa_ref_viewing_distance are undefined.
64  */
66 
67  /**
68  * The exponent of the maximum allowable truncation error for
69  * {exponent,mantissa}_ref_viewing_distance as given by 2<sup>^(-prec_ref_viewing_dist)</sup>.
70  * The value of prec_ref_viewing_dist shall be in the range of 0 to 31, inclusive.
71  */
73 
74  /**
75  * The number of reference displays that are signalled in this struct.
76  * Allowed range is 1 to 32, inclusive.
77  */
79 
80  /**
81  * Offset in bytes from the beginning of this structure at which the array
82  * of reference displays starts.
83  */
85 
86  /**
87  * Size of each entry in bytes. May not match sizeof(AV3DReferenceDisplay).
88  */
89  size_t entry_size;
91 
92 /**
93  * Data structure for single deference display information.
94  * It is allocated as a part of AV3DReferenceDisplaysInfo and should be retrieved with
95  * av_tdrdi_get_display().
96  *
97  * sizeof(AV3DReferenceDisplay) is not a part of the ABI and new fields may be
98  * added to it.
99 */
100 typedef struct AV3DReferenceDisplay {
101  /**
102  * The ViewId of the left view of a stereo pair corresponding to the n-th reference display.
103  */
104  uint16_t left_view_id;
105 
106  /**
107  * The ViewId of the left view of a stereo pair corresponding to the n-th reference display.
108  */
109  uint16_t right_view_id;
110 
111  /**
112  * The exponent part of the reference display width of the n-th reference display.
113  */
115 
116  /**
117  * The mantissa part of the reference display width of the n-th reference display.
118  */
120 
121  /**
122  * Tthe exponent part of the reference viewing distance of the n-th reference display.
123  */
125 
126  /**
127  * The mantissa part of the reference viewing distance of the n-th reference display.
128  */
130 
131  /**
132  * An array of flags to indicates that the information about additional horizontal shift of
133  * the left and right views for the n-th reference display is present.
134  */
136 
137  /**
138  * The recommended additional horizontal shift for a stereo pair corresponding to the n-th
139  * reference baseline and the n-th reference display.
140  */
143 
146 {
147  av_assert0(idx < tdrdi->num_ref_displays);
148  return (AV3DReferenceDisplay *)((uint8_t *)tdrdi + tdrdi->entries_offset +
149  idx * tdrdi->entry_size);
150 }
151 
152 /**
153  * Allocate a AV3DReferenceDisplaysInfo structure and initialize its fields to default
154  * values.
155  *
156  * @return the newly allocated struct or NULL on failure
157  */
158 AV3DReferenceDisplaysInfo *av_tdrdi_alloc(unsigned int nb_displays, size_t *size);
159 
160 /**
161  * @}
162  */
163 
164 #endif /* AVUTIL_TDRDI_H */
AV3DReferenceDisplay::num_sample_shift
int16_t num_sample_shift
The recommended additional horizontal shift for a stereo pair corresponding to the n-th reference bas...
Definition: tdrdi.h:141
AV3DReferenceDisplaysInfo::prec_ref_viewing_dist
uint8_t prec_ref_viewing_dist
The exponent of the maximum allowable truncation error for {exponent,mantissa}_ref_viewing_distance a...
Definition: tdrdi.h:72
av_tdrdi_get_display
static av_always_inline AV3DReferenceDisplay * av_tdrdi_get_display(AV3DReferenceDisplaysInfo *tdrdi, unsigned int idx)
Definition: tdrdi.h:145
AV3DReferenceDisplay
Data structure for single deference display information.
Definition: tdrdi.h:100
AV3DReferenceDisplaysInfo::entries_offset
size_t entries_offset
Offset in bytes from the beginning of this structure at which the array of reference displays starts.
Definition: tdrdi.h:84
AV3DReferenceDisplaysInfo
This structure describes information about the reference display width(s) and reference viewing dista...
Definition: tdrdi.h:53
avassert.h
av_assert0
#define av_assert0(cond)
assert() equivalent, that is always enabled.
Definition: avassert.h:41
AV3DReferenceDisplaysInfo::ref_viewing_distance_flag
uint8_t ref_viewing_distance_flag
A flag to indicate the presence of reference viewing distance.
Definition: tdrdi.h:65
AV3DReferenceDisplay::exponent_ref_display_width
uint8_t exponent_ref_display_width
The exponent part of the reference display width of the n-th reference display.
Definition: tdrdi.h:114
AV3DReferenceDisplaysInfo::prec_ref_display_width
uint8_t prec_ref_display_width
The exponent of the maximum allowable truncation error for {exponent,mantissa}_ref_display_width as g...
Definition: tdrdi.h:58
size
int size
Definition: twinvq_data.h:10344
AV3DReferenceDisplay::right_view_id
uint16_t right_view_id
The ViewId of the left view of a stereo pair corresponding to the n-th reference display.
Definition: tdrdi.h:109
av_always_inline
#define av_always_inline
Definition: attributes.h:49
AV3DReferenceDisplay::mantissa_ref_display_width
uint8_t mantissa_ref_display_width
The mantissa part of the reference display width of the n-th reference display.
Definition: tdrdi.h:119
AV3DReferenceDisplay::mantissa_ref_viewing_distance
uint8_t mantissa_ref_viewing_distance
The mantissa part of the reference viewing distance of the n-th reference display.
Definition: tdrdi.h:129
AV3DReferenceDisplay::additional_shift_present_flag
uint8_t additional_shift_present_flag
An array of flags to indicates that the information about additional horizontal shift of the left and...
Definition: tdrdi.h:135
av_tdrdi_alloc
AV3DReferenceDisplaysInfo * av_tdrdi_alloc(unsigned int nb_displays, size_t *size)
Allocate a AV3DReferenceDisplaysInfo structure and initialize its fields to default values.
Definition: tdrdi.c:25
AV3DReferenceDisplaysInfo::num_ref_displays
uint8_t num_ref_displays
The number of reference displays that are signalled in this struct.
Definition: tdrdi.h:78
AV3DReferenceDisplay::exponent_ref_viewing_distance
uint8_t exponent_ref_viewing_distance
Tthe exponent part of the reference viewing distance of the n-th reference display.
Definition: tdrdi.h:124
AV3DReferenceDisplaysInfo::entry_size
size_t entry_size
Size of each entry in bytes.
Definition: tdrdi.h:89
AV3DReferenceDisplay::left_view_id
uint16_t left_view_id
The ViewId of the left view of a stereo pair corresponding to the n-th reference display.
Definition: tdrdi.h:104