diff options
author | Gildas Cocherel <gildas.cocherel@laposte.net> | 2013-12-10 15:42:28 +0100 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2013-12-11 20:39:54 +0100 |
commit | 33452aede6acab78f726cd1924824585f00765cc (patch) | |
tree | 1308202d92537c6330a95cf46beb0e22fbf7b891 /libavcodec/hevc.h | |
parent | b769cf4b44c8112827c2fdfcab74bd95600fd6d3 (diff) | |
download | ffmpeg-33452aede6acab78f726cd1924824585f00765cc.tar.gz |
hevc: store the VPS list as an AVBufferRef, just like the others *PS
Signed-off-by: Anton Khirnov <anton@khirnov.net>
Diffstat (limited to 'libavcodec/hevc.h')
-rw-r--r-- | libavcodec/hevc.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/hevc.h b/libavcodec/hevc.h index d19f3122f5..bd6f50fdea 100644 --- a/libavcodec/hevc.h +++ b/libavcodec/hevc.h @@ -843,7 +843,7 @@ typedef struct HEVCContext { const HEVCVPS *vps; const HEVCSPS *sps; const HEVCPPS *pps; - HEVCVPS *vps_list[MAX_VPS_COUNT]; + AVBufferRef *vps_list[MAX_VPS_COUNT]; AVBufferRef *sps_list[MAX_SPS_COUNT]; AVBufferRef *pps_list[MAX_PPS_COUNT]; |