HomeSort by relevance Sort by last modified time
    Searched defs:streamInfo (Results 1 - 25 of 27) sorted by null

1 2

  /frameworks/av/services/camera/libcameraservice/api1/client2/
StreamingProcessor.cpp 164 CameraDeviceBase::StreamInfo streamInfo;
165 res = device->getStreamInfo(mPreviewStreamId, &streamInfo);
171 if (streamInfo.width != (uint32_t)params.previewWidth ||
172 streamInfo.height != (uint32_t)params.previewHeight) {
174 __FUNCTION__, mId, streamInfo.width, streamInfo.height,
314 CameraDeviceBase::StreamInfo streamInfo;
315 res = device->getStreamInfo(mRecordingStreamId, &streamInfo);
    [all...]
CallbackProcessor.cpp 124 CameraDeviceBase::StreamInfo streamInfo;
125 res = device->getStreamInfo(mCallbackStreamId, &streamInfo);
132 if (streamInfo.width != (uint32_t)params.previewWidth ||
133 streamInfo.height != (uint32_t)params.previewHeight ||
134 !streamInfo.matchFormat((uint32_t)callbackFormat)) {
JpegProcessor.cpp 139 CameraDeviceBase::StreamInfo streamInfo;
140 res = device->getStreamInfo(mCaptureStreamId, &streamInfo);
147 if (streamInfo.width != (uint32_t)params.pictureWidth ||
148 streamInfo.height != (uint32_t)params.pictureHeight) {
ZslProcessor.cpp 236 CameraDeviceBase::StreamInfo streamInfo;
237 res = device->getStreamInfo(mZslStreamId, &streamInfo);
244 if (streamInfo.width != (uint32_t)params.fastInfo.arrayWidth ||
245 streamInfo.height != (uint32_t)params.fastInfo.arrayHeight) {
  /device/lge/bullhead/camera/QCamera2/HAL/
QCameraChannel.cpp 887 cam_stream_info_t *streamInfo = NULL;
    [all...]
QCameraStream.cpp 664 * @streamInfo : stream information
670 int32_t QCameraStream::calcOffset(cam_stream_info_t *streamInfo)
674 cam_dimension_t dim = streamInfo->dim;
675 if (streamInfo->pp_config.feature_mask & CAM_QCOM_FEATURE_ROTATION &&
676 streamInfo->stream_type != CAM_STREAM_TYPE_VIDEO) {
677 if (streamInfo->pp_config.rotation == ROTATE_90 ||
678 streamInfo->pp_config.rotation == ROTATE_270) {
680 dim.width = streamInfo->dim.height;
681 dim.height = streamInfo->dim.width;
685 switch (streamInfo->stream_type)
    [all...]
QCamera2HWICallbacks.cpp 668 cam_stream_info_t *streamInfo =
670 if (NULL == streamInfo) {
671 ALOGE("%s: Invalid streamInfo", __func__);
686 yStride = streamInfo->buf_planes.plane_info.mp[0].stride;
687 yScanline = streamInfo->buf_planes.plane_info.mp[0].scanline;
688 uStride = streamInfo->buf_planes.plane_info.mp[1].stride;
689 uScanline = streamInfo->buf_planes.plane_info.mp[1].scanline;
690 vStride = streamInfo->buf_planes.plane_info.mp[2].stride;
691 vScanline = streamInfo->buf_planes.plane_info.mp[2].scanline;
697 yStride = streamInfo->buf_planes.plane_info.mp[0].stride
    [all...]
QCamera2HWI.cpp     [all...]
  /frameworks/wilhelm/src/android/
MediaPlayer_to_android.cpp 115 StreamInfo streamInfo;
116 streamInfo.domain = XA_DOMAINTYPE_VIDEO;
117 streamInfo.videoInfo.codecId = 0;// unknown, we don't have that info FIXME
118 streamInfo.videoInfo.width = (XAuint32)data1;
119 streamInfo.videoInfo.height = (XAuint32)data2;
120 streamInfo.videoInfo.bitRate = 0;// unknown, we don't have that info FIXME
121 streamInfo.videoInfo.frameRate = 0;
122 streamInfo.videoInfo.duration = XA_TIME_UNKNOWN;
123 StreamInfo &contInfo = mp->mStreamInfo.mStreamInfoTable.editItemAt(0)
    [all...]
  /device/google/marlin/camera/QCamera2/HAL/
QCameraChannel.cpp 969 cam_stream_info_t *streamInfo = NULL;
    [all...]
QCameraStream.cpp 810 * @streamInfo : stream information
816 int32_t QCameraStream::calcOffset(cam_stream_info_t *streamInfo)
820 cam_dimension_t dim = streamInfo->dim;
821 if (streamInfo->pp_config.feature_mask & CAM_QCOM_FEATURE_ROTATION &&
822 streamInfo->stream_type != CAM_STREAM_TYPE_VIDEO) {
823 if (streamInfo->pp_config.rotation == ROTATE_90 ||
824 streamInfo->pp_config.rotation == ROTATE_270) {
826 dim.width = streamInfo->dim.height;
827 dim.height = streamInfo->dim.width;
831 switch (streamInfo->stream_type)
    [all...]
QCamera2HWICallbacks.cpp     [all...]
QCamera2HWI.cpp     [all...]
  /device/huawei/angler/camera/QCamera2/HAL/
QCameraChannel.cpp 899 cam_stream_info_t *streamInfo = NULL;
    [all...]
QCameraStream.cpp 664 * @streamInfo : stream information
670 int32_t QCameraStream::calcOffset(cam_stream_info_t *streamInfo)
674 cam_dimension_t dim = streamInfo->dim;
675 if (streamInfo->pp_config.feature_mask & CAM_QCOM_FEATURE_ROTATION &&
676 streamInfo->stream_type != CAM_STREAM_TYPE_VIDEO) {
677 if (streamInfo->pp_config.rotation == ROTATE_90 ||
678 streamInfo->pp_config.rotation == ROTATE_270) {
680 dim.width = streamInfo->dim.height;
681 dim.height = streamInfo->dim.width;
685 switch (streamInfo->stream_type)
    [all...]
QCamera2HWICallbacks.cpp 668 cam_stream_info_t *streamInfo =
670 if (NULL == streamInfo) {
671 ALOGE("%s: Invalid streamInfo", __func__);
686 yStride = streamInfo->buf_planes.plane_info.mp[0].stride;
687 yScanline = streamInfo->buf_planes.plane_info.mp[0].scanline;
688 uStride = streamInfo->buf_planes.plane_info.mp[1].stride;
689 uScanline = streamInfo->buf_planes.plane_info.mp[1].scanline;
690 vStride = streamInfo->buf_planes.plane_info.mp[2].stride;
691 vScanline = streamInfo->buf_planes.plane_info.mp[2].scanline;
697 yStride = streamInfo->buf_planes.plane_info.mp[0].stride
    [all...]
QCamera2HWI.cpp     [all...]
  /external/aac/libAACdec/src/
aacdecoder.h 178 UINT flags; /*!< Flags for internal decoder use. DO NOT USE self::streaminfo::flags ! */
194 CStreamInfo streamInfo; /*!< pointer to StreamInfo data (read from the bitstream) */
321 /* get streaminfo handle from decoder */
  /hardware/qcom/camera/msm8998/QCamera2/HAL/
QCameraChannel.cpp     [all...]
QCameraStream.cpp 843 * @streamInfo : stream information
849 int32_t QCameraStream::calcOffset(cam_stream_info_t *streamInfo)
853 cam_dimension_t dim = streamInfo->dim;
854 if (streamInfo->pp_config.feature_mask & CAM_QCOM_FEATURE_ROTATION &&
855 streamInfo->stream_type != CAM_STREAM_TYPE_VIDEO) {
856 if (streamInfo->pp_config.rotation == ROTATE_90 ||
857 streamInfo->pp_config.rotation == ROTATE_270) {
859 dim.width = streamInfo->dim.height;
860 dim.height = streamInfo->dim.width;
864 switch (streamInfo->stream_type)
    [all...]
QCamera2HWICallbacks.cpp     [all...]
QCamera2HWI.cpp     [all...]
  /frameworks/av/services/camera/libcameraservice/api2/
CameraDeviceClient.cpp 497 OutputStreamInfo streamInfo;
511 res = createSurfaceFromGbp(streamInfo, isStreamInfoValid, surface, bufferProducer);
519 if (isShared && streamInfo.format != HAL_PIXEL_FORMAT_IMPLEMENTATION_DEFINED) {
533 err = mDevice->createStream(surfaces, deferredConsumer, streamInfo.width,
534 streamInfo.height, streamInfo.format, streamInfo.dataSpace,
541 mCameraIdStr.string(), streamInfo.width, streamInfo.height, streamInfo.format
    [all...]
  /frameworks/av/media/libstagefright/matroska/
MatroskaExtractor.cpp 1066 FLAC__StreamMetadata_StreamInfo streamInfo = flacDecoder->getStreamInfo();
1067 maxInputSize = streamInfo.max_framesize;
1071 if (streamInfo.max_blocksize != 0
1072 && streamInfo.channels != 0
1073 && ((streamInfo.bits_per_sample + 7) / 8) >
1074 INT32_MAX / streamInfo.max_blocksize / streamInfo.channels) {
1077 maxInputSize = ((streamInfo.bits_per_sample + 7) / 8)
1078 * streamInfo.max_blocksize * streamInfo.channels
    [all...]
  /hardware/qcom/camera/msm8998/QCamera2/HAL3/
QCamera3HWI.cpp     [all...]

Completed in 1142 milliseconds

1 2