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

1 2

  /device/huawei/angler/camera/QCamera2/HAL/
QCameraAllocator.h 49 virtual QCameraHeapMemory *allocateMiscBuf(cam_stream_info_t *streamInfo) = 0;
50 virtual QCameraMemory *allocateStreamUserBuf(cam_stream_info_t *streamInfo) = 0;
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...]
QCamera2HWI.cpp     [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...]
QCameraStream.h 202 int32_t calcOffset(cam_stream_info_t *streamInfo);
  /device/lge/bullhead/camera/QCamera2/HAL/
QCameraAllocator.h 49 virtual QCameraHeapMemory *allocateMiscBuf(cam_stream_info_t *streamInfo) = 0;
50 virtual QCameraMemory *allocateStreamUserBuf(cam_stream_info_t *streamInfo) = 0;
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...]
QCamera2HWI.cpp     [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...]
  /device/google/marlin/camera/QCamera2/HAL/
QCameraAllocator.h 54 virtual QCameraHeapMemory *allocateMiscBuf(cam_stream_info_t *streamInfo) = 0;
55 virtual QCameraMemory *allocateStreamUserBuf(cam_stream_info_t *streamInfo) = 0;
QCameraChannel.cpp 969 cam_stream_info_t *streamInfo = NULL;
    [all...]
QCameraStream.cpp 771 * @streamInfo : stream information
777 int32_t QCameraStream::calcOffset(cam_stream_info_t *streamInfo)
781 cam_dimension_t dim = streamInfo->dim;
782 if (streamInfo->pp_config.feature_mask & CAM_QCOM_FEATURE_ROTATION &&
783 streamInfo->stream_type != CAM_STREAM_TYPE_VIDEO) {
784 if (streamInfo->pp_config.rotation == ROTATE_90 ||
785 streamInfo->pp_config.rotation == ROTATE_270) {
787 dim.width = streamInfo->dim.height;
788 dim.height = streamInfo->dim.width;
792 switch (streamInfo->stream_type)
    [all...]
QCamera2HWI.cpp     [all...]
QCameraStream.h 247 int32_t calcOffset(cam_stream_info_t *streamInfo);
  /external/aac/libAACdec/src/
aacdecoder_lib.cpp 153 /* Initialize AAC core decoder, and update self->streaminfo */
617 self->streamInfo.numLostAccessUnits = 0;
618 self->streamInfo.numBadBytes = 0;
619 self->streamInfo.numTotalBytes = 0;
805 self->streamInfo.numLostAccessUnits = 0;
825 self->streamInfo.numLostAccessUnits = aacDecoder_EstimateNumberOfLostFrames(self);
841 if (self->streamInfo.numLostAccessUnits > 0) {
842 self->streamInfo.numLostAccessUnits--;
861 self->streamInfo.numLostAccessUnits = 0;
862 self->streamInfo.numBadBytes = 0
    [all...]
aacdecoder.cpp 171 if ( (IS_LOWDELAY(self->streamInfo.aot) && (self->flags & AC_MPS_PRESENT))
172 || ( (self->streamInfo.aacNumChannels == 1)
173 && ( (CAN_DO_PS(self->streamInfo.aot) && !(self->flags & AC_MPS_PRESENT))
174 || ( IS_USAC(self->streamInfo.aot) && (self->flags & AC_MPS_PRESENT)) ) ) )
185 self->psPossible = ((CAN_DO_PS(self->streamInfo.aot) && self->streamInfo.aacNumChannels == 1 && ! (self->flags & AC_MPS_PRESENT))) && self->qmfModeCurr == MODE_HQ ;
523 self->streamInfo.aacSampleRate,
524 self->streamInfo.extSamplingRate,
525 self->streamInfo.aacSamplesPerFrame,
526 self->streamInfo.aot
    [all...]
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 */
  /frameworks/wilhelm/src/itf/
IStreamInformation.cpp 115 const StreamInfo& streamInfo = thiz->mStreamInfoTable.itemAt((size_t)streamIndex);
117 switch (streamInfo.domain) {
119 *(XAMediaContainerInformation *)info = streamInfo.containerInfo;
122 *(XAAudioStreamInformation *)info = streamInfo.audioInfo;
125 *(XAVideoStreamInformation *)info = streamInfo.videoInfo;
128 *(XAImageStreamInformation *)info = streamInfo.imageInfo;
131 *(XATimedTextStreamInformation *)info = streamInfo.textInfo;
134 *(XAMIDIStreamInformation *)info = streamInfo.midiInfo;
137 *(XAVendorStreamInformation *)info = streamInfo.vendorInfo
    [all...]
  /frameworks/av/services/camera/libcameraservice/device3/
Camera3BufferManager.cpp 39 const StreamInfo& streamInfo) {
42 int streamId = streamInfo.streamId;
43 int streamSetId = streamInfo.streamSetId;
50 if (streamInfo.totalBufferCount > kMaxBufferCount || streamInfo.totalBufferCount == 0) {
52 __FUNCTION__, streamId, streamSetId, streamInfo.totalBufferCount);
55 if (!streamInfo.isConfigured) {
78 mStreamSetMap[i].streamInfoMap[streamIdx].streamSetId != streamInfo.streamSetId) {
102 currentStreamSet.streamInfoMap.add(streamId, streamInfo);
    [all...]
Camera3BufferManager.h 31 struct StreamInfo;
85 status_t registerStream(wp<Camera3OutputStream>& stream, const StreamInfo &streamInfo);
225 typedef KeyedVector<StreamId, StreamInfo> InfoMap;
  /external/lzma/CPP/Windows/
FileFind.h 106 bool FindFirst(CFSTR filePath, CStreamInfo &streamInfo);
107 bool FindNext(CStreamInfo &streamInfo);
118 bool Next(CStreamInfo &streamInfo, bool &found);
  /frameworks/av/services/camera/libcameraservice/api2/
CameraDeviceClient.cpp 495 OutputStreamInfo streamInfo;
509 res = createSurfaceFromGbp(streamInfo, isStreamInfoValid, surface, bufferProducer);
517 if (isShared && streamInfo.format != HAL_PIXEL_FORMAT_IMPLEMENTATION_DEFINED) {
531 err = mDevice->createStream(surfaces, deferredConsumer, streamInfo.width,
532 streamInfo.height, streamInfo.format, streamInfo.dataSpace,
539 mCameraIdStr.string(), streamInfo.width, streamInfo.height, streamInfo.format
    [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...]

Completed in 280 milliseconds

1 2