Home
last modified time | relevance | path

Searched refs:InternalFrameBufferList (Results 1 – 10 of 10) sorted by relevance

/external/libgav1/libgav1/src/
Dinternal_frame_buffer_list.h43 class InternalFrameBufferList : public Allocable {
45 InternalFrameBufferList() = default;
48 InternalFrameBufferList(const InternalFrameBufferList&) = delete;
49 InternalFrameBufferList& operator=(const InternalFrameBufferList&) = delete;
51 ~InternalFrameBufferList() = default;
Dinternal_frame_buffer_list.cc33 static_cast<InternalFrameBufferList*>(callback_private_data); in OnInternalFrameBufferSizeChanged()
44 static_cast<InternalFrameBufferList*>(callback_private_data); in GetInternalFrameBuffer()
53 static_cast<InternalFrameBufferList*>(callback_private_data); in ReleaseInternalFrameBuffer()
59 StatusCode InternalFrameBufferList::OnFrameBufferSizeChanged( in OnFrameBufferSizeChanged()
66 StatusCode InternalFrameBufferList::GetFrameBuffer( in GetFrameBuffer()
117 void InternalFrameBufferList::ReleaseFrameBuffer(void* buffer_private_data) { in ReleaseFrameBuffer()
Dbuffer_pool.h387 InternalFrameBufferList internal_frame_buffers_;
/external/libaom/libaom/av1/common/
Dframe_buffers.h28 typedef struct InternalFrameBufferList { struct
31 } InternalFrameBufferList; argument
34 int av1_alloc_internal_frame_buffers(InternalFrameBufferList *list);
37 void av1_free_internal_frame_buffers(InternalFrameBufferList *list);
43 void av1_zero_unused_internal_frame_buffers(InternalFrameBufferList *list);
Dframe_buffers.c17 int av1_alloc_internal_frame_buffers(InternalFrameBufferList *list) { in av1_alloc_internal_frame_buffers()
32 void av1_free_internal_frame_buffers(InternalFrameBufferList *list) { in av1_free_internal_frame_buffers()
46 void av1_zero_unused_internal_frame_buffers(InternalFrameBufferList *list) { in av1_zero_unused_internal_frame_buffers()
60 InternalFrameBufferList *const int_fb_list = in av1_get_frame_buffer()
61 (InternalFrameBufferList *)cb_priv; in av1_get_frame_buffer()
Dav1_common_int.h186 InternalFrameBufferList int_frame_buffers;
/external/libvpx/libvpx/vp9/common/
Dvp9_frame_buffers.h27 typedef struct InternalFrameBufferList { struct
30 } InternalFrameBufferList; typedef
33 int vp9_alloc_internal_frame_buffers(InternalFrameBufferList *list);
36 void vp9_free_internal_frame_buffers(InternalFrameBufferList *list);
Dvp9_frame_buffers.c16 int vp9_alloc_internal_frame_buffers(InternalFrameBufferList *list) { in vp9_alloc_internal_frame_buffers()
27 void vp9_free_internal_frame_buffers(InternalFrameBufferList *list) { in vp9_free_internal_frame_buffers()
43 InternalFrameBufferList *const int_fb_list = in vp9_get_frame_buffer()
44 (InternalFrameBufferList *)cb_priv; in vp9_get_frame_buffer()
Dvp9_onyxc_int.h87 InternalFrameBufferList int_frame_buffers;
/external/libgav1/libgav1/tests/fuzzer/
Dobu_parser_fuzzer.cc44 libgav1::InternalFrameBufferList buffer_list; in ParseObu()