Searched defs:start (Results 76 - 100 of 627) sorted by path

1234567891011>>

/frameworks/av/media/libstagefright/id3/
H A DID3.cpp812 static size_t StringSize(const uint8_t *start, uint8_t encoding) { argument
815 return strlen((const char *)start) + 1;
820 while (start[n] != '\0' || start[n + 1] != '\0') {
/frameworks/av/media/libstagefright/matroska/
H A DMatroskaExtractor.cpp127 virtual status_t start(MetaData *params);
255 status_t MatroskaSource::start(MetaData * /* params */) { function in class:android::MatroskaSource
756 // each 4-byte nal size with a 4-byte start code
/frameworks/av/media/libstagefright/mpeg2ts/
H A DAnotherPacketSource.cpp84 status_t AnotherPacketSource::start(MetaData * /* params */) { function in class:android::AnotherPacketSource
570 * (for AVC, if trim happens, the samples left will always start
H A DMPEG2PSExtractor.cpp47 virtual status_t start(MetaData *params);
78 virtual status_t start(MetaData *params);
287 ALOGV("Supposedly payload_unit_start=1 unit does not start "
637 status_t MPEG2PSExtractor::Track::start(MetaData *params) { function in class:android::MPEG2PSExtractor::Track
642 return mSource->start(params);
734 status_t MPEG2PSExtractor::WrappedTrack::start(MetaData *params) { function in class:android::MPEG2PSExtractor::WrappedTrack
735 return mTrack->start(params);
H A DMPEG2TSExtractor.cpp50 virtual status_t start(MetaData *params = NULL);
77 status_t MPEG2TSSource::start(MetaData *params) { function in class:android::MPEG2TSSource
78 return mImpl->start(params);
/frameworks/av/media/libstagefright/rtsp/
H A DAPacketSource.cpp130 size_t start = 0; local
132 ssize_t commaPos = val.find(",", start);
135 AString nalString(val, start, end - start);
162 start = commaPos + 1;
H A DARTPConnection.cpp121 unsigned start = (unsigned)((rand()* 1000ll)/RAND_MAX) + 15550; local
122 start &= ~1;
124 for (unsigned port = start; port < 65536; port += 2) {
H A DARTPWriter.cpp56 mLooper->start();
117 status_t ARTPWriter::start(MetaData * /* params */) { function in class:android::ARTPWriter
194 CHECK_EQ(mSource->start(), (status_t)OK);
781 // Signal start of talk-spurt.
H A DMyHandler.h148 mNetLooper->start(false /* runOnCallingThread */,
1461 size_t start = 0; local
1462 while (start < s.size()) {
1463 ssize_t offset = s.find(separator, start);
1466 items->push_back(AString(s, start, s.size() - start));
1470 items->push_back(AString(s, start, offset - start));
1471 start = offset + strlen(separator);
1829 // Time is now established, lets start timestampin
[all...]
H A DUDPPusher.cpp62 void UDPPusher::start() { function in class:android::UDPPusher
H A DVideoSource.h48 virtual status_t start(MetaData *params) { function in class:android::VideoSource
/frameworks/av/media/libstagefright/tests/
H A DDummyRecorder.cpp37 status_t DummyRecorder::start() { function in class:android::DummyRecorder
41 mSource->start();
/frameworks/av/media/libstagefright/webm/
H A DWebmFrameThread.cpp39 status_t WebmFrameThread::start() { function in class:android::WebmFrameThread
102 // list to hold child elements in a webm cluster (start timecode and
186 status_t WebmFrameSinkThread::start() { function in class:android::WebmFrameSinkThread
188 return WebmFrameThread::start();
268 * helps to align a/v start time at the beginning of a recording
272 * If client does not set the start time offset, we fall back to
284 status_t WebmFrameMediaSourceThread::start() { function in class:android::WebmFrameMediaSourceThread
287 status_t err = mSource->start(meta.get());
294 return WebmFrameThread::start();
H A DWebmWriter.cpp417 status_t WebmWriter::start(MetaData *params) { function in class:android::WebmWriter
518 // start threads
526 mStreams[kAudioIndex].mThread->start();
527 mStreams[kVideoIndex].mThread->start();
528 mSinkThread->start();
/frameworks/av/media/libstagefright/wifi-display/source/
H A DMediaPuller.cpp65 status_t MediaPuller::start() { function in class:android::MediaPuller
93 err = mSource->start(params.get());
95 err = mSource->start();
97 ALOGE("source failed to start w/ err %d", err);
H A DPlaybackSession.cpp76 status_t start();
192 status_t WifiDisplaySource::PlaybackSession::Track::start() { function in class:android::WifiDisplaySource::PlaybackSession::Track
193 ALOGV("Track::start isAudio=%d", mIsAudio);
200 err = mMediaPuller->start();
334 // We've never seen an output buffer queued, but tracks start
452 CHECK_EQ((status_t)OK, mTracks.editValueAt(i)->start());
926 pullLooper->start(
934 codecLooper->start(
H A DRepeaterSource.cpp49 status_t RepeaterSource::start(MetaData *params) { function in class:android::RepeaterSource
52 status_t err = mSource->start(params);
65 mLooper->start();
H A DTSPacketizer.cpp1026 uint32_t TSPacketizer::crc32(const uint8_t *start, size_t size) const { argument
1030 for (p = start; p < start + size; ++p) {
H A DWifiDisplaySource.cpp108 status_t WifiDisplaySource::start(const char *iface) { function in class:android::WifiDisplaySource
/frameworks/av/services/audioflinger/
H A DAudioResamplerFirGen.h467 int start = ((halfNumCoef)*L + 1); local
468 SineGen cc((start - L) * w, w, true); // cosine
469 SineGen cp(start * w, w, true); // cosine
510 * @param fstart is the normalized frequency start.
514 * @param steps is the number of steps to take (sampling) between frequency start and end
H A DEffects.cpp465 status_t AudioFlinger::EffectModule::start() function in class:android::AudioFlinger::EffectModule
H A DThreads.cpp1811 // If you change this calculation, also review the start threshold which is related.
2023 // abort if start is rejected by audio policy manager
3130 // for throttling. On thread start, previousLastWriteFinished will be
3185 // notify of throttle start on verbose log
3575 // start the fast mixer
3581 // create and start the watchdog
3816 "anticipated start");
3947 // it will then automatically call start() when data is available
4308 // it will then automatically call start() when data is available
4827 // it will then automatically call start() whe
6399 status_t AudioFlinger::RecordThread::start(RecordThread::RecordTrack* recordTrack, function in class:android::AudioFlinger::RecordThread
[all...]
H A DTracks.cpp291 status_t AudioFlinger::TrackHandle::start() { function in class:android::AudioFlinger::TrackHandle
292 return mTrack->start();
400 // race with setSyncEvent(). However, if we call it, we cannot properly start
629 status_t AudioFlinger::PlaybackThread::Track::start(AudioSystem::sync_event_t event __unused, function in class:android::AudioFlinger::PlaybackThread::Track
633 ALOGV("start(%d), calling pid %d session %d",
677 // refresh fast track underruns on start because that field is never cleared
678 // by the fast mixer; furthermore, the same track can be recycled, i.e. start
685 // restore previous state if start was rejected by policy manager
913 effect->start();
1167 status_t AudioFlinger::PlaybackThread::OutputTrack::start(AudioSyste function in class:android::AudioFlinger::PlaybackThread::OutputTrack
1353 status_t AudioFlinger::PlaybackThread::PatchTrack::start(AudioSystem::sync_event_t event, function in class:android::AudioFlinger::PlaybackThread::PatchTrack
1437 status_t AudioFlinger::RecordHandle::start(int /*AudioSystem::sync_event_t*/ event, function in class:android::AudioFlinger::RecordHandle
1545 status_t AudioFlinger::RecordThread::RecordTrack::start(AudioSystem::sync_event_t event, function in class:android::AudioFlinger::RecordThread::RecordTrack
[all...]
H A Dtest-resample.cpp346 timespec start, end; local
347 clock_gettime(CLOCK_MONOTONIC, &start);
355 int64_t start_ns = start.tv_sec * 1000000000LL + start.tv_nsec;
366 clock_gettime(CLOCK_MONOTONIC, &start);
371 start_ns = start.tv_sec * 1000000000LL + start.tv_nsec;
407 timespec start, end; local
411 clock_gettime(CLOCK_MONOTONIC, &start);
417 int64_t start_ns = start
[all...]
/frameworks/av/services/audioflinger/tests/
H A Dresampler_tests.cpp149 double signalEnergy(T *start, T *end, unsigned stride) argument
153 for (T *p = start; p < end; p += stride) {
156 unsigned count = (end - start + stride - 1) / stride;

Completed in 251 milliseconds

1234567891011>>