diff options
author | Anton Khirnov <anton@khirnov.net> | 2020-03-10 18:26:00 +0100 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2020-05-25 11:59:42 +0200 |
commit | 064b875e894f45ea9e0426696559645d87af0bc3 (patch) | |
tree | 05d5fbe353f5f60f46f6d4eefb242dacb5acbc17 /libavcodec/h264dec.h | |
parent | 37140ebd87f549eae86a5b548d717a1e97203dd6 (diff) | |
download | ffmpeg-064b875e894f45ea9e0426696559645d87af0bc3.tar.gz |
h264dec: support exporting QP tables through the AVVideoEncParams API
Diffstat (limited to 'libavcodec/h264dec.h')
-rw-r--r-- | libavcodec/h264dec.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/libavcodec/h264dec.h b/libavcodec/h264dec.h index 530e2d4071..29c4d4e42c 100644 --- a/libavcodec/h264dec.h +++ b/libavcodec/h264dec.h @@ -161,6 +161,12 @@ typedef struct H264Picture { int recovered; ///< picture at IDR or recovery point + recovery count int invalid_gap; int sei_recovery_frame_cnt; + + AVBufferRef *pps_buf; + const PPS *pps; + + int mb_width, mb_height; + int mb_stride; } H264Picture; typedef struct H264Ref { |