FFmpeg
Loading...
Searching...
No Matches
h2645_parse.h
Go to the documentation of this file.
1/*
2 * H.264/HEVC common parsing code
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_H2645_PARSE_H
22#define AVCODEC_H2645_PARSE_H
23
24#include <stdint.h>
25
26#include "libavutil/buffer.h"
27#include "libavutil/error.h"
28#include "libavutil/log.h"
29#include "codec_id.h"
30#include "get_bits.h"
31
32#define MAX_MBPAIR_SIZE (256*1024) // a tighter bound could be calculated if someone cares about a few bytes
33
34typedef struct H2645NAL {
35 const uint8_t *data;
36 int size;
37
38 /**
39 * Size, in bits, of just the data, excluding the stop bit and any trailing
40 * padding. I.e. what HEVC calls SODB.
41 */
43
45 const uint8_t *raw_data;
46
48
49 /**
50 * NAL unit type
51 */
52 int type;
53
54 /**
55 * H.264 only, nal_ref_idc
56 */
58
59 /**
60 * HEVC only, nuh_temporal_id_plus_1 - 1
61 */
63
64 /*
65 * HEVC only, identifier of layer to which nal unit belongs
66 */
68
72} H2645NAL;
73
80
81/* an input packet split into unescaped NAL units */
89
90/**
91 * Extract the raw (unescaped) bitstream.
92 */
93int ff_h2645_extract_rbsp(const uint8_t *src, int length, H2645RBSP *rbsp,
94 H2645NAL *nal, int small_padding);
95
96enum {
100};
101
102/**
103 * Split an input packet into NAL units.
104 *
105 * If data == raw_data holds true for a NAL unit of the returned pkt, then
106 * said NAL unit does not contain any emulation_prevention_three_byte and
107 * the data is contained in the input buffer pointed to by buf.
108 * Otherwise, the unescaped data is part of the rbsp_buffer described by the
109 * packet's H2645RBSP.
110 *
111 * If the packet's rbsp_buffer_ref is not NULL, the underlying AVBuffer must
112 * own rbsp_buffer. If not and rbsp_buffer is not NULL, H2645_FLAG_USE_REF
113 * must not be set in flags.
114 * If H2645_FLAG_USE_REF is set in flags, rbsp_buffer will be reference-counted
115 * and owned by the underlying AVBuffer of rbsp_buffer_ref.
116 */
117int ff_h2645_packet_split(H2645Packet *pkt, const uint8_t *buf, int length,
118 void *logctx, int nal_length_size,
119 enum AVCodecID codec_id, int flags);
120
121/**
122 * Free all the allocated memory in the packet.
123 */
125
127 unsigned int type,
128 int nal_unit_index);
129
130static inline int get_nalsize(int nal_length_size, const uint8_t *buf,
131 int buf_size, int *buf_index, void *logctx)
132{
133 int i, nalsize = 0;
134
135 if (*buf_index >= buf_size - nal_length_size) {
136 // the end of the buffer is reached, refill it
137 return AVERROR_INVALIDDATA;
138 }
139
140 for (i = 0; i < nal_length_size; i++)
141 nalsize = ((unsigned)nalsize << 8) | buf[(*buf_index)++];
142 if (nalsize <= 0 || nalsize > buf_size - *buf_index) {
143 av_log(logctx, AV_LOG_ERROR,
144 "Invalid NAL unit size (%d > %d).\n", nalsize, buf_size - *buf_index);
145 return AVERROR_INVALIDDATA;
146 }
147 return nalsize;
148}
149
150#endif /* AVCODEC_H2645_PARSE_H */
refcounted data buffer API
#define flags(name, subs,...)
Definition cbs_h264.c:74
#define i(width, name, range_min, range_max)
Definition cbs_h264.c:63
static int FUNC nal(CodedBitstreamContext *ctx, RWContext *rw, LCEVCRawNAL *current, int nal_unit_type)
static AVPacket * pkt
error code definitions
bitstream reader API header.
AVCodecID
Identify the syntax and semantics of the bitstream.
Definition codec_id.h:47
#define AVERROR_INVALIDDATA
Invalid data found when processing input.
Definition error.h:61
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
Definition log.h:210
@ H2645_FLAG_USE_REF
Definition h2645_parse.h:99
@ H2645_FLAG_SMALL_PADDING
Definition h2645_parse.h:98
@ H2645_FLAG_IS_NALFF
Definition h2645_parse.h:97
void ff_h2645_packet_uninit(H2645Packet *pkt)
Free all the allocated memory in the packet.
int ff_h2645_packet_split(H2645Packet *pkt, const uint8_t *buf, int length, void *logctx, int nal_length_size, enum AVCodecID codec_id, int flags)
Split an input packet into NAL units.
int ff_h2645_unit_requires_zero_byte(enum AVCodecID codec_id, unsigned int type, int nal_unit_index)
int ff_h2645_extract_rbsp(const uint8_t *src, int length, H2645RBSP *rbsp, H2645NAL *nal, int small_padding)
Extract the raw (unescaped) bitstream.
Definition h2645_parse.c:37
static int get_nalsize(int nal_length_size, const uint8_t *buf, int buf_size, int *buf_index, void *logctx)
cl_device_type type
A reference to a data buffer.
Definition buffer.h:82
const uint8_t * data
Definition h2645_parse.h:35
int ref_idc
H.264 only, nal_ref_idc.
Definition h2645_parse.h:57
int * skipped_bytes_pos
Definition h2645_parse.h:71
int raw_size
Definition h2645_parse.h:44
int nuh_layer_id
Definition h2645_parse.h:67
int skipped_bytes_pos_size
Definition h2645_parse.h:70
int type
NAL unit type.
Definition h2645_parse.h:52
int size_bits
Size, in bits, of just the data, excluding the stop bit and any trailing padding.
Definition h2645_parse.h:42
int skipped_bytes
Definition h2645_parse.h:69
GetBitContext gb
Definition h2645_parse.h:47
int temporal_id
HEVC only, nuh_temporal_id_plus_1 - 1.
Definition h2645_parse.h:62
const uint8_t * raw_data
Definition h2645_parse.h:45
H2645NAL * nals
Definition h2645_parse.h:83
H2645RBSP rbsp
Definition h2645_parse.h:84
unsigned nal_buffer_size
Definition h2645_parse.h:87
int nals_allocated
Definition h2645_parse.h:86
AVBufferRef * rbsp_buffer_ref
Definition h2645_parse.h:76
int rbsp_buffer_alloc_size
Definition h2645_parse.h:77
int rbsp_buffer_size
Definition h2645_parse.h:78
uint8_t * rbsp_buffer
Definition h2645_parse.h:75
#define av_log(a,...)
#define src
Definition vp8dsp.c:248
enum AVCodecID codec_id