Searched refs:track (Results 26 - 43 of 43) sorted by relevance

12

/frameworks/av/media/libstagefright/codecs/amrwbenc/src/asm/ARMV5E/
H A Dcor_h_vec_opt.s19 @ Word16 track, /* (i) track to use */
27 @r2 ---- track
41 ADD r7, r4, r2, LSL #5 @r7 --- p0 = rrixix[track]
/frameworks/av/media/libstagefright/codecs/amrwbenc/src/asm/ARMV7/
H A Dcor_h_vec_neon.s20 @ Word16 track, /* (i) track to use */
28 @r2 ---- track
41 ADD r7, r4, r2, LSL #5 @r7 --- p0 = rrixix[track]
/frameworks/av/media/libstagefright/rtsp/
H A DASessionDescription.cpp186 const Attribs &track = mTracks.itemAt(index); local
187 ssize_t i = track.indexOfKey(AString(key));
193 *value = track.valueAt(i);
/frameworks/av/media/libstagefright/matroska/
H A DMatroskaExtractor.cpp381 ALOGV("Video track located at %d", index);
386 // Always *search* based on the video track, but finalize based on mTrackNum
391 ALOGE("Did not locate the video track for seeking");
792 const mkvparser::Track *track = tracks->GetTrackByIndex(index); local
794 if (track == NULL) {
800 const char *const codecID = track->GetCodecId();
802 ALOGV("codec name = %s", track->GetCodecNameAsUTF8());
806 track->GetCodecPrivate(codecPrivateSize);
812 switch (track->GetType()) {
816 static_cast<const mkvparser::VideoTrack *>(track);
[all...]
/frameworks/base/core/jni/
H A Dandroid_media_AudioTrack.cpp511 jint writeToTrack(const sp<AudioTrack>& track, jint audioFormat, jbyte* data, argument
516 if (track->sharedBuffer() == 0) {
517 written = track->write(data + offsetInBytes, sizeInBytes);
521 if ((size_t)sizeInBytes > track->sharedBuffer()->size()) {
522 sizeInBytes = track->sharedBuffer()->size();
524 memcpy(track->sharedBuffer()->pointer(), data + offsetInBytes, sizeInBytes);
531 if (((size_t)sizeInBytes)*2 > track->sharedBuffer()->size()) {
532 sizeInBytes = track->sharedBuffer()->size() / 2;
535 int16_t *dst = (int16_t *)track->sharedBuffer()->pointer();
/frameworks/base/voip/jni/rtp/
H A DAudioGroup.cpp808 AudioTrack track; local
810 if (track.set(AUDIO_STREAM_VOICE_CALL, sampleRate, AUDIO_FORMAT_PCM_16_BIT,
817 ALOGD("latency: output %d, input %d", track.latency(), record.latency());
851 (track.latency() + record.latency()) * sampleRate / 1000);
861 track.start();
879 status_t status = track.obtainBuffer(&buffer, 1);
884 track.releaseBuffer(&buffer);
/frameworks/base/core/java/com/google/android/util/
H A DAbstractMessageParser.java66 /** Music note that indicates user is listening to a music track. */
129 // Look for music track (of which there would be only one and it'll be the
252 * Looks for a music track (\u266B is first character, everything else is
253 * track info).
497 // Keeps track of whether we've seen a character (in map if we've seen it)
768 /** Represents a music track token at the beginning. */
770 private String track; field in class:AbstractMessageParser.MusicTrack
772 public MusicTrack(String track) { argument
773 super(Type.MUSIC, track);
774 this.track
[all...]
/frameworks/av/media/libstagefright/mpeg2ts/
H A DMPEG2PSExtractor.cpp74 WrappedTrack(const sp<MPEG2PSExtractor> &extractor, const sp<Track> &track);
669 const sp<MPEG2PSExtractor> &extractor, const sp<Track> &track)
671 mTrack(track) {
668 WrappedTrack( const sp<MPEG2PSExtractor> &extractor, const sp<Track> &track) argument
/frameworks/av/services/audioflinger/
H A DAudioFlinger.h426 // Return a pointer to the start of a contiguous slice of the track buffer.
428 // monotonically increasing frame units relative to the track epoch.
461 void* mBuffer; // start of track buffer, typically in shared memory
602 // track
768 MIXER_TRACKS_ENABLED, // at least one active track, but no track has any data ready
769 MIXER_TRACKS_READY // at least one active track, and at least one track has data
774 // playback track
871 int mName; // track nam
[all...]
/frameworks/native/libs/utils/
H A DRefBase.cpp178 void trackMe(bool track, bool retain) argument
180 mTrackEnabled = track;
/frameworks/base/media/java/android/media/
H A DJetPlayer.java86 private static final int JET_EVENT_TRACK_MASK = 0x00fc0000; // mask for track number
90 private static final int JET_EVENT_TRACK_SHIFT = 18; // shift to get track ID to bit 0
271 * affects track 0, bit 1 affects track 1 etc.
277 * track including trigger clips and mute flags.
299 * playback. The value at index 0 affects track 0, value at index 1 affects track 1 etc.
306 * track including trigger clips and mute flags.
322 * @param muteFlags a bitmask to specify which MIDI tracks are muted. Bit 0 affects track 0,
323 * bit 1 affects track
506 onJetEvent(JetPlayer player, short segment, byte track, byte channel, byte controller, byte value) argument
[all...]
/frameworks/av/media/libmedia/
H A DIAudioFlinger.cpp101 sp<IAudioTrack> track; local
127 track = interface_cast<IAudioTrack>(reply.readStrongBinder());
132 return track;
733 sp<IAudioTrack> track = createTrack(pid, local
738 reply->writeStrongBinder(track->asBinder());
H A DAudioTrack.cpp771 // Client decides whether the track is TIMED (see below), but can only express a preference
879 sp<IAudioTrack> track = audioFlinger->createTrack(getpid(), local
892 if (track == 0) {
893 ALOGE("AudioFlinger could not create track, status: %d", status);
896 sp<IMemory> cblk = track->getCblk();
901 mAudioTrack = track;
1061 // restart track if it was disabled by audioflinger due to previous underrun
1064 ALOGW("releaseBuffer() track %p name=%#x disabled, restarting", this, mCblk->mName);
1145 // If the track is not invalid already, try to allocate a buffer. alloc
1146 // fails indicating that the server is dead, flag the track a
[all...]
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/functional/audio/
H A DMediaAudioEffectTest.java400 AudioTrack track = new AudioTrack(
409 assertNotNull(msg + ": could not create AudioTrack", track);
415 track.attachAuxEffect(effect.getId());
416 track.setAuxEffectSendLevel(1.0f);
419 track.release();
/frameworks/av/media/libstagefright/
H A DMPEG4Writer.cpp264 // Update the audio track's drift information.
285 // Determine the track time scale
286 // If it is an audio track, try to use the sampling rate as
412 snprintf(buffer, SIZE, " %s track\n", mIsAudio? "Audio": "Video");
431 Track *track = new Track(this, source, 1 + mTracks.size()); local
432 mTracks.push_back(track);
1216 ALOGI("Earliest track starting time: %lld", mStartTimestampUs);
1337 // Use the sampling rate as the default time scale for audio track.
1417 ALOGV("Receive request to track progress status for every %lld us", timeUs);
1447 CHECK(!"Received a chunk for a unknown track");
1493 Track *track = NULL; local
1698 Track *track = static_cast<Track *>(me); local
[all...]
/frameworks/base/core/java/android/widget/
H A DSwitch.java373 * Set the drawable used for the track that the switch slides within.
375 * @param track Track drawable
379 public void setTrackDrawable(Drawable track) { argument
380 mTrackDrawable = track;
385 * Set the drawable used for the track that the switch slides within.
387 * @param resId Resource ID of a track drawable
396 * Get the drawable used for the track that the switch slides within.
408 * can physically touch and drag along the track.
421 * can physically touch and drag along the track.
433 * can physically touch and drag along the track
[all...]
/frameworks/wilhelm/include/SLES/
H A DOpenSLES.h2031 SLuint16 track
2041 SLuint16 track
2107 SLuint16 track,
2112 SLuint16 track,
2117 SLuint16 track,
2122 SLuint16 track,
/frameworks/base/core/java/android/view/
H A DView.java536 * scroll their content. This includes keeping track of the X and Y scroll
2164 * Flag indicating that view has a transform animation set on it. This is used to track whether
2171 * Flag indicating that view has an alpha animation set on it. This is used to track whether an
3965 Drawable track = a.getDrawable(R.styleable.View_scrollbarTrackHorizontal);
3966 scrollabilityCache.scrollBar.setHorizontalTrackDrawable(track);
3979 track = a.getDrawable(R.styleable.View_scrollbarTrackVertical);
3980 scrollabilityCache.scrollBar.setVerticalTrackDrawable(track);
3995 if (track != null) {
3996 track.setLayoutDirection(layoutDirection);
7949 * Generic motion events describe joystick movements, mouse hovers, track pa
[all...]

Completed in 2122 milliseconds

12