diff options
author | Yusuke Nakamura <muken.the.vfrmaniac@gmail.com> | 2013-10-27 11:07:43 +0100 |
---|---|---|
committer | Mickaƫl Raulet <mraulet@insa-rennes.fr> | 2013-10-27 11:07:43 +0100 |
commit | afa93d198aaf2cc661c4df6d4095cd030265d30a (patch) | |
tree | 4352ab42b169d3ca4f8d54eb12dda9eec1952a76 /libavcodec/hevc.h | |
parent | f7f88018393b96ae410041e9a0fc51f4c082002e (diff) | |
download | ffmpeg-afa93d198aaf2cc661c4df6d4095cd030265d30a.tar.gz |
hevc_parser: Set pict_type, key_frame and output_picture_number.
Conflicts:
libavcodec/hevc.c
Diffstat (limited to 'libavcodec/hevc.h')
-rw-r--r-- | libavcodec/hevc.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libavcodec/hevc.h b/libavcodec/hevc.h index 01db69b74b..0975131b49 100644 --- a/libavcodec/hevc.h +++ b/libavcodec/hevc.h @@ -872,6 +872,9 @@ int ff_hevc_decode_nal_sps(HEVCContext *s); int ff_hevc_decode_nal_pps(HEVCContext *s); int ff_hevc_decode_nal_sei(HEVCContext *s); +int ff_hevc_extract_rbsp(HEVCContext *s, const uint8_t *src, int length, + HEVCNAL *nal); + /** * Mark all frames in DPB as unused for reference. */ |