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

  /external/aac/libAACdec/src/
aacdecoder_lib.cpp 148 /* Initialize AAC core decoder, and update self->streaminfo */
611 self->streamInfo.numLostAccessUnits = 0;
612 self->streamInfo.numBadBytes = 0;
613 self->streamInfo.numTotalBytes = 0;
801 self->streamInfo.numLostAccessUnits = 0;
821 self->streamInfo.numLostAccessUnits = aacDecoder_EstimateNumberOfLostFrames(self);
837 if (self->streamInfo.numLostAccessUnits > 0) {
838 self->streamInfo.numLostAccessUnits--;
857 self->streamInfo.numLostAccessUnits = 0;
858 self->streamInfo.numBadBytes = 0
    [all...]
aacdecoder.cpp 185 if ( (IS_LOWDELAY(self->streamInfo.aot) && (self->flags & AC_MPS_PRESENT))
186 || ( (self->streamInfo.aacNumChannels == 1)
187 && ( (CAN_DO_PS(self->streamInfo.aot) && !(self->flags & AC_MPS_PRESENT))
188 || ( IS_USAC(self->streamInfo.aot) && (self->flags & AC_MPS_PRESENT)) ) ) )
199 self->psPossible = ((CAN_DO_PS(self->streamInfo.aot) && self->streamInfo.aacNumChannels == 1 && ! (self->flags & AC_MPS_PRESENT))) && self->qmfModeCurr == MODE_HQ ;
537 self->streamInfo.aacSampleRate,
538 self->streamInfo.extSamplingRate,
539 self->streamInfo.aacSamplesPerFrame,
540 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) */
319 /* get streaminfo handle from decoder */
  /device/asus/flo/camera/QCamera2/HAL/
QCameraChannel.cpp 625 cam_stream_info_t *streamInfo = NULL;
645 streamInfo = (cam_stream_info_t *)pStreamInfoBuf->getPtr(0);
646 memset(streamInfo, 0, sizeof(cam_stream_info_t));
647 streamInfo->stream_type = CAM_STREAM_TYPE_OFFLINE_PROC;
648 rc = pStream->getFormat(streamInfo->fmt);
649 rc = pStream->getFrameDimension(streamInfo->dim);
650 streamInfo->streaming_mode = CAM_STREAMING_MODE_BURST;
651 streamInfo->num_of_burst = minStreamBufNum;
653 streamInfo->reprocess_config.pp_type = CAM_ONLINE_REPROCESS_TYPE;
654 streamInfo->reprocess_config.online.input_stream_id = pStream->getMyServerID()
    [all...]
QCamera2HWI.cpp     [all...]
  /device/lge/hammerhead/camera/QCamera2/HAL/
QCameraChannel.cpp 625 cam_stream_info_t *streamInfo = NULL;
645 streamInfo = (cam_stream_info_t *)pStreamInfoBuf->getPtr(0);
646 memset(streamInfo, 0, sizeof(cam_stream_info_t));
647 streamInfo->stream_type = CAM_STREAM_TYPE_OFFLINE_PROC;
648 rc = pStream->getFormat(streamInfo->fmt);
649 rc = pStream->getFrameDimension(streamInfo->dim);
650 streamInfo->streaming_mode = CAM_STREAMING_MODE_BURST;
651 streamInfo->num_of_burst = minStreamBufNum;
653 streamInfo->reprocess_config.pp_type = CAM_ONLINE_REPROCESS_TYPE;
654 streamInfo->reprocess_config.online.input_stream_id = pStream->getMyServerID()
    [all...]
QCamera2HWI.cpp     [all...]
  /device/moto/shamu/camera/QCamera2/HAL/
QCameraChannel.cpp 793 cam_stream_info_t *streamInfo = NULL;
851 streamInfo = (cam_stream_info_t *)pStreamInfoBuf->getPtr(0);
852 memset(streamInfo, 0, sizeof(cam_stream_info_t));
853 streamInfo->stream_type = CAM_STREAM_TYPE_OFFLINE_PROC;
854 rc = pStream->getFormat(streamInfo->fmt);
855 rc = pStream->getFrameDimension(streamInfo->dim);
857 streamInfo->streaming_mode = CAM_STREAMING_MODE_CONTINUOUS;
858 streamInfo->num_of_burst = 0;
860 streamInfo->streaming_mode = CAM_STREAMING_MODE_BURST;
861 streamInfo->num_of_burst = burstNum
    [all...]
QCameraStream.cpp 458 * @streamInfo : stream information
464 int32_t QCameraStream::calcOffset(cam_stream_info_t *streamInfo)
468 cam_dimension_t dim = streamInfo->dim;
469 if (streamInfo->pp_config.feature_mask & CAM_QCOM_FEATURE_ROTATION &&
470 streamInfo->stream_type != CAM_STREAM_TYPE_VIDEO) {
471 if (streamInfo->pp_config.rotation == ROTATE_90 ||
472 streamInfo->pp_config.rotation == ROTATE_270) {
474 dim.width = streamInfo->dim.height;
475 dim.height = streamInfo->dim.width;
479 switch (streamInfo->stream_type)
    [all...]
QCamera2HWI.cpp     [all...]
QCameraStream.h 181 int32_t calcOffset(cam_stream_info_t *streamInfo);
  /frameworks/wilhelm/src/itf/
IStreamInformation.c 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/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...]
  /hardware/ti/omap3/omx/audio/src/openmax_il/g722_enc/src/
OMX_G722Encoder.c     [all...]
  /hardware/ti/omap3/omx/audio/src/openmax_il/wma_dec/src/
OMX_WmaDecoder.c     [all...]
  /hardware/ti/omap3/omx/audio/src/openmax_il/g726_enc/src/
OMX_G726Encoder.c     [all...]
  /hardware/ti/omap3/omx/audio/src/openmax_il/wbamr_dec/src/
OMX_WbAmrDecoder.c     [all...]
  /hardware/ti/omap3/omx/audio/src/openmax_il/aac_enc/src/
OMX_AacEncoder.c     [all...]
  /hardware/ti/omap3/omx/audio/src/openmax_il/wbamr_enc/src/
OMX_WbAmrEncoder.c     [all...]
  /hardware/ti/omap3/omx/audio/src/openmax_il/aac_dec/src/
OMX_AacDecoder.c     [all...]
  /hardware/ti/omap3/omx/audio/src/openmax_il/mp3_dec/src/
OMX_Mp3Decoder.c     [all...]
  /hardware/ti/omap3/omx/audio/src/openmax_il/nbamr_dec/src/
OMX_AmrDecoder.c     [all...]
  /hardware/ti/omap3/omx/audio/src/openmax_il/nbamr_enc/src/
OMX_AmrEncoder.c     [all...]

Completed in 3063 milliseconds