Home
last modified time | relevance | path

Searched refs:streamConfig (Results 1 – 11 of 11) sorted by relevance

/aosp12/hardware/google/easel/amber/camera/libhdrplusclient/
H A DHdrPlusClientUtils.cpp31 const pbcamera::StreamConfiguration &streamConfig, in getRgb() argument
33 switch (streamConfig.image.format) { in getRgb()
37 if (streamConfig.image.planes.size() != 2) { in getRgb()
39 streamConfig.image.planes.size()); in getRgb()
46 streamConfig.image.planes[0].stride + in getRgb()
62 if (streamConfig.image.planes.size() != 1) { in getRgb()
64 streamConfig.image.planes.size()); in getRgb()
94 uint32_t width = streamConfig.image.width; in writePpm()
95 uint32_t height = streamConfig.image.height; in writePpm()
149 if (width != streamConfig.image.width || height != streamConfig.image.height) { in comparePpm()
[all …]
/aosp12/frameworks/base/services/core/java/com/android/server/tv/
H A DTvInputHal.java86 public int addOrUpdateStream(int deviceId, Surface surface, TvStreamConfig streamConfig) { in addOrUpdateStream() argument
92 if (generation != streamConfig.getGeneration()) { in addOrUpdateStream()
95 if (nativeAddOrUpdateStream(mPtr, deviceId, streamConfig.getStreamId(), surface) == 0) { in addOrUpdateStream()
103 public int removeStream(int deviceId, TvStreamConfig streamConfig) { in removeStream() argument
109 if (generation != streamConfig.getGeneration()) { in removeStream()
112 if (nativeRemoveStream(mPtr, deviceId, streamConfig.getStreamId()) == 0) { in removeStream()
/aosp12/hardware/google/easel/amber/camera/libhdrplusclient/include/
H A DHdrPlusClientUtils.h39 status_t writePpm(const std::string &filename, const pbcamera::StreamConfiguration &streamConfig,
57 status_t comparePpm(const std::string &filename, const pbcamera::StreamConfiguration &streamConfig,
/aosp12/packages/services/Car/cpp/computepipe/runner/input_manager/
H A DFactory.cpp38 InputManagerType getInputManagerType(const proto::InputStreamConfig& streamConfig) { in getInputManagerType() argument
39 switch (streamConfig.type()) { in getInputManagerType()
/aosp12/packages/services/Car/cpp/computepipe/tests/fuzz/
H A DVideoInputManagerFuzzer.cpp61 proto::InputStreamConfig* streamConfig = inputConf.add_input_stream(); in LLVMFuzzerInitialize() local
62 proto::VideoFileConfig* videoConfig = streamConfig->mutable_video_config(); in LLVMFuzzerInitialize()
/aosp12/hardware/interfaces/camera/device/3.5/default/
H A DExternalCameraDevice.cpp104 V3_2::StreamConfiguration streamConfig = {streamsV3_2, streams.operationMode}; in isStreamCombinationSupported() local
105 auto status = ExternalCameraDeviceSession::isStreamCombinationSupported(streamConfig, in isStreamCombinationSupported()
/aosp12/frameworks/hardware/interfaces/cameraservice/vts/functional/
H A DVtsHalCameraServiceV2_0TargetTest.cpp354 StreamConfiguration streamConfig; in getStreamConfiguration() local
361 return streamConfig; in getStreamConfiguration()
368 streamConfig.width = rawEntry.data.i32[i + STREAM_WIDTH_OFFSET]; in getStreamConfiguration()
369 streamConfig.height = rawEntry.data.i32[i + STREAM_HEIGHT_OFFSET]; in getStreamConfiguration()
370 return streamConfig; in getStreamConfiguration()
373 return streamConfig; in getStreamConfiguration()
/aosp12/packages/services/Car/cpp/computepipe/aidl/aidl_api/android.automotive.computepipe.runner/1/android/automotive/computepipe/runner/
H A DPipeTerminationConfigTerminationDesc.aidl23 android.automotive.computepipe.runner.PipeOutputConfig streamConfig;
/aosp12/packages/services/Car/cpp/computepipe/aidl/aidl_api/android.automotive.computepipe.runner/current/android/automotive/computepipe/runner/
H A DPipeTerminationConfigTerminationDesc.aidl23 android.automotive.computepipe.runner.PipeOutputConfig streamConfig;
/aosp12/packages/services/Car/cpp/computepipe/aidl/android/automotive/computepipe/runner/
H A DPipeTerminationConfigTerminationDesc.aidl39 PipeOutputConfig streamConfig;
/aosp12/hardware/google/easel/amber/camera/include/
H A DHdrPlusTypes.h175 StreamConfiguration streamConfig; member