HomeSort by relevance Sort by last modified time
    Searched full:streaminfo (Results 1 - 25 of 61) sorted by null

1 2 3

  /frameworks/av/media/libstagefright/rtsp/
ARTPConnection.h 69 struct StreamInfo;
70 List<StreamInfo> mStreams;
81 status_t receive(StreamInfo *info, bool receiveRTP);
83 status_t parseRTP(StreamInfo *info, const sp<ABuffer> &buffer);
84 status_t parseRTCP(StreamInfo *info, const sp<ABuffer> &buffer);
85 status_t parseSR(StreamInfo *info, const uint8_t *data, size_t size);
86 status_t parseBYE(StreamInfo *info, const uint8_t *data, size_t size);
88 sp<ARTPSource> findSource(StreamInfo *info, uint32_t id);
ARTPConnection.cpp 55 struct ARTPConnection::StreamInfo {
183 mStreams.push_back(StreamInfo());
184 StreamInfo *info = &*--mStreams.end();
218 List<StreamInfo>::iterator it = mStreams.begin();
257 for (List<StreamInfo>::iterator it = mStreams.begin();
281 List<StreamInfo>::iterator it = mStreams.begin();
312 List<StreamInfo>::iterator it = mStreams.begin();
314 StreamInfo *s = &*it;
373 status_t ARTPConnection::receive(StreamInfo *s, bool receiveRTP) {
413 status_t ARTPConnection::parseRTP(StreamInfo *s, const sp<ABuffer> &buffer)
    [all...]
  /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...]
  /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 */
  /external/chromium_org/chrome/common/extensions/api/
streams_private.idl 7 dictionary StreamInfo {
52 static void onExecuteMimeTypeHandler(StreamInfo streamInfo);
media_galleries.idl 119 dictionary StreamInfo {
167 StreamInfo[] rawTags;
  /external/chromium_org/media/base/
audio_video_metadata_extractor.cc 55 AudioVideoMetadataExtractor::StreamInfo::StreamInfo() {}
57 AudioVideoMetadataExtractor::StreamInfo::~StreamInfo() {}
96 stream_infos_.push_back(StreamInfo());
97 StreamInfo& container_info = stream_infos_.back();
102 stream_infos_.push_back(StreamInfo());
103 StreamInfo& info = stream_infos_.back();
222 const std::vector<AudioVideoMetadataExtractor::StreamInfo>&
audio_video_metadata_extractor.h 27 struct StreamInfo {
28 StreamInfo();
29 ~StreamInfo();
34 typedef std::vector<StreamInfo> StreamInfoVector;
  /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...]
  /frameworks/av/include/camera/
ProCamera.h 281 struct StreamInfo
283 StreamInfo(int streamId) {
289 StreamInfo() {
306 KeyedVector<int, StreamInfo> mStreams;
312 StreamInfo& getStreamInfo(int streamId);
  /external/flac/libFLAC/include/protected/
stream_decoder.h 47 FLAC__bool md5_checking; /* if true, generate MD5 signature of decoded data and compare against signature in the STREAMINFO metadata block */
  /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...]
  /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...]
  /frameworks/av/camera/
ProCamera.cpp 219 StreamInfo s(*streamId);
318 StreamInfo& stream = getStreamInfo(streamId);
336 StreamInfo& si = getStreamInfo(streamId);
365 StreamInfo& si = getStreamInfo(streamId);
432 ProCamera::StreamInfo& ProCamera::getStreamInfo(int streamId) {
  /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...]
  /external/flac/libFLAC/
ogg_encoder_aspect.c 93 * - 'fLaC' magic and STREAMINFO block get combined into the first
121 * wait until we get the STREAMINFO and prepend it in that packet
169 /* add STREAMINFO */
stream_encoder.c 364 FLAC__StreamMetadata streaminfo; /* scratchpad for STREAMINFO as it is built */ member in struct:FLAC__StreamEncoderPrivate
    [all...]
  /frameworks/wilhelm/src/
data.h 114 } StreamInfo;
  /external/chromium_org/chrome/utility/media_galleries/
media_metadata_parser.cc 87 linked_ptr<MediaGalleries::StreamInfo> stream_info(
88 new MediaGalleries::StreamInfo);
  /external/flac/include/FLAC/
stream_decoder.h 161 * in the STREAMINFO block. MD5 checking is automatically turned off
163 * in the STREAMINFO block or when a seek is attempted.
167 * the STREAMINFO block. These functions allow you to tell the decoder
179 * STREAMINFO and SEEKTABLE blocks are always parsed and used internally, but
690 * \c STREAMINFO block, followed by zero or more other metadata blocks.
698 * \c STREAMINFO block; you can instruct the decoder to pass or filter
    [all...]
metadata.h 71 * Read-only access to the STREAMINFO, VORBIS_COMMENT, CUESHEET, and
133 * STREAMINFO, VORBIS_COMMENT, CUESHEET, and PICTURE blocks, requiring
141 /** Read the STREAMINFO metadata block of the given FLAC file. This function
145 * \param streaminfo A pointer to space for the STREAMINFO block. Since
151 * \code streaminfo != NULL \endcode
153 * \c true if a valid STREAMINFO block was read from \a filename. Returns
155 * or the file contained no STREAMINFO block. (A memory allocation error
158 FLAC_API FLAC__bool FLAC__metadata_get_streaminfo(const char *filename, FLAC__StreamMetadata *streaminfo);
554 * Existing block is a STREAMINFO block and the new block is
    [all...]
stream_encoder.h 213 * beginning of the stream, to the STREAMINFO block, to write some data
641 * once at the end of encoding with the populated STREAMINFO structure. This
643 * STREAMINFO block with the correct statistics after encoding (like
650 * \param metadata The final populated STREAMINFO block.
    [all...]
  /external/chromium_org/chrome/browser/extensions/api/streams_private/
streams_private_api.cc 67 streams_private::StreamInfo info;

Completed in 906 milliseconds

1 2 3