Home
last modified time | relevance | path

Searched refs:IntelDrmDecoder (Results 1 – 5 of 5) sorted by relevance

/hardware/google/gfxstream/host/magma/
DIntelDrmDecoder.cpp35 std::unique_ptr<IntelDrmDecoder> IntelDrmDecoder::create(uint32_t context_id) { in create()
36 std::unique_ptr<IntelDrmDecoder> decoder(new IntelDrmDecoder()); in create()
45 return static_cast<IntelDrmDecoder*>(decoder)->method(args...); \
48 IntelDrmDecoder::IntelDrmDecoder() : Decoder() { in IntelDrmDecoder() function in gfxstream::magma::IntelDrmDecoder
73 magma_status_t IntelDrmDecoder::magma_device_import(magma_handle_t device_channel, in magma_device_import()
85 void IntelDrmDecoder::magma_device_release(magma_device_t device) { in magma_device_release()
155 magma_status_t IntelDrmDecoder::magma_device_query_fudge(magma_device_t device, uint64_t id, in magma_device_query_fudge()
326 magma_status_t IntelDrmDecoder::magma_device_create_connection(magma_device_t device, in magma_device_create_connection()
337 void IntelDrmDecoder::magma_connection_release(magma_connection_t connection) { in magma_connection_release()
344 magma_status_t IntelDrmDecoder::magma_connection_create_buffer(magma_connection_t connection, in magma_connection_create_buffer()
[all …]
DAndroid.bp29 "IntelDrmDecoder.cpp",
44 "IntelDrmDecoder.cpp",
DIntelDrmDecoder.h26 class IntelDrmDecoder : public Decoder {
28 static std::unique_ptr<IntelDrmDecoder> create(uint32_t context_id);
31 IntelDrmDecoder();
Dmeson.build12 'IntelDrmDecoder.cpp',
DDecoder.cpp28 return IntelDrmDecoder::create(context_id); in create()