]> git.sesse.net Git - ffmpeg/blob - libavcodec/h2645_parse.h
Merge commit '5b35b290dd76db64f079b3940f6148c8f273fc17'
[ffmpeg] / libavcodec / h2645_parse.h
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 "avcodec.h"
27 #include "get_bits.h"
28
29 typedef struct H2645NAL {
30     uint8_t *rbsp_buffer;
31     int rbsp_buffer_size;
32
33     int size;
34     const uint8_t *data;
35
36     /**
37      * Size, in bits, of just the data, excluding the stop bit and any trailing
38      * padding. I.e. what HEVC calls SODB.
39      */
40     int size_bits;
41
42     int raw_size;
43     const uint8_t *raw_data;
44
45     GetBitContext gb;
46
47     /**
48      * NAL unit type
49      */
50     int type;
51
52     /**
53      * HEVC only, nuh_temporal_id_plus_1 - 1
54      */
55     int temporal_id;
56
57     int skipped_bytes;
58     int skipped_bytes_pos_size;
59     int *skipped_bytes_pos;
60     /**
61      * H264 only, nal_ref_idc
62      */
63     int ref_idc;
64 } H2645NAL;
65
66 /* an input packet split into unescaped NAL units */
67 typedef struct H2645Packet {
68     H2645NAL *nals;
69     int nb_nals;
70     int nals_allocated;
71 } H2645Packet;
72
73 /**
74  * Extract the raw (unescaped) bitstream.
75  */
76 int ff_h2645_extract_rbsp(const uint8_t *src, int length,
77                           H2645NAL *nal);
78
79 /**
80  * Split an input packet into NAL units.
81  */
82 int ff_h2645_packet_split(H2645Packet *pkt, const uint8_t *buf, int length,
83                           void *logctx, int is_nalff, int nal_length_size,
84                           enum AVCodecID codec_id);
85
86 /**
87  * Free all the allocated memory in the packet.
88  */
89 void ff_h2645_packet_uninit(H2645Packet *pkt);
90
91 #endif /* AVCODEC_H2645_PARSE_H */