MCPcopy Create free account
hub / github.com/FFmpeg/FFmpeg / ff_progress_frame_ref

Function ff_progress_frame_ref

libavcodec/decode.c:1917–1923  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1915}
1916
1917void ff_progress_frame_ref(ProgressFrame *dst, const ProgressFrame *src)
1918{
1919 av_assert1(src->progress && src->f && src->f == src->progress->f);
1920 av_assert1(!dst->f && !dst->progress);
1921 dst->f = src->f;
1922 dst->progress = av_refstruct_ref(src->progress);
1923}
1924
1925void ff_progress_frame_unref(ProgressFrame *f)
1926{

Callers 3

hevc_ref_frameFunction · 0.85

Calls 1

av_refstruct_refFunction · 0.85

Tested by

no test coverage detected