diff options
author | Mark Thompson <sw@jkqxz.net> | 2018-02-21 22:22:54 +0000 |
---|---|---|
committer | Mark Thompson <sw@jkqxz.net> | 2018-02-21 22:22:54 +0000 |
commit | 0cc8e34a94c84132cf5b0f6472c5f61c8a66cee1 (patch) | |
tree | 36c8a457e098ff96367b96c67ea2ce036fc31f30 /libavcodec/cbs_h265.h | |
parent | b656fa710a34ec7c3b192c38344a2c470ff2eaf5 (diff) | |
parent | ce5870a3a8f2b10668ee4f04c2ae0287f66f31b2 (diff) | |
download | ffmpeg-0cc8e34a94c84132cf5b0f6472c5f61c8a66cee1.tar.gz |
Merge commit 'ce5870a3a8f2b10668ee4f04c2ae0287f66f31b2'
* commit 'ce5870a3a8f2b10668ee4f04c2ae0287f66f31b2':
cbs: Refcount all the things!
Some changes for bitstream API.
Merged-by: Mark Thompson <sw@jkqxz.net>
Diffstat (limited to 'libavcodec/cbs_h265.h')
-rw-r--r-- | libavcodec/cbs_h265.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavcodec/cbs_h265.h b/libavcodec/cbs_h265.h index b4777cf6be..33e71fc234 100644 --- a/libavcodec/cbs_h265.h +++ b/libavcodec/cbs_h265.h @@ -154,6 +154,7 @@ typedef struct H265RawVUI { typedef struct H265RawPSExtensionData { uint8_t *data; size_t bit_length; + AVBufferRef *data_ref; } H265RawPSExtensionData; typedef struct H265RawVPS { @@ -512,6 +513,7 @@ typedef struct H265RawSlice { uint8_t *data; size_t data_size; int data_bit_start; + AVBufferRef *data_ref; } H265RawSlice; |