HomeSort by relevance Sort by last modified time
    Searched full:track (Results 101 - 125 of 3692) sorted by null

1 2 3 45 6 7 8 91011>>

  /frameworks/wilhelm/src/objects/
CAudioPlayer.c 79 // Safe to proceed immediately if a track has not yet been assigned
80 Track *track = thiz->mTrack; local
81 if (NULL == track) {
84 CAudioPlayer *audioPlayer = track->mAudioPlayer;
89 // Request the mixer thread to unlink this audio player's track
  /external/quake/quake/src/QW/client/
cd_linux.c 96 void CDAudio_Play(byte track, qboolean looping)
111 track = remap[track];
113 if (track < 1 || track > maxTrack)
115 Con_DPrintf("CDAudio: Bad track number %u.\n", track);
119 // don't try to play a non-audio track
120 entry.cdte_track = track;
129 Con_Printf("CDAudio: track %i is not audio\n", track)
    [all...]
  /external/quake/quake/src/WinQuake/
cd_linux.cpp 96 void CDAudio_Play(byte track, qboolean looping)
111 track = remap[track];
113 if (track < 1 || track > maxTrack)
115 Con_DPrintf("CDAudio: Bad track number %u.\n", track);
119 // don't try to play a non-audio track
120 entry.cdte_track = track;
129 Con_Printf("CDAudio: track %i is not audio\n", track)
    [all...]
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/tracks/
ChangeTimeScaleTrack.java 19 import com.googlecode.mp4parser.authoring.Track;
31 * Changes the timescale of a track by wrapping the track.
33 public class ChangeTimeScaleTrack implements Track {
36 Track source;
42 * Changes the time scale of the source track to the target time scale and makes sure
45 * @param source the source track
46 * @param targetTimeScale the resulting time scale of this track.
49 public ChangeTimeScaleTrack(Track source, long targetTimeScale, long[] syncSamples) {
57 private static long[] getTimes(Track track, long[] syncSamples, long targetTimeScale)
    [all...]
SilenceTrackImpl.java 5 import com.googlecode.mp4parser.authoring.Track;
16 public class SilenceTrackImpl implements Track {
17 Track source;
22 public SilenceTrackImpl(Track ofType, long ms) {
  /external/skia/legacy/src/animator/
SkScriptRuntime.h 39 void track(SkOpArray* array);
40 void track(SkString* string);
  /external/skia/src/animator/
SkScriptRuntime.h 39 void track(SkOpArray* array);
40 void track(SkString* string);
  /frameworks/av/media/libstagefright/wifi-display/source/
TSPacketizer.cpp 35 struct TSPacketizer::Track : public RefBase {
36 Track(const sp<AMessage> &format,
64 virtual ~Track();
83 DISALLOW_EVIL_CONSTRUCTORS(Track);
86 TSPacketizer::Track::Track(
100 void TSPacketizer::Track::extractCSDIfNecessary() {
127 TSPacketizer::Track::~Track() {
130 unsigned TSPacketizer::Track::PID() const
410 const sp<Track> &track = mTracks.itemAt(i); local
426 sp<Track> track = new Track(format, PID, streamType, streamID); local
435 const sp<Track> &track = mTracks.itemAt(trackIndex); local
459 const sp<Track> &track = mTracks.itemAt(trackIndex); local
773 const sp<Track> &track = mTracks.itemAt(i); local
1029 const sp<Track> &track = mTracks.itemAt(trackIndex); local
    [all...]
  /external/chromium/chrome/common/extensions/docs/examples/tutorials/analytics/
manifest.json 4 "description": "A sample extension which uses Google Analytics to track usage.",
  /external/llvm/cmake/modules/
AddLLVMDefinitions.cmake 1 # There is no clear way of keeping track of compiler command-line
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/srt/
SrtParser.java 26 * Parses a .srt file and creates a Track for it.
31 TextTrackImpl track = new TextTrackImpl(); local
44 track.getSubs().add(new TextTrackImpl.Line(startTime, endTime, lineString));
47 return track;
  /external/valgrind/main/docs/internals/
3_5_BUGSTATUS.txt 3 merely to keep track of stuff that we currently can't/don't in
  /external/webkit/Source/WebCore/platform/graphics/win/
QTTrack.h 45 typedef struct TrackType** Track;
49 static PassRefPtr<QTTrack> create(Track);
59 Track getTrackHandle() const;
61 QTTrack(Track);
  /frameworks/av/services/audioflinger/
AudioMixer.cpp 76 ALOGE("DownmixerBufferProvider::getNextBuffer() error: NULL track buffer provider");
86 ALOGE("DownmixerBufferProvider::releaseBuffer() error: NULL track buffer provider");
109 // AudioMixer is not yet capable of more than 32 active track inputs
183 ALOGV("add track (%d)", n);
185 // assume default parameters for the track, except where noted below
214 // setParameter(name, TRACK, MAIN_BUFFER, mixBuffer) is required before enable(name)
223 ALOGE("AudioMixer::getTrackName(0x%x) failed, error preparing track for downmix",
245 ALOGV("initTrackDownmix(track=%d, mask=0x%x) calls prepareTrackForDownmix()",
258 // this track had previously been configured with a downmixer, delete it
291 // channel input configuration will be overridden per-track
395 track_t& track = mState.tracks[name]; local
408 track_t& track = mState.tracks[name]; local
421 track_t& track = mState.tracks[name]; local
    [all...]
  /external/chromium/chrome/browser/sync/protocol/
encryption.proto 21 // The reason we need to keep track of the key name is that a sync user can
26 // keep track of all keys, assign each key a name (by using that key to encrypt
27 // a well known string) and keep track of which key was used to encrypt each
  /external/qemu/distrib/sdl-1.2.15/include/
SDL_cdrom.h 50 /** @name Track Types
51 * The types of CD-ROM track possible
71 Uint8 id; /**< Track number */
72 Uint8 type; /**< Data or audio track */
74 Uint32 length; /**< Length, in frames, of this track */
86 int cur_track; /**< Current track position */
87 int cur_frame; /**< Current frame offset within current track */
88 SDL_CDtrack track[SDL_MAX_TRACKS+1]; member in struct:SDL_CD
146 * get track information about the CD.
152 * // Play last track
    [all...]
  /external/qemu/hw/
cdrom.c 54 *q++ = 1; /* track number */
66 /* lead out track */
69 *q++ = 0xaa; /* track number */
95 *q++ = 0x14; /* data track */
96 *q++ = 0; /* track number */
102 *q++ = 1; /* first track */
107 *q++ = 0x14; /* data track */
108 *q++ = 0; /* track number */
114 *q++ = 1; /* last track */
119 *q++ = 0x14; /* data track */
    [all...]
  /frameworks/av/media/libmediaplayerservice/nuplayer/
GenericSource.h 62 struct Track {
67 Track mAudioTrack;
68 Track mVideoTrack;
  /frameworks/av/media/libstagefright/include/
MPEG2PSExtractor.h 30 struct Track;
48 struct Track;
57 KeyedVector<unsigned, sp<Track> > mTracks;
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/state/
StatePanel.java 31 private StatePanelTrack track; field in class:StatePanel
40 track = (StatePanelTrack) panel;
41 track.setAdapter(MasterImage.getImage().getState());
  /prebuilts/tools/darwin-x86/sdl/include/SDL/
SDL_cdrom.h 50 /** @name Track Types
51 * The types of CD-ROM track possible
71 Uint8 id; /**< Track number */
72 Uint8 type; /**< Data or audio track */
74 Uint32 length; /**< Length, in frames, of this track */
86 int cur_track; /**< Current track position */
87 int cur_frame; /**< Current frame offset within current track */
88 SDL_CDtrack track[SDL_MAX_TRACKS+1]; member in struct:SDL_CD
146 * get track information about the CD.
152 * // Play last track
    [all...]
  /prebuilts/tools/linux-x86/sdl/include/SDL/
SDL_cdrom.h 50 /** @name Track Types
51 * The types of CD-ROM track possible
71 Uint8 id; /**< Track number */
72 Uint8 type; /**< Data or audio track */
74 Uint32 length; /**< Length, in frames, of this track */
86 int cur_track; /**< Current track position */
87 int cur_frame; /**< Current frame offset within current track */
88 SDL_CDtrack track[SDL_MAX_TRACKS+1]; member in struct:SDL_CD
146 * get track information about the CD.
152 * // Play last track
    [all...]
  /prebuilts/tools/windows/sdl/include/SDL/
SDL_cdrom.h 50 /** @name Track Types
51 * The types of CD-ROM track possible
71 Uint8 id; /**< Track number */
72 Uint8 type; /**< Data or audio track */
74 Uint32 length; /**< Length, in frames, of this track */
86 int cur_track; /**< Current track position */
87 int cur_frame; /**< Current frame offset within current track */
88 SDL_CDtrack track[SDL_MAX_TRACKS+1]; member in struct:SDL_CD
146 * get track information about the CD.
152 * // Play last track
    [all...]
  /external/chromium-trace/trace-viewer/src/tracks/
async_slice_group_track.js 12 * A track that displays a AsyncSliceGroup.
25 this.classList.add('async-slice-group-track');
29 var track =
32 track.asyncStyle = true;
33 return track;
  /frameworks/av/include/media/stagefright/
MPEG4Writer.h 44 // Returns INVALID_OPERATION if there is no source or track.
73 class Track;
82 bool mStarted; // Writer thread + track threads started successfully
102 List<Track *> mTracks;
113 Track *mTrack; // Owner
120 Chunk(Track *track, int64_t timeUs, List<MediaBuffer *> samples)
121 : mTrack(track), mTimeStampUs(timeUs), mSamples(samples) {
126 Track *mTrack; // Owner
162 // Adjust other track media clock (presumably wall clock
    [all...]

Completed in 468 milliseconds

1 2 3 45 6 7 8 91011>>