Home
last modified time | relevance | path

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

/external/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_test.cc37 InternalFrameBufferList buffer_list; in TEST()
64 InternalFrameBufferList buffer_list; in TEST()
86 InternalFrameBufferList buffer_list; in TEST()
136 InternalFrameBufferList buffer_list;
217 InternalFrameBufferList buffer_list;
Dinternal_frame_buffer_list_test.cc45 InternalFrameBufferList buffer_list_;
Dbuffer_pool.h429 InternalFrameBufferList internal_frame_buffers_;
/external/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.h190 InternalFrameBufferList int_frame_buffers;
/external/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()
30 void vp9_free_internal_frame_buffers(InternalFrameBufferList *list) { in vp9_free_internal_frame_buffers()
47 InternalFrameBufferList *const int_fb_list = in vp9_get_frame_buffer()
48 (InternalFrameBufferList *)cb_priv; in vp9_get_frame_buffer()
Dvp9_onyxc_int.h96 InternalFrameBufferList int_frame_buffers;
/external/libgav1/tests/fuzzer/
Dobu_parser_fuzzer.cc44 libgav1::InternalFrameBufferList buffer_list; in ParseObu()