HomeSort by relevance Sort by last modified time
    Searched full:tracks (Results 201 - 225 of 1333) sorted by null

1 2 3 4 5 6 7 891011>>

  /developers/samples/android/media/BasicMediaDecoder/Application/src/main/java/com/example/android/basicmediadecoder/
MainActivity.java 110 // Begin by unselecting all of the tracks in the extractor, so we won't see
111 // any tracks that we haven't explicitly selected.
118 // it's possible that the stream would contain multiple tracks, but this
  /developers/samples/android/media/BasicMediaDecoder/
README.md 23 4. On your MediaExtractor instance, call `getTrackCount()` to know how many tracks you have in your streams.
24 They may not all be video tracks. Deselect all tracks by calling `unselectTrack(i)` where `i` is
template-params.xml 74 4. On your MediaExtractor instance, call `getTrackCount()` to know how many tracks you have in your streams.
75 They may not all be video tracks. Deselect all tracks by calling `unselectTrack(i)` where `i` is
  /development/samples/browseable/BasicMediaDecoder/src/com.example.android.basicmediadecoder/
MainActivity.java 110 // Begin by unselecting all of the tracks in the extractor, so we won't see
111 // any tracks that we haven't explicitly selected.
118 // it's possible that the stream would contain multiple tracks, but this
  /external/flac/libFLAC/
