Commit 33452aed authored by Gildas Cocherel's avatar Gildas Cocherel Committed by Anton Khirnov

hevc: store the VPS list as an AVBufferRef, just like the others *PS

Signed-off-by: 's avatarAnton Khirnov <anton@khirnov.net>
parent b769cf4b
...@@ -431,7 +431,7 @@ static int set_sps(HEVCContext *s, const HEVCSPS *sps) ...@@ -431,7 +431,7 @@ static int set_sps(HEVCContext *s, const HEVCSPS *sps)
} }
s->sps = sps; s->sps = sps;
s->vps = s->vps_list[s->sps->vps_id]; s->vps = (HEVCVPS*) s->vps_list[s->sps->vps_id]->data;
return 0; return 0;
fail: fail:
...@@ -2924,7 +2924,7 @@ static av_cold int hevc_decode_free(AVCodecContext *avctx) ...@@ -2924,7 +2924,7 @@ static av_cold int hevc_decode_free(AVCodecContext *avctx)
} }
for (i = 0; i < FF_ARRAY_ELEMS(s->vps_list); i++) for (i = 0; i < FF_ARRAY_ELEMS(s->vps_list); i++)
av_freep(&s->vps_list[i]); av_buffer_unref(&s->vps_list[i]);
for (i = 0; i < FF_ARRAY_ELEMS(s->sps_list); i++) for (i = 0; i < FF_ARRAY_ELEMS(s->sps_list); i++)
av_buffer_unref(&s->sps_list[i]); av_buffer_unref(&s->sps_list[i]);
for (i = 0; i < FF_ARRAY_ELEMS(s->pps_list); i++) for (i = 0; i < FF_ARRAY_ELEMS(s->pps_list); i++)
...@@ -2999,6 +2999,15 @@ static int hevc_update_thread_context(AVCodecContext *dst, ...@@ -2999,6 +2999,15 @@ static int hevc_update_thread_context(AVCodecContext *dst,
} }
} }
for (i = 0; i < FF_ARRAY_ELEMS(s->vps_list); i++) {
av_buffer_unref(&s->vps_list[i]);
if (s0->vps_list[i]) {
s->vps_list[i] = av_buffer_ref(s0->vps_list[i]);
if (!s->vps_list[i])
return AVERROR(ENOMEM);
}
}
for (i = 0; i < FF_ARRAY_ELEMS(s->sps_list); i++) { for (i = 0; i < FF_ARRAY_ELEMS(s->sps_list); i++) {
av_buffer_unref(&s->sps_list[i]); av_buffer_unref(&s->sps_list[i]);
if (s0->sps_list[i]) { if (s0->sps_list[i]) {
......
...@@ -843,7 +843,7 @@ typedef struct HEVCContext { ...@@ -843,7 +843,7 @@ typedef struct HEVCContext {
const HEVCVPS *vps; const HEVCVPS *vps;
const HEVCSPS *sps; const HEVCSPS *sps;
const HEVCPPS *pps; const HEVCPPS *pps;
HEVCVPS *vps_list[MAX_VPS_COUNT]; AVBufferRef *vps_list[MAX_VPS_COUNT];
AVBufferRef *sps_list[MAX_SPS_COUNT]; AVBufferRef *sps_list[MAX_SPS_COUNT];
AVBufferRef *pps_list[MAX_PPS_COUNT]; AVBufferRef *pps_list[MAX_PPS_COUNT];
......
...@@ -328,12 +328,13 @@ int ff_hevc_decode_nal_vps(HEVCContext *s) ...@@ -328,12 +328,13 @@ int ff_hevc_decode_nal_vps(HEVCContext *s)
GetBitContext *gb = &s->HEVClc.gb; GetBitContext *gb = &s->HEVClc.gb;
int vps_id = 0; int vps_id = 0;
HEVCVPS *vps; HEVCVPS *vps;
AVBufferRef *vps_buf = av_buffer_allocz(sizeof(*vps));
av_log(s->avctx, AV_LOG_DEBUG, "Decoding VPS\n"); if (!vps_buf)
return AVERROR(ENOMEM);
vps = (HEVCVPS*)vps_buf->data;
vps = av_mallocz(sizeof(*vps)); av_log(s->avctx, AV_LOG_DEBUG, "Decoding VPS\n");
if (!vps)
return AVERROR(ENOMEM);
vps_id = get_bits(gb, 4); vps_id = get_bits(gb, 4);
if (vps_id >= MAX_VPS_COUNT) { if (vps_id >= MAX_VPS_COUNT) {
...@@ -410,12 +411,12 @@ int ff_hevc_decode_nal_vps(HEVCContext *s) ...@@ -410,12 +411,12 @@ int ff_hevc_decode_nal_vps(HEVCContext *s)
} }
get_bits1(gb); /* vps_extension_flag */ get_bits1(gb); /* vps_extension_flag */
av_free(s->vps_list[vps_id]); av_buffer_unref(&s->vps_list[vps_id]);
s->vps_list[vps_id] = vps; s->vps_list[vps_id] = vps_buf;
return 0; return 0;
err: err:
av_free(vps); av_buffer_unref(&vps_buf);
return AVERROR_INVALIDDATA; return AVERROR_INVALIDDATA;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment