Home
last modified time | relevance | path

Searched refs:resolution (Results 1 – 25 of 68) sorted by relevance

123

/hardware/intel/common/utils/media_resource_manager/arbitrator/
DMediaResourceArbitrator.cpp73 /* in */ ResolutionType resolution, in AddResource() argument
89 resource.resolution = resolution; in AddResource()
93 codecType, isEncoder, isSecured, resolution, frameRate); in AddResource()
97 if (resolution > mLivingEncodersTable.maxResolution) { in AddResource()
98 mLivingEncodersTable.maxResolution = resolution; in AddResource()
105 if (resolution > mLivingDecodersTable.maxResolution) { in AddResource()
106 mLivingDecodersTable.maxResolution = resolution; in AddResource()
132 ResolutionType resolution, in RemoveResource() argument
145 (livingCodec.resolution == resolution) && in RemoveResource()
156 (livingCodec.resolution == resolution) && in RemoveResource()
[all …]
DMediaResourceArbitrator.h71 ResolutionType resolution; member
124 /* in */ ResolutionType resolution,
131 ResolutionType resolution,
/hardware/intel/common/utils/media_resource_manager/omx_adaptor/
DOMX_adaptor.cpp164 ResolutionType resolution; in MRM_OMX_SetParameter() local
168 resolution = Resolution_480; in MRM_OMX_SetParameter()
170 resolution = Resolution_720; in MRM_OMX_SetParameter()
172 resolution = Resolution_1080; in MRM_OMX_SetParameter()
174 resolution = Resolution_2K; in MRM_OMX_SetParameter()
176 resolution = Resolution_4K; in MRM_OMX_SetParameter()
180 codecInfo.resolution = resolution; in MRM_OMX_SetParameter()
201 codecInfo.resolution, in MRM_OMX_SetParameter()
239 codecInfo.resolution, in MRM_OMX_RemoveComponent()
/hardware/invensense/6515/libsensors_iio/
DCompassSensor.IIO.9150.cpp299 list->resolution = COMPASS_MPU9150_RESOLUTION; in fillList()
309 list->resolution = COMPASS_AKM8975_RESOLUTION; in fillList()
319 list->resolution = COMPASS_AKM8963_RESOLUTION; in fillList()
329 list->resolution = COMPASS_AKM9911_RESOLUTION; in fillList()
339 list->resolution = COMPASS_AKM9912_RESOLUTION; in fillList()
348 list->resolution = COMPASS_MPU9350_RESOLUTION; in fillList()
355 list->resolution = COMPASS_YAS53x_RESOLUTION; in fillList()
362 list->resolution = COMPASS_AMI306_RESOLUTION; in fillList()
372 list->resolution = COMPASS_AKM8975_RESOLUTION; in fillList()
DCompassSensor.AKM.cpp159 list->resolution = COMPASS_AKM8963_RESOLUTION; in fillList()
166 list->resolution = COMPASS_AKM8975_RESOLUTION; in fillList()
176 list->resolution = COMPASS_AKM8975_RESOLUTION; in fillList()
DCompassSensor.IIO.primary.cpp409 list->resolution = COMPASS_MPU9150_RESOLUTION; in fillList()
420 list->resolution = COMPASS_AKM8975_RESOLUTION; in fillList()
431 list->resolution = COMPASS_AKM8963_RESOLUTION; in fillList()
442 list->resolution = COMPASS_AKM9911_RESOLUTION; in fillList()
453 list->resolution = COMPASS_AKM9912_RESOLUTION; in fillList()
461 list->resolution = COMPASS_AMI306_RESOLUTION; in fillList()
471 list->resolution = COMPASS_YAS53x_RESOLUTION; in fillList()
483 list->resolution = COMPASS_AKM8975_RESOLUTION; in fillList()
DPressureSensor.IIO.secondary.cpp163 list->resolution = PRESSURE_BMP280_RESOLUTION; in fillList()
174 list->resolution = PRESSURE_BMP280_RESOLUTION; in fillList()
/hardware/bsp/intel/peripheral/libupm/examples/java/
DMQ2Sample.java27 private static final short resolution = 5; field in MQ2Sample
55 sensor.printGraph(ctx, resolution); in main()
DMQ5Sample.java26 private static final short resolution = 7; field in MQ5Sample
54 sensor.printGraph(ctx, resolution); in main()
/hardware/invensense/65xx/libsensors_iio/
DCompassSensor.AKM.cpp159 list->resolution = COMPASS_AKM8963_RESOLUTION; in fillList()
166 list->resolution = COMPASS_AKM8975_RESOLUTION; in fillList()
176 list->resolution = COMPASS_AKM8975_RESOLUTION; in fillList()
DCompassSensor.IIO.9150.cpp297 list->resolution = COMPASS_MPU9150_RESOLUTION; in fillList()
307 list->resolution = COMPASS_AKM8975_RESOLUTION; in fillList()
316 list->resolution = COMPASS_MPU9350_RESOLUTION; in fillList()
323 list->resolution = COMPASS_YAS53x_RESOLUTION; in fillList()
330 list->resolution = COMPASS_AMI306_RESOLUTION; in fillList()
340 list->resolution = COMPASS_AKM8975_RESOLUTION; in fillList()
DCompassSensor.IIO.primary.cpp409 list->resolution = COMPASS_MPU9150_RESOLUTION; in fillList()
419 list->resolution = COMPASS_AKM8975_RESOLUTION; in fillList()
427 list->resolution = COMPASS_AMI306_RESOLUTION; in fillList()
437 list->resolution = COMPASS_YAS53x_RESOLUTION; in fillList()
449 list->resolution = COMPASS_AKM8975_RESOLUTION; in fillList()
DPressureSensor.IIO.secondary.cpp164 list->resolution = PRESSURE_BMP280_RESOLUTION; in fillList()
175 list->resolution = PRESSURE_BMP280_RESOLUTION; in fillList()
/hardware/intel/common/libmix/videoencoder/
DVideoEncoderBase.cpp135 if (mComParams.resolution.width > 2048 || mComParams.resolution.height > 2048){ in start()
137 mComParams.resolution.width, mComParams.resolution.height); in start()
226 stride_aligned = (mComParams.resolution.width + 15) & ~15; in start()
227 height_aligned = (mComParams.resolution.height + 15) & ~15; in start()
232 stride_aligned = mComParams.resolution.width; in start()
233 height_aligned = mComParams.resolution.height; in start()
238 … stride_aligned = (mComParams.resolution.width + 63) & ~63; //on Merr, stride must be 64 aligned. in start()
239 height_aligned = (mComParams.resolution.height + 31) & ~31; in start()
284 mComParams.resolution.width, in start()
285 mComParams.resolution.height, in start()
[all …]
DVideoEncoderMP4.cpp137 mp4SequenceParams.video_object_layer_width= mComParams.resolution.width; in renderSequenceParams()
138 mp4SequenceParams.video_object_layer_height= mComParams.resolution.height; in renderSequenceParams()
194 mpeg4_pic_param.picture_width = mComParams.resolution.width; in renderPictureParams()
195 mpeg4_pic_param.picture_height = mComParams.resolution.height; in renderPictureParams()
234 sliceHeight = mComParams.resolution.height; in renderSliceParams()
DVideoEncoderH263.cpp106 h263PictureParams.picture_width = mComParams.resolution.width; in renderPictureParams()
107 h263PictureParams.picture_height = mComParams.resolution.height; in renderPictureParams()
142 sliceHeight = mComParams.resolution.height; in renderSliceParams()
DVideoEncoderAVC.cpp986 avcSeqParams.picture_width_in_mbs = (mComParams.resolution.width + 15) / 16; in renderSequenceParams()
987 avcSeqParams.picture_height_in_mbs = (mComParams.resolution.height + 15) / 16; in renderSequenceParams()
1023 if (mComParams.resolution.width & 0xf) { in renderSequenceParams()
1025 uint32_t AWidth = (mComParams.resolution.width + 0xf) & (~0xf); in renderSequenceParams()
1026 avcSeqParams.frame_crop_right_offset = ( AWidth - mComParams.resolution.width ) / 2; in renderSequenceParams()
1029 if (mComParams.resolution.height & 0xf) { in renderSequenceParams()
1031 uint32_t AHeight = (mComParams.resolution.height + 0xf) & (~0xf); in renderSequenceParams()
1032 avcSeqParams.frame_crop_bottom_offset = ( AHeight - mComParams.resolution.height ) / 2; in renderSequenceParams()
1273 maxSliceNum = (mComParams.resolution.height + 15) / 16; in renderSliceParams()
1324 …currentSlice->macroblock_address = startRowInMB * ((mComParams.resolution.width + 0xf) & ~0xf) / 1… in renderSliceParams()
[all …]
DPVSoftMPEG4Encoder.cpp134 mComParams.resolution.width = 0; in setDefaultParams()
135 mComParams.resolution.height = 0; in setDefaultParams()
310 mVideoWidth = mComParams.resolution.width; in setParameters()
311 mVideoHeight = mComParams.resolution.height; in setParameters()
/hardware/bsp/intel/peripheral/libupm/src/gas/
Dgas.cxx93 Gas::printGraph (thresholdContext* ctx, uint8_t resolution) { in printGraph() argument
95 for (int i = 0; i < ctx->runningAverage / resolution; i++) in printGraph()
Dgas.h98 virtual void printGraph (thresholdContext* ctx, uint8_t resolution);
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/third_party/libyuv/
DREADME.webm11 The optimized scaler in libyuv is used in multiple resolution encoder example,
13 in order to encode multiple resolution bit streams.
/hardware/libhardware/modules/input/evdev/
DInputHost.cpp40 int32_t min, int32_t max, float resolution) { in declareUsage() argument
42 id, usage, min, max, resolution); in declareUsage()
/hardware/bsp/intel/peripheral/sensors/mraa/sensors/
DGroveLight.cpp28 .resolution = 1.0f,
DGroveTemperature.cpp28 .resolution = 1.0f,
DProximityGPIO.cpp49 .resolution = 1.0f,

123