Home
last modified time | relevance | path

Searched refs:V4L2DecodeInterface (Results 1 – 6 of 6) sorted by relevance

/external/v4l2_codec2/components/include/v4l2_codec2/components/
DV4L2DecodeInterface.h19 class V4L2DecodeInterface : public C2InterfaceHelper {
21 V4L2DecodeInterface(const std::string& name, const std::shared_ptr<C2ReflectorHelper>& helper);
22 V4L2DecodeInterface(const V4L2DecodeInterface&) = delete;
23 V4L2DecodeInterface& operator=(const V4L2DecodeInterface&) = delete;
24 ~V4L2DecodeInterface() = default;
DV4L2DecodeComponent.h34 const std::shared_ptr<V4L2DecodeInterface>& intfImpl);
98 std::shared_ptr<V4L2DecodeInterface> mIntfImpl;
/external/v4l2_codec2/components/
DV4L2DecodeInterface.cpp55 C2R V4L2DecodeInterface::ProfileLevelSetter(bool /* mayBlock */, in ProfileLevelSetter()
63 C2R V4L2DecodeInterface::SizeSetter(bool /* mayBlock */, in SizeSetter()
72 C2R V4L2DecodeInterface::DefaultColorAspectsSetter(bool /* mayBlock */, C2P<T>& def) { in DefaultColorAspectsSetter()
89 C2R V4L2DecodeInterface::MergedColorAspectsSetter( in MergedColorAspectsSetter()
104 C2R V4L2DecodeInterface::MaxInputBufferSizeCalculator( in MaxInputBufferSizeCalculator()
111 V4L2DecodeInterface::V4L2DecodeInterface(const std::string& name, in V4L2DecodeInterface() function in android::V4L2DecodeInterface
324 size_t V4L2DecodeInterface::getInputBufferSize() const { in getInputBufferSize()
328 c2_status_t V4L2DecodeInterface::queryColorAspects( in queryColorAspects()
341 uint32_t V4L2DecodeInterface::getOutputDelay(VideoCodec codec) { in getOutputDelay()
DV4L2ComponentFactory.cpp55 delayCount = std::max(delayCount, V4L2DecodeInterface::getOutputDelay(c)); in V4L2ComponentFactory()
98 new SimpleInterface<V4L2DecodeInterface>( in createInterface()
100 std::make_shared<V4L2DecodeInterface>(mComponentName, mReflector)), in createInterface()
DAndroid.bp25 "V4L2DecodeInterface.cpp",
DV4L2DecodeComponent.cpp137 auto intfImpl = std::make_shared<V4L2DecodeInterface>(name, helper); in create()
149 const std::shared_ptr<V4L2DecodeInterface>& intfImpl) in V4L2DecodeComponent()
151 mIntf(std::make_shared<SimpleInterface<V4L2DecodeInterface>>(name.c_str(), id, mIntfImpl)) { in V4L2DecodeComponent()