FFmpeg  4.4.6
av1dec.h
Go to the documentation of this file.
1 /*
2  * AV1 video decoder
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_AV1DEC_H
22 #define AVCODEC_AV1DEC_H
23 
24 #include <stdint.h>
25 
26 #include "libavutil/buffer.h"
27 #include "libavutil/pixfmt.h"
28 #include "avcodec.h"
29 #include "cbs.h"
30 #include "cbs_av1.h"
31 #include "thread.h"
32 
33 typedef struct AV1Frame {
35 
38 
41 
44 
48 
50 
52 
54 } AV1Frame;
55 
56 typedef struct TileGroupInfo {
57  uint32_t tile_offset;
58  uint32_t tile_size;
59  uint16_t tile_row;
60  uint16_t tile_column;
62 
63 typedef struct AV1DecContext {
64  const AVClass *class;
66 
70 
76  uint16_t tile_num;
77  uint16_t tg_start;
78  uint16_t tg_end;
79 
81 
84 
85  // AVOptions
88 
89 #endif /* AVCODEC_AV1DEC_H */
uint8_t
int32_t
Libavcodec external API header.
refcounted data buffer API
@ AV1_NUM_REF_FRAMES
Definition: av1.h:83
pixel format definitions
AVPixelFormat
Pixel format.
Definition: pixfmt.h:64
CodedBitstreamFragment current_obu
Definition: av1dec.h:69
uint16_t tile_num
Definition: av1dec.h:76
TileGroupInfo * tile_group_info
Definition: av1dec.h:75
int operating_point
Definition: av1dec.h:86
AV1RawFrameHeader * raw_frame_header
Definition: av1dec.h:74
uint16_t tg_end
Definition: av1dec.h:78
AVBufferRef * seq_ref
Definition: av1dec.h:71
enum AVPixelFormat pix_fmt
Definition: av1dec.h:67
AVCodecContext * avctx
Definition: av1dec.h:65
AV1RawSequenceHeader * raw_seq
Definition: av1dec.h:72
CodedBitstreamContext * cbc
Definition: av1dec.h:68
AV1Frame ref[AV1_NUM_REF_FRAMES]
Definition: av1dec.h:82
AV1Frame cur_frame
Definition: av1dec.h:83
uint16_t tg_start
Definition: av1dec.h:77
int operating_point_idc
Definition: av1dec.h:80
AVBufferRef * header_ref
Definition: av1dec.h:73
uint8_t gm_invalid[AV1_NUM_REF_FRAMES]
Definition: av1dec.h:45
AV1RawFrameHeader * raw_frame_header
Definition: av1dec.h:40
uint8_t coded_lossless
Definition: av1dec.h:53
int spatial_id
Definition: av1dec.h:43
AVBufferRef * hwaccel_priv_buf
Definition: av1dec.h:36
AVBufferRef * header_ref
Definition: av1dec.h:39
uint8_t skip_mode_frame_idx[2]
Definition: av1dec.h:49
int32_t gm_params[AV1_NUM_REF_FRAMES][6]
Definition: av1dec.h:47
void * hwaccel_picture_private
Definition: av1dec.h:37
AV1RawFilmGrainParams film_grain
Definition: av1dec.h:51
ThreadFrame tf
Definition: av1dec.h:34
int temporal_id
Definition: av1dec.h:42
uint8_t gm_type[AV1_NUM_REF_FRAMES]
Definition: av1dec.h:46
A reference to a data buffer.
Definition: buffer.h:84
Describe the class of an AVClass context structure.
Definition: log.h:67
main external API structure.
Definition: avcodec.h:536
Context structure for coded bitstream operations.
Definition: cbs.h:170
Coded bitstream fragment structure, combining one or more units.
Definition: cbs.h:118
uint16_t tile_column
Definition: av1dec.h:60
uint32_t tile_offset
Definition: av1dec.h:57
uint32_t tile_size
Definition: av1dec.h:58
uint16_t tile_row
Definition: av1dec.h:59