diff options
author | Hendrik Leppkes <h.leppkes@gmail.com> | 2015-01-25 13:01:08 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2015-01-27 12:37:34 +0100 |
commit | 06894f1a04dda384ab3632b2342f0f97ec9ebed9 (patch) | |
tree | 89cb4486b044489f78d59856daf04e175125d45c /libavcodec/hevc.h | |
parent | 2af82a1ad9f788ec3c1d22e15423996a4b161934 (diff) | |
download | ffmpeg-06894f1a04dda384ab3632b2342f0f97ec9ebed9.tar.gz |
hevc: store the short term rps flag and size in the context
For future use by hardware accelerators.
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/hevc.h')
-rw-r--r-- | libavcodec/hevc.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavcodec/hevc.h b/libavcodec/hevc.h index c0fad27c48..8555d474e3 100644 --- a/libavcodec/hevc.h +++ b/libavcodec/hevc.h @@ -575,6 +575,8 @@ typedef struct SliceHeader { uint8_t colour_plane_id; ///< RPS coded in the slice header itself is stored here + int short_term_ref_pic_set_sps_flag; + int short_term_ref_pic_set_size; ShortTermRPS slice_rps; const ShortTermRPS *short_term_rps; LongTermRPS long_term_rps; |