diff options
author | James Almer <jamrial@gmail.com> | 2020-11-12 16:59:37 -0300 |
---|---|---|
committer | James Almer <jamrial@gmail.com> | 2020-11-13 10:38:18 -0300 |
commit | f5517be32a5928b669df57fe91cfa2a2c03f0ba4 (patch) | |
tree | f9dda8411ff8afbe15c2a84387b14bbd7946c822 /libavcodec/av1dec.h | |
parent | 8f4aec719e7c00cd75074ef34d99d2f2f22e622a (diff) | |
download | ffmpeg-f5517be32a5928b669df57fe91cfa2a2c03f0ba4.tar.gz |
avcodec/av1dec: add a reference to the raw frame header to AV1Frames
Signed-off-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'libavcodec/av1dec.h')
-rw-r--r-- | libavcodec/av1dec.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libavcodec/av1dec.h b/libavcodec/av1dec.h index bed9376a36..533ca2b30f 100644 --- a/libavcodec/av1dec.h +++ b/libavcodec/av1dec.h @@ -36,6 +36,9 @@ typedef struct AV1Frame { AVBufferRef *hwaccel_priv_buf; void *hwaccel_picture_private; + AVBufferRef *header_ref; + AV1RawFrameHeader *raw_frame_header; + int temporal_id; int spatial_id; |