avcodec/hevcdec: Use RefStruct-pool API instead of AVBufferPool API
It involves less allocations and therefore has the nice property that deriving a reference from a reference can't fail, simplifying hevc_ref_frame(). Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
This commit is contained in:
parent
736b510fcc
commit
fd2e65871c
@ -42,13 +42,11 @@ void ff_hevc_unref_frame(HEVCFrame *frame, int flags)
|
|||||||
av_frame_unref(frame->frame_grain);
|
av_frame_unref(frame->frame_grain);
|
||||||
frame->needs_fg = 0;
|
frame->needs_fg = 0;
|
||||||
|
|
||||||
av_buffer_unref(&frame->tab_mvf_buf);
|
ff_refstruct_unref(&frame->tab_mvf);
|
||||||
frame->tab_mvf = NULL;
|
|
||||||
|
|
||||||
ff_refstruct_unref(&frame->rpl);
|
ff_refstruct_unref(&frame->rpl);
|
||||||
frame->nb_rpl_elems = 0;
|
frame->nb_rpl_elems = 0;
|
||||||
av_buffer_unref(&frame->rpl_tab_buf);
|
ff_refstruct_unref(&frame->rpl_tab);
|
||||||
frame->rpl_tab = NULL;
|
|
||||||
frame->refPicList = NULL;
|
frame->refPicList = NULL;
|
||||||
|
|
||||||
ff_refstruct_unref(&frame->hwaccel_picture_private);
|
ff_refstruct_unref(&frame->hwaccel_picture_private);
|
||||||
@ -99,15 +97,13 @@ static HEVCFrame *alloc_frame(HEVCContext *s)
|
|||||||
goto fail;
|
goto fail;
|
||||||
frame->nb_rpl_elems = s->pkt.nb_nals;
|
frame->nb_rpl_elems = s->pkt.nb_nals;
|
||||||
|
|
||||||
frame->tab_mvf_buf = av_buffer_pool_get(s->tab_mvf_pool);
|
frame->tab_mvf = ff_refstruct_pool_get(s->tab_mvf_pool);
|
||||||
if (!frame->tab_mvf_buf)
|
if (!frame->tab_mvf)
|
||||||
goto fail;
|
goto fail;
|
||||||
frame->tab_mvf = (MvField *)frame->tab_mvf_buf->data;
|
|
||||||
|
|
||||||
frame->rpl_tab_buf = av_buffer_pool_get(s->rpl_tab_pool);
|
frame->rpl_tab = ff_refstruct_pool_get(s->rpl_tab_pool);
|
||||||
if (!frame->rpl_tab_buf)
|
if (!frame->rpl_tab)
|
||||||
goto fail;
|
goto fail;
|
||||||
frame->rpl_tab = (RefPicListTab **)frame->rpl_tab_buf->data;
|
|
||||||
frame->ctb_count = s->ps.sps->ctb_width * s->ps.sps->ctb_height;
|
frame->ctb_count = s->ps.sps->ctb_width * s->ps.sps->ctb_height;
|
||||||
for (j = 0; j < frame->ctb_count; j++)
|
for (j = 0; j < frame->ctb_count; j++)
|
||||||
frame->rpl_tab[j] = frame->rpl;
|
frame->rpl_tab[j] = frame->rpl;
|
||||||
|
@ -86,8 +86,8 @@ static void pic_arrays_free(HEVCContext *s)
|
|||||||
av_freep(&s->sh.size);
|
av_freep(&s->sh.size);
|
||||||
av_freep(&s->sh.offset);
|
av_freep(&s->sh.offset);
|
||||||
|
|
||||||
av_buffer_pool_uninit(&s->tab_mvf_pool);
|
ff_refstruct_pool_uninit(&s->tab_mvf_pool);
|
||||||
av_buffer_pool_uninit(&s->rpl_tab_pool);
|
ff_refstruct_pool_uninit(&s->rpl_tab_pool);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* allocate arrays that depend on frame dimensions */
|
/* allocate arrays that depend on frame dimensions */
|
||||||
@ -133,10 +133,8 @@ static int pic_arrays_init(HEVCContext *s, const HEVCSPS *sps)
|
|||||||
if (!s->horizontal_bs || !s->vertical_bs)
|
if (!s->horizontal_bs || !s->vertical_bs)
|
||||||
goto fail;
|
goto fail;
|
||||||
|
|
||||||
s->tab_mvf_pool = av_buffer_pool_init(min_pu_size * sizeof(MvField),
|
s->tab_mvf_pool = ff_refstruct_pool_alloc(min_pu_size * sizeof(MvField), 0);
|
||||||
av_buffer_allocz);
|
s->rpl_tab_pool = ff_refstruct_pool_alloc(ctb_count * sizeof(RefPicListTab), 0);
|
||||||
s->rpl_tab_pool = av_buffer_pool_init(ctb_count * sizeof(RefPicListTab),
|
|
||||||
av_buffer_allocz);
|
|
||||||
if (!s->tab_mvf_pool || !s->rpl_tab_pool)
|
if (!s->tab_mvf_pool || !s->rpl_tab_pool)
|
||||||
goto fail;
|
goto fail;
|
||||||
|
|
||||||
@ -3404,16 +3402,8 @@ static int hevc_ref_frame(HEVCFrame *dst, HEVCFrame *src)
|
|||||||
dst->needs_fg = 1;
|
dst->needs_fg = 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
dst->tab_mvf_buf = av_buffer_ref(src->tab_mvf_buf);
|
dst->tab_mvf = ff_refstruct_ref(src->tab_mvf);
|
||||||
if (!dst->tab_mvf_buf)
|
dst->rpl_tab = ff_refstruct_ref(src->rpl_tab);
|
||||||
goto fail;
|
|
||||||
dst->tab_mvf = src->tab_mvf;
|
|
||||||
|
|
||||||
dst->rpl_tab_buf = av_buffer_ref(src->rpl_tab_buf);
|
|
||||||
if (!dst->rpl_tab_buf)
|
|
||||||
goto fail;
|
|
||||||
dst->rpl_tab = src->rpl_tab;
|
|
||||||
|
|
||||||
dst->rpl = ff_refstruct_ref(src->rpl);
|
dst->rpl = ff_refstruct_ref(src->rpl);
|
||||||
dst->nb_rpl_elems = src->nb_rpl_elems;
|
dst->nb_rpl_elems = src->nb_rpl_elems;
|
||||||
|
|
||||||
@ -3426,9 +3416,6 @@ static int hevc_ref_frame(HEVCFrame *dst, HEVCFrame *src)
|
|||||||
src->hwaccel_picture_private);
|
src->hwaccel_picture_private);
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
fail:
|
|
||||||
ff_hevc_unref_frame(dst, ~0);
|
|
||||||
return AVERROR(ENOMEM);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static av_cold int hevc_decode_free(AVCodecContext *avctx)
|
static av_cold int hevc_decode_free(AVCodecContext *avctx)
|
||||||
|
@ -408,14 +408,12 @@ typedef struct HEVCFrame {
|
|||||||
AVFrame *frame_grain;
|
AVFrame *frame_grain;
|
||||||
ThreadFrame tf;
|
ThreadFrame tf;
|
||||||
int needs_fg; /* 1 if grain needs to be applied by the decoder */
|
int needs_fg; /* 1 if grain needs to be applied by the decoder */
|
||||||
MvField *tab_mvf;
|
MvField *tab_mvf; ///< RefStruct reference
|
||||||
RefPicList *refPicList;
|
RefPicList *refPicList;
|
||||||
RefPicListTab **rpl_tab;
|
RefPicListTab **rpl_tab; ///< RefStruct reference
|
||||||
int ctb_count;
|
int ctb_count;
|
||||||
int poc;
|
int poc;
|
||||||
|
|
||||||
AVBufferRef *tab_mvf_buf;
|
|
||||||
AVBufferRef *rpl_tab_buf;
|
|
||||||
RefPicListTab *rpl; ///< RefStruct reference
|
RefPicListTab *rpl; ///< RefStruct reference
|
||||||
int nb_rpl_elems;
|
int nb_rpl_elems;
|
||||||
|
|
||||||
@ -516,8 +514,8 @@ typedef struct HEVCContext {
|
|||||||
HEVCSEI sei;
|
HEVCSEI sei;
|
||||||
struct AVMD5 *md5_ctx;
|
struct AVMD5 *md5_ctx;
|
||||||
|
|
||||||
AVBufferPool *tab_mvf_pool;
|
struct FFRefStructPool *tab_mvf_pool;
|
||||||
AVBufferPool *rpl_tab_pool;
|
struct FFRefStructPool *rpl_tab_pool;
|
||||||
|
|
||||||
///< candidate references for the current frame
|
///< candidate references for the current frame
|
||||||
RefPicList rps[5];
|
RefPicList rps[5];
|
||||||
|
Loading…
x
Reference in New Issue
Block a user