Home
last modified time | relevance | path

Searched refs:timestampBase (Results 1 – 25 of 26) sorted by relevance

12

/frameworks/base/core/java/android/hardware/camera2/params/
DSharedSessionConfiguration.java117 @TimestampBase int timestampBase, @NamedDataSpace int dataspace, @Usage long usage, in SharedOutputConfiguration() argument
124 mTimestampBase = timestampBase; in SharedOutputConfiguration()
237 int surfaceType, width, height, format, mirrorMode, timestampBase, dataspace; in SharedSessionConfiguration() local
251 timestampBase = (int) sharedOutputConfigurations[i + 6]; in SharedSessionConfiguration()
275 format, mirrorMode, isReadOutTimestampEnabled, timestampBase, in SharedSessionConfiguration()
DOutputConfiguration.java1380 public void setTimestampBase(@TimestampBase int timestampBase) { in setTimestampBase() argument
1382 if (timestampBase < TIMESTAMP_BASE_DEFAULT || in setTimestampBase()
1383 timestampBase > TIMESTAMP_BASE_READOUT_SENSOR) { in setTimestampBase()
1385 timestampBase); in setTimestampBase()
1388 if (timestampBase == TIMESTAMP_BASE_READOUT_SENSOR) { in setTimestampBase()
1393 mTimestampBase = timestampBase; in setTimestampBase()
1616 int timestampBase = source.readInt(); in OutputConfiguration() local
1656 mTimestampBase = timestampBase; in OutputConfiguration()
/frameworks/av/services/camera/libcameraservice/device3/
DCamera3StreamInterface.h117 int timestampBase; variable
124 timestampBase(OutputConfiguration::TIMESTAMP_BASE_DEFAULT), in OutputStreamInfo()
133 streamUseCase(_streamUseCase), timestampBase(_timestampBase), colorSpace(_colorSpace) {} in OutputStreamInfo()
144 timestampBase == other.timestampBase);
DCamera3OutputStream.cpp64 int64_t streamUseCase, bool deviceTimeBaseIsRealtime, int timestampBase, in Camera3OutputStream() argument
70 timestampBase, colorSpace), in Camera3OutputStream()
99 int64_t streamUseCase, bool deviceTimeBaseIsRealtime, int timestampBase, in Camera3OutputStream() argument
104 deviceTimeBaseIsRealtime, timestampBase, colorSpace), in Camera3OutputStream()
139 int64_t streamUseCase, bool deviceTimeBaseIsRealtime, int timestampBase, in Camera3OutputStream() argument
145 timestampBase, colorSpace), in Camera3OutputStream()
187 bool deviceTimeBaseIsRealtime, int timestampBase, in Camera3OutputStream() argument
194 timestampBase, colorSpace), in Camera3OutputStream()
644 int timestampBase = getTimestampBase(); in configureConsumerQueueLocked() local
645 bool isDefaultTimeBase = (timestampBase == in configureConsumerQueueLocked()
[all …]
DCamera3OutputStream.h99 int timestampBase = OutputConfiguration::TIMESTAMP_BASE_DEFAULT,
118 int timestampBase = OutputConfiguration::TIMESTAMP_BASE_DEFAULT,
136 int timestampBase = OutputConfiguration::TIMESTAMP_BASE_DEFAULT,
287 int timestampBase = OutputConfiguration::TIMESTAMP_BASE_DEFAULT,
DCamera3IOStreamBase.cpp41 bool deviceTimeBaseIsRealtime, int timestampBase, int32_t colorSpace) : in Camera3IOStreamBase() argument
45 dynamicRangeProfile, streamUseCase, deviceTimeBaseIsRealtime, timestampBase, in Camera3IOStreamBase()
DCamera3IOStreamBase.h44 int timestampBase = OutputConfiguration::TIMESTAMP_BASE_DEFAULT,
DCamera3SharedOutputStream.h51 bool deviceTimeBaseIsRealtime, int timestampBase,
DCamera3SharedOutputStream.cpp41 int64_t streamUseCase, bool deviceTimeBaseIsRealtime, int timestampBase, in Camera3SharedOutputStream() argument
47 deviceTimeBaseIsRealtime, timestampBase, colorSpace, in Camera3SharedOutputStream()
DCamera3Stream.h516 int64_t streamUseCase, bool deviceTimeBaseIsRealtime, int timestampBase,
DCamera3Stream.cpp62 int64_t streamUseCase, bool deviceTimeBaseIsRealtime, int timestampBase, in Camera3Stream() argument
90 mTimestampBase(timestampBase) { in Camera3Stream()
DCamera3Device.cpp1063 int timestampBase, int mirrorMode, int32_t colorSpace, bool useReadoutTimestamp) { in createStream() argument
1077 streamUseCase, timestampBase, colorSpace, useReadoutTimestamp); in createStream()
1099 int timestampBase, int32_t colorSpace, bool useReadoutTimestamp) { in createStream() argument
1111 dynamicRangeProfile, streamUseCase, timestampBase, colorSpace, in createStream()
1184 timestampBase, consumers[0].mMirrorMode, colorSpace, useReadoutTimestamp); in createStream()
1199 timestampBase, consumers[0].mMirrorMode, colorSpace, useReadoutTimestamp); in createStream()
1205 timestampBase, colorSpace, useReadoutTimestamp); in createStream()
1211 timestampBase, colorSpace, useReadoutTimestamp); in createStream()
1217 timestampBase, consumers[0].mMirrorMode, colorSpace, useReadoutTimestamp); in createStream()
DCamera3Device.h189 int timestampBase = OutputConfiguration::TIMESTAMP_BASE_DEFAULT,
207 int timestampBase = OutputConfiguration::TIMESTAMP_BASE_DEFAULT,
/frameworks/av/services/camera/libcameraservice/config/
DSharedSessionConfigReader.cpp141 int64_t timestampBase; in parseSharedSessionConfigFromXMLDocument() local
145 &timestampBase); in parseSharedSessionConfigFromXMLDocument()
201 timestampBase, mirrorMode, useReadoutTimestamp, format, in parseSharedSessionConfigFromXMLDocument()
DSharedSessionConfigReader.h42 int64_t timestampBase; member
DSharedSessionConfigUtils.cpp145 /* out */ int64_t* timestampBase) { in getTimestampBaseFromXml() argument
148 *timestampBase = OutputConfiguration::TIMESTAMP_BASE_DEFAULT; in getTimestampBaseFromXml()
159 *timestampBase = timestampBaseInt; in getTimestampBaseFromXml()
DSharedSessionConfigUtils.h247 int64_t* timestampBase);
/frameworks/av/camera/camera2/
DOutputConfiguration.cpp171 int32_t colorSpace, int mirrorMode, bool useReadoutTimestamp, int timestampBase, in OutputConfiguration() argument
185 mTimestampBase(timestampBase), in OutputConfiguration()
290 int timestampBase = TIMESTAMP_BASE_DEFAULT; in readFromParcel() local
291 if ((err = parcel->readInt32(&timestampBase)) != OK) { in readFromParcel()
341 mTimestampBase = timestampBase; in readFromParcel()
373 mPhysicalCameraId.c_str(), mIsMultiResolution, mStreamUseCase, timestampBase, in readFromParcel()
/frameworks/av/services/camera/libcameraservice/tests/
DSharedSessionConfigUtilsTest.cpp284 int64_t timestampBase; in TEST() local
287 EXPECT_EQ(SharedSessionConfigUtils::getTimestampBaseFromXml(nullptr, &timestampBase), in TEST()
289 EXPECT_EQ(timestampBase, OutputConfiguration::TIMESTAMP_BASE_DEFAULT); in TEST()
294 EXPECT_EQ(SharedSessionConfigUtils::getTimestampBaseFromXml(emptyElem, &timestampBase), in TEST()
296 EXPECT_EQ(timestampBase, OutputConfiguration::TIMESTAMP_BASE_DEFAULT); in TEST()
319 EXPECT_EQ(SharedSessionConfigUtils::getTimestampBaseFromXml(elem, &timestampBase), in TEST()
321 EXPECT_EQ(timestampBase, testCase.expected); in TEST()
326 EXPECT_EQ(SharedSessionConfigUtils::getTimestampBaseFromXml(invalidElem, &timestampBase), in TEST()
/frameworks/av/services/camera/libcameraservice/utils/
DSessionConfigurationUtils.cpp452 int64_t streamUseCase, int timestampBase, int mirrorMode, in createConfiguredSurface() argument
597 if (timestampBase < OutputConfiguration::TIMESTAMP_BASE_DEFAULT || in createConfiguredSurface()
598 timestampBase > OutputConfiguration::TIMESTAMP_BASE_MAX) { in createConfiguredSurface()
600 logicalCameraId.c_str(), timestampBase); in createConfiguredSurface()
621 streamInfo.timestampBase = timestampBase; in createConfiguredSurface()
865 int timestampBase = it.getTimestampBase(); in convertToHALStreamCombination() local
931 dynamicRangeProfile, streamUseCase, timestampBase, mirrorMode, in convertToHALStreamCombination()
DSessionConfigurationUtils.h114 int64_t streamUseCase, int timestampBase, int mirrorMode,
/frameworks/av/services/camera/libcameraservice/common/
DCameraDeviceBase.h197 int timestampBase = OutputConfiguration::TIMESTAMP_BASE_DEFAULT,
221 int timestampBase = OutputConfiguration::TIMESTAMP_BASE_DEFAULT,
/frameworks/av/services/camera/libcameraservice/device3/aidl/
DAidlCamera3SharedDevice.cpp165 int surfaceType, width, height, format, mirrorMode, timestampBase, dataspace; in getSharedOutputConfiguration() local
175 timestampBase = (int)sharedSessionConfigs.data.i64[i+6]; in getSharedOutputConfiguration()
199 format, colorspace, mirrorMode, isReadOutTimestampEnabled, timestampBase, in getSharedOutputConfiguration()
/frameworks/av/camera/include/camera/camera2/
DOutputConfiguration.h118 int mirrorMode, bool useReadoutTimestamp,int timestampBase, int dataspace,
/frameworks/av/services/camera/libcameraservice/api2/
DCameraDeviceClient.cpp1105 int timestampBase = outputConfiguration.getTimestampBase(); in createStream() local
1165 streamUseCase, timestampBase, mirrorMode, colorSpace, /*respectSurfaceSize*/false); in createStream()
1232 streamInfo.timestampBase, streamInfo.colorSpace, useReadoutTimestamp); in createStream()
1542 int timestampBase = outputConfiguration.getTimestampBase(); in updateOutputConfiguration() local
1555 dynamicRangeProfile, streamUseCase, timestampBase, mirrorMode, colorSpace, in updateOutputConfiguration()
1932 int timestampBase = outputConfiguration.getTimestampBase(); in finalizeOutputConfigurations() local
1958 streamUseCase, timestampBase, mirrorMode, colorSpace, /*respectSurfaceSize*/ false); in finalizeOutputConfigurations()

12