Home
last modified time | relevance | path

Searched refs:DecodeRequest (Results 1 – 4 of 4) sorted by relevance

/external/v4l2_codec2/components/include/v4l2_codec2/components/
DV4L2Decoder.h47 struct DecodeRequest { struct
48 DecodeRequest(std::unique_ptr<BitstreamBuffer> buffer, DecodeCB decodeCb) in DecodeRequest() argument
50 DecodeRequest(DecodeRequest&&) = default;
51 ~DecodeRequest() = default;
52 DecodeRequest& operator=(DecodeRequest&&); argument
85 std::queue<DecodeRequest> mDecodeRequests;
/external/v4l2_codec2/components/
DV4L2Decoder.cpp196 mDecodeRequests.push(DecodeRequest(std::move(buffer), std::move(decodeCb))); in decode()
212 mDecodeRequests.push(DecodeRequest(nullptr, std::move(drainCb))); in drain()
/external/crosvm/src/plugin/
Dmod.rs64 DecodeRequest(ProtobufError), enumerator
132 DecodeRequest(e) => write!(f, "failed to decode plugin request: {}", e), in fmt()
Dprocess.rs484 .map_err(Error::DecodeRequest)?; in handle_socket()