format.c 432 if(check_cd_da_subset && cue_sheet->tracks[cue_sheet->num_tracks-1].number != 170) {
438 if(cue_sheet->tracks[i].number == 0) {
444 if(!((cue_sheet->tracks[i].number >= 1 && cue_sheet->tracks[i].number <= 99) || cue_sheet->tracks[i].number == 170)) {
450 if(check_cd_da_subset && cue_sheet->tracks[i].offset % 588 != 0) {
461 if(cue_sheet->tracks[i].num_indices == 0) {
466 if(cue_sheet->tracks[i].indices[0].number > 1) {
472 for(j = 0; j < cue_sheet->tracks[i].num_indices; j++) {
473 if(check_cd_da_subset && cue_sheet->tracks[i].indices[j].offset % 588 != 0)
    [all...]
  /external/webrtc/talk/app/webrtc/
statscollector.h 66 // Adds a MediaStream with tracks that can be used as a |selector| in a call
73 // Removes a local audio tracks that is used for getting some voice
138 // Helper method to get stats from the local audio tracks.
  /external/chromium-trace/catapult/tracing/tracing/ui/
timeline_viewport.html 16 <link rel="import" href="/tracing/ui/tracks/container_to_track_map.html">
17 <link rel="import" href="/tracing/ui/tracks/event_to_track_map.html">
78 this.eventToTrackMap_ = new tr.ui.tracks.EventToTrackMap();
79 this.containerToTrackMap = new tr.ui.tracks.ContainerToTrackMap();
410 this.eventToTrackMap_ = new tr.ui.tracks.EventToTrackMap();
timeline_track_view.html 21 <link rel="import" href="/tracing/ui/tracks/drawing_container.html">
22 <link rel="import" href="/tracing/ui/tracks/model_track.html">
23 <link rel="import" href="/tracing/ui/tracks/ruler_track.html">
28 Each thread in the Model is given a set of Tracks, one per subrow in the
30 individual tracks, while Tracks do actual drawing.
90 new tr.ui.tracks.DrawingContainer(this.viewport_);
94 this.rulerTrack_ = new tr.ui.tracks.RulerTrack(this.viewport_);
97 this.upperModelTrack_ = new tr.ui.tracks.ModelTrack(this.viewport_);
102 new tr.ui.tracks.DrawingContainer(this.viewport_)
    [all...]
  /frameworks/base/docs/html/guide/topics/media/jet/
jetcreator_manual.jd 101 tracks, and each track may in turn be made up of one or more channels of MIDI
104 channels on a single track, or multiple tracks that contain data for the same MIDI
109 <p><i>Track</i>: A single track in a DAW containing a timed sequence of events. Be careful not to confuse Tracks with
110 Channels. A MIDI file may contain many tracks with several tracks utilizing the
155 Each segment can contain alternate music tracks that can be muted or un-muted
186 tracks are un-muted to increase the tension.</p>
205 un-muting of tracks to events in the music. For example, in the FPS game, it would
210 beginning, but then it wouldn't be synchronized with the other music tracks.</p>
542 Shows the MIDI <b>tracks</b> (not channels
    [all...]
  /frameworks/av/include/media/
AudioTrack.h 59 // static tracks.
174 * format: Audio format. For mixed tracks, any PCM format supported by server is OK.
175 * For direct and offloaded tracks, the possible format(s) depends on the
191 * - fast tracks: HAL buffer size, even if track frameCount is larger
192 * - normal tracks: 1/2 of track frameCount
196 * For fast tracks, the FastMixer will process one sub-buffer at a time.
201 * Negative is only permitted for fast tracks, and if frameCount is zero.
217 * maxRequiredSpeed: For PCM tracks, this creates an appropriate buffer size that will allow
219 * AUDIO_TIMESTRETCH_SPEED_MAX will be clamped. For non-PCM tracks
220 * and direct or offloaded tracks, this parameter is ignored
    [all...]
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/builder/
FragmentedMp4Builder.java 80 * @param tracks the list of tracks to returned sorted
82 * @param intersectionMap a map from tracks to their fragments' first samples.
83 * @return the list of tracks in order of appearance in the fragment
85 protected List<Track> sortTracksInSequence(List<Track> tracks, final int cycle, final Map<Track, long[]> intersectionMap) {
86 tracks = new LinkedList<Track>(tracks);
87 Collections.sort(tracks, new Comparator<Track>() {
110 return tracks;
134 //some tracks may have less fragments -> skip the
    [all...]
  /frameworks/base/media/java/android/media/
JetPlayer.java 41 * <li>tracks in a segment can be muted or unmuted at any moment, individually or through
42 * a mask (to change the mute state of multiple tracks at once)</li>
43 * <li>parts of tracks in a segment can be played at predefined points in the segment, in order
44 * to maintain synchronization with the other tracks in the segment. This is achieved through
69 * The maximum number of simultaneous tracks. Use {@link #getMaxTracks()} to
201 * Returns the maximum number of simultaneous MIDI tracks supported by JetPlayer
272 * @param muteFlags a bitmask to specify which MIDI tracks will be muted during playback. Bit 0
300 * @param muteArray an array of booleans to specify which MIDI tracks will be muted during
324 * @param muteFlags a bitmask to specify which MIDI tracks are muted. Bit 0 affects track 0,
339 * @param muteArray an array of booleans to specify which MIDI tracks are muted. The value a
    [all...]
  /external/clang/lib/CodeGen/
CodeGenPGO.cpp 246 // Counter tracks entry to the function body.
258 // Counter tracks entry to the capture body.
265 // Counter tracks entry to the method body.
272 // Counter tracks entry to the block body.
302 // Counter tracks the block following the label.
441 // Counter tracks the body of the loop.
463 // Counter tracks the exit block of the switch.
487 // Counter tracks the "then" part of an if statement. The count for
511 // Counter tracks the continuation block of the try statement.
518 // Counter tracks the catch statement's handler block
    [all...]
  /cts/tests/tests/tv/src/android/media/tv/cts/
TvViewTest.java 271 List<TvTrackInfo> tracks) {
293 for (TvTrackInfo item : tracks) {
351 final List<TvTrackInfo> tracks = new ArrayList<TvTrackInfo>(); local
352 Collections.addAll(tracks, videoTrack1, videoTrack2, audioTrack1, audioTrack2,
367 selectTrackAndVerify(type, track, tracks);
369 selectTrackAndVerify(TvTrackInfo.TYPE_SUBTITLE, null, tracks);
  /frameworks/av/media/libstagefright/webm/
WebmWriter.cpp 297 ALOGD("Duration from tracks range is [%" PRId64 ", %" PRId64 "] us", minDurationUs, maxDurationUs);
370 // At most 2 tracks can be supported.
373 ALOGE("Too many tracks (2) to add");
471 sp<WebmElement> ebml, segment, info, seekHead, tracks, cues; local
481 tracks = new WebmMaster(kMkvTracks, children);
495 sp<WebmElement> elems[] = { ebml, segment, seekHead, info, tracks, cues };
  /frameworks/av/services/audioflinger/
FastMixer.cpp 221 // we need to reconfigure all active tracks
236 // process removed tracks first to avoid running out of track names
255 // now process added tracks
287 // finally process (potentially) modified tracks; these use the same slot
380 // FIXME The current implementation of framesReady() for fast tracks
382 // up to 1 ms. If enough active tracks all blocked in sequence, this would result
  /packages/apps/Music/src/com/android/music/
MediaPlaybackService.java 701 // Also delay stopping the service if we're transitioning between tracks.
1347 int[] tracks = new int[numTracks]; local
    [all...]
  /external/chromium-trace/catapult/tracing/tracing/ui/tracks/
counter_track_test.html 19 var CounterTrack = tr.ui.tracks.CounterTrack;
42 var drawingContainer = new tr.ui.tracks.DrawingContainer(viewport);
89 var drawingContainer = new tr.ui.tracks.DrawingContainer(viewport);
  /external/webrtc/talk/app/webrtc/java/src/org/webrtc/
PeerConnection.java 46 /** Tracks PeerConnectionInterface::IceGatheringState */
50 /** Tracks PeerConnectionInterface::IceConnectionState */
55 /** Tracks PeerConnectionInterface::SignalingState */
  /frameworks/base/tests/MusicServiceDemo/src/com/example/android/musicservicedemo/browser/
MusicProvider.java 64 * Get the cached list of music tracks
77 * Get the list of music tracks from a server and return the list of
190 // Just return all of the tracks for now
  /build/kati/
eval.h 110 // This value tracks the nest level of make expressions. For
  /external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
CharStream.as 45 /** ANTLR tracks the line information automatically */
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
ICharStream.cs 55 /** <summary>ANTLR tracks the line information automatically</summary> */
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
ICharStream.cs 57 /** <summary>ANTLR tracks the line information automatically</summary> */
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
CharStream.java 47 /** ANTLR tracks the line information automatically */

Completed in 2289 milliseconds

1 2 3 4 5 6 7 891011>>