FFmpeg
hevc_sei.h
Go to the documentation of this file.
1 /*
2  * HEVC Supplementary Enhancement Information messages
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_HEVC_SEI_H
22 #define AVCODEC_HEVC_SEI_H
23 
24 #include <stdint.h>
25 
26 #include "libavutil/buffer.h"
27 
28 #include "get_bits.h"
29 #include "hevc.h"
30 #include "h2645_sei.h"
31 #include "sei.h"
32 
33 
34 typedef enum {
38 
39 typedef struct HEVCSEIPictureHash {
40  uint8_t md5[3][16];
41  uint8_t is_md5;
43 
44 typedef struct HEVCSEIFramePacking {
45  int present;
51 
52 typedef struct HEVCSEIPictureTiming {
55 
57  int present;
60 
61 typedef struct HEVCSEITimeCode {
62  int present;
63  uint8_t num_clock_ts;
66  uint8_t counting_type[3];
67  uint8_t full_timestamp_flag[3];
68  uint8_t discontinuity_flag[3];
69  uint8_t cnt_dropped_flag[3];
70  uint16_t n_frames[3];
71  uint8_t seconds_value[3];
72  uint8_t minutes_value[3];
73  uint8_t hours_value[3];
74  uint8_t seconds_flag[3];
75  uint8_t minutes_flag[3];
76  uint8_t hours_flag[3];
77  uint8_t time_offset_length[3];
80 
81 typedef struct HEVCSEI {
87 } HEVCSEI;
88 
89 struct HEVCParamSets;
90 
91 int ff_hevc_decode_nal_sei(GetBitContext *gb, void *logctx, HEVCSEI *s,
92  const struct HEVCParamSets *ps, enum HEVCNALUnitType type);
93 
94 static inline int ff_hevc_sei_ctx_replace(HEVCSEI *dst, const HEVCSEI *src)
95 {
96  return ff_h2645_sei_ctx_replace(&dst->common, &src->common);
97 }
98 
99 /**
100  * Reset SEI values that are stored on the Context.
101  * e.g. Caption data that was extracted during NAL
102  * parsing.
103  *
104  * @param sei HEVCSEI.
105  */
106 static inline void ff_hevc_reset_sei(HEVCSEI *sei)
107 {
108  ff_h2645_sei_reset(&sei->common);
109 }
110 
111 #endif /* AVCODEC_HEVC_SEI_H */
HEVCSEI::active_seq_parameter_set_id
int active_seq_parameter_set_id
Definition: hevc_sei.h:85
HEVCSEIAlternativeTransfer
Definition: hevc_sei.h:56
HEVCSEI::picture_timing
HEVCSEIPictureTiming picture_timing
Definition: hevc_sei.h:84
HEVCSEITimeCode::cnt_dropped_flag
uint8_t cnt_dropped_flag[3]
Definition: hevc_sei.h:69
HEVCSEIPictureHash::is_md5
uint8_t is_md5
Definition: hevc_sei.h:41
HEVCSEITimeCode::time_offset_length
uint8_t time_offset_length[3]
Definition: hevc_sei.h:77
HEVCSEITimeCode::present
int present
Definition: hevc_sei.h:62
HEVCSEITimeCode::time_offset_value
int32_t time_offset_value[3]
Definition: hevc_sei.h:78
HEVCSEIFramePacking::current_frame_is_frame0_flag
int current_frame_is_frame0_flag
Definition: hevc_sei.h:49
HEVCSEIAlternativeTransfer::present
int present
Definition: hevc_sei.h:57
HEVCSEITimeCode
Definition: hevc_sei.h:61
GetBitContext
Definition: get_bits.h:108
ff_hevc_decode_nal_sei
int ff_hevc_decode_nal_sei(GetBitContext *gb, void *logctx, HEVCSEI *s, const struct HEVCParamSets *ps, enum HEVCNALUnitType type)
type
it s the only field you need to keep assuming you have a context There is some magic you don t need to care about around this just let it vf type
Definition: writing_filters.txt:86
HEVCSEITimeCode::minutes_value
uint8_t minutes_value[3]
Definition: hevc_sei.h:72
s
#define s(width, name)
Definition: cbs_vp9.c:198
HEVCSEI::common
H2645SEI common
Definition: hevc_sei.h:82
HEVCSEI
Definition: hevc_sei.h:81
HEVCSEIPictureHash
Definition: hevc_sei.h:39
get_bits.h
HEVCSEIFramePacking
Definition: hevc_sei.h:44
HEVC_SEI_PIC_STRUCT_FRAME_TRIPLING
@ HEVC_SEI_PIC_STRUCT_FRAME_TRIPLING
Definition: hevc_sei.h:36
HEVCSEITimeCode::num_clock_ts
uint8_t num_clock_ts
Definition: hevc_sei.h:63
HEVCSEITimeCode::seconds_value
uint8_t seconds_value[3]
Definition: hevc_sei.h:71
sei.h
HEVC_SEI_PicStructType
HEVC_SEI_PicStructType
Definition: hevc_sei.h:34
H2645SEI
Definition: h2645_sei.h:124
HEVCSEIPictureHash::md5
uint8_t md5[3][16]
Definition: hevc_sei.h:40
sei
static int FUNC() sei(CodedBitstreamContext *ctx, RWContext *rw, H264RawSEI *current)
Definition: cbs_h264_syntax_template.c:824
h2645_sei.h
HEVCSEITimeCode::hours_flag
uint8_t hours_flag[3]
Definition: hevc_sei.h:76
HEVC_SEI_PIC_STRUCT_FRAME_DOUBLING
@ HEVC_SEI_PIC_STRUCT_FRAME_DOUBLING
Definition: hevc_sei.h:35
buffer.h
ff_h2645_sei_reset
void ff_h2645_sei_reset(H2645SEI *s)
Definition: h2645_sei.c:866
ff_hevc_sei_ctx_replace
static int ff_hevc_sei_ctx_replace(HEVCSEI *dst, const HEVCSEI *src)
Definition: hevc_sei.h:94
HEVCSEIFramePacking::quincunx_subsampling
int quincunx_subsampling
Definition: hevc_sei.h:48
HEVCSEITimeCode::seconds_flag
uint8_t seconds_flag[3]
Definition: hevc_sei.h:74
HEVCSEITimeCode::discontinuity_flag
uint8_t discontinuity_flag[3]
Definition: hevc_sei.h:68
HEVCSEITimeCode::clock_timestamp_flag
uint8_t clock_timestamp_flag[3]
Definition: hevc_sei.h:64
HEVCSEITimeCode::counting_type
uint8_t counting_type[3]
Definition: hevc_sei.h:66
HEVCNALUnitType
HEVCNALUnitType
Table 7-1 – NAL unit type codes and NAL unit type classes in T-REC-H.265-201802.
Definition: hevc.h:28
hevc.h
HEVCSEIPictureTiming::picture_struct
int picture_struct
Definition: hevc_sei.h:53
HEVCSEI::picture_hash
HEVCSEIPictureHash picture_hash
Definition: hevc_sei.h:83
HEVCSEIFramePacking::present
int present
Definition: hevc_sei.h:45
HEVCSEITimeCode::units_field_based_flag
uint8_t units_field_based_flag[3]
Definition: hevc_sei.h:65
HEVCSEITimeCode::minutes_flag
uint8_t minutes_flag[3]
Definition: hevc_sei.h:75
HEVCSEI::timecode
HEVCSEITimeCode timecode
Definition: hevc_sei.h:86
HEVCSEITimeCode::n_frames
uint16_t n_frames[3]
Definition: hevc_sei.h:70
HEVCSEITimeCode::full_timestamp_flag
uint8_t full_timestamp_flag[3]
Definition: hevc_sei.h:67
ff_h2645_sei_ctx_replace
int ff_h2645_sei_ctx_replace(H2645SEI *dst, const H2645SEI *src)
Definition: h2645_sei.c:493
HEVCSEITimeCode::hours_value
uint8_t hours_value[3]
Definition: hevc_sei.h:73
ff_hevc_reset_sei
static void ff_hevc_reset_sei(HEVCSEI *sei)
Reset SEI values that are stored on the Context.
Definition: hevc_sei.h:106
src
INIT_CLIP pixel * src
Definition: h264pred_template.c:418
int32_t
int32_t
Definition: audioconvert.c:56
HEVCSEIAlternativeTransfer::preferred_transfer_characteristics
int preferred_transfer_characteristics
Definition: hevc_sei.h:58
HEVCSEIFramePacking::arrangement_type
int arrangement_type
Definition: hevc_sei.h:46
HEVCSEIPictureTiming
Definition: hevc_sei.h:52
HEVCSEIFramePacking::content_interpretation_type
int content_interpretation_type
Definition: hevc_sei.h:47
HEVCParamSets
Definition: hevc_ps.h:440