FFmpeg
Loading...
Searching...
No Matches
evc_parse.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 * EVC decoder/parser shared code
22 */
23
24#ifndef AVCODEC_EVC_PARSE_H
25#define AVCODEC_EVC_PARSE_H
26
27#include <stdint.h>
28
30#include "libavutil/log.h"
31#include "evc.h"
32#include "evc_ps.h"
33
34// The structure reflects Slice Header RBSP(raw byte sequence payload) layout
35// @see ISO_IEC_23094-1 section 7.3.2.6
36//
37// The following descriptors specify the parsing process of each element
38// u(n) - unsigned integer using n bits
39// ue(v) - unsigned integer 0-th order Exp_Golomb-coded syntax element with the left bit first
40// u(n) - unsigned integer using n bits.
41// When n is "v" in the syntax table, the number of bits varies in a manner dependent on the value of other syntax elements.
42typedef struct EVCParserSliceHeader {
45 uint8_t first_tile_id; // u(v)
46 uint8_t arbitrary_slice_flag; // u(1)
47 uint8_t last_tile_id; // u(v)
50
51 uint8_t slice_type; // ue(v)
53 uint8_t mmvd_group_enable_flag; // u(1)
54 uint8_t slice_alf_enabled_flag; // u(1)
55
56 uint8_t slice_alf_luma_aps_id; // u(5)
57 uint8_t slice_alf_map_flag; // u(1)
58 uint8_t slice_alf_chroma_idc; // u(2)
59 uint8_t slice_alf_chroma_aps_id; // u(5)
61 uint8_t slice_alf_chroma2_aps_id; // u(5)
63 uint16_t slice_pic_order_cnt_lsb; // u(v)
64
65 // @note
66 // Currently the structure does not reflect the entire Slice Header RBSP layout.
67 // It contains only the fields that are necessary to read from the NAL unit all the values
68 // necessary for the correct initialization of the AVCodecContext structure.
69
70 // @note
71 // If necessary, add the missing fields to the structure to reflect
72 // the contents of the entire NAL unit of the SPS type
73
75
76// picture order count of the current picture
77typedef struct EVCParserPoc {
78 int PicOrderCntVal; // current picture order count value
79 int prevPicOrderCntVal; // the picture order count of the previous Tid0 picture
80 int DocOffset; // the decoding order count of the previous picture
82
83static inline uint32_t evc_read_nal_unit_length(const uint8_t *bits, int bits_size, void *logctx)
84{
85 uint32_t nalu_len = 0;
86
88 av_log(logctx, AV_LOG_ERROR, "Can't read NAL unit length\n");
89 return 0;
90 }
91
92 nalu_len = AV_RB32(bits);
93
94 return nalu_len;
95}
96
98 const EVCParamSets *ps, enum EVCNALUnitType nalu_type);
99
100// POC (picture order count of the current picture) derivation
101// @see ISO/IEC 23094-1:2020(E) 8.3.1 Decoding process for picture order count
103 EVCParserPoc *poc, enum EVCNALUnitType nalu_type, int tid);
104
105#endif /* AVCODEC_EVC_PARSE_H */
#define bits_size
Definition bitstream.h:114
int ff_evc_parse_slice_header(GetBitContext *gb, EVCParserSliceHeader *sh, const EVCParamSets *ps, enum EVCNALUnitType nalu_type)
Definition evc_parse.c:24
static uint32_t evc_read_nal_unit_length(const uint8_t *bits, int bits_size, void *logctx)
Definition evc_parse.h:83
int ff_evc_derive_poc(const EVCParamSets *ps, const EVCParserSliceHeader *sh, EVCParserPoc *poc, enum EVCNALUnitType nalu_type, int tid)
Definition evc_parse.c:140
EVC decoder/parser shared code.
static const uint8_t bits[8]
Definition fastaudio.c:100
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
Definition log.h:210
#define AV_RB32(p)
EVCNALUnitType
Definition evc.h:33
#define EVC_NALU_LENGTH_PREFIX_SIZE
Definition evc.h:26
@ EVC_MAX_TILE_ROWS
Definition evc.h:138
@ EVC_MAX_TILE_COLUMNS
Definition evc.h:140
int PicOrderCntVal
Definition evc_parse.h:78
int prevPicOrderCntVal
Definition evc_parse.h:79
uint8_t slice_alf_luma_aps_id
Definition evc_parse.h:56
uint8_t slice_alf_map_flag
Definition evc_parse.h:57
uint8_t slice_pic_parameter_set_id
Definition evc_parse.h:43
uint8_t slice_alf_enabled_flag
Definition evc_parse.h:54
uint8_t arbitrary_slice_flag
Definition evc_parse.h:46
uint16_t delta_tile_id_minus1[EVC_MAX_TILE_ROWS *EVC_MAX_TILE_COLUMNS]
Definition evc_parse.h:49
uint8_t slice_alf_chroma2_aps_id
Definition evc_parse.h:61
uint8_t slice_alf_chroma_aps_id
Definition evc_parse.h:59
uint8_t single_tile_in_slice_flag
Definition evc_parse.h:44
uint8_t slice_alf_chroma_map_flag
Definition evc_parse.h:60
uint8_t no_output_of_prior_pics_flag
Definition evc_parse.h:52
uint8_t slice_alf_chroma_idc
Definition evc_parse.h:58
uint8_t mmvd_group_enable_flag
Definition evc_parse.h:53
uint16_t slice_pic_order_cnt_lsb
Definition evc_parse.h:63
uint8_t slice_alf_chroma2_map_flag
Definition evc_parse.h:62
uint32_t num_remaining_tiles_in_slice_minus1
Definition evc_parse.h:48
#define av_log(a,...)