Home
last modified time | relevance | path

Searched refs:timelines (Results 1 – 19 of 19) sorted by relevance

/external/exoplayer/tree/library/core/src/main/java/com/google/android/exoplayer2/source/
DMergingMediaSource.java71 private final Timeline[] timelines; field in MergingMediaSource
120 timelines = new Timeline[mediaSources.length]; in MergingMediaSource()
149 int periodIndex = timelines[0].getIndexOfPeriod(id.periodUid); in createPeriod()
152 id.copyWithPeriodUid(timelines[i].getUidOfPeriod(periodIndex)); in createPeriod()
172 Arrays.fill(timelines, null); in releaseSourceInternal()
192 periodTimeOffsetsUs = new long[periodCount][timelines.length]; in onChildSourceInfoRefreshed()
195 timelines[id] = timeline; in onChildSourceInfoRefreshed()
200 refreshSourceInfo(timelines[0]); in onChildSourceInfoRefreshed()
215 -timelines[0].getPeriod(periodIndex, period).getPositionInWindowUs(); in computePeriodTimeOffsets()
216 for (int timelineIndex = 1; timelineIndex < timelines.length; timelineIndex++) { in computePeriodTimeOffsets()
[all …]
DConcatenatingMediaSource.java907 private final Timeline[] timelines; field in ConcatenatingMediaSource.ConcatenatedTimeline
919 timelines = new Timeline[childCount]; in ConcatenatedTimeline()
926 timelines[index] = mediaSourceHolder.mediaSource.getTimeline(); in ConcatenatedTimeline()
929 windowCount += timelines[index].getWindowCount(); in ConcatenatedTimeline()
930 periodCount += timelines[index].getPeriodCount(); in ConcatenatedTimeline()
956 return timelines[childIndex]; in getTimelineByChildIndex()
/external/linux-kselftest/tools/testing/selftests/sync/
Dsync_stress_merge.c41 int timelines[timeline_count]; in test_merge_stress_random_merge() local
49 timelines[i] = sw_sync_timeline_create(); in test_merge_stress_random_merge()
51 fence = sw_sync_fence_create(timelines[0], "fence", 0); in test_merge_stress_random_merge()
65 timeline = timelines[timeline_offset]; in test_merge_stress_random_merge()
101 sw_sync_timeline_inc(timelines[i], fence_map[i]); in test_merge_stress_random_merge()
112 sw_sync_timeline_destroy(timelines[i]); in test_merge_stress_random_merge()
/external/igt-gpu-tools/tests/
Dsyncobj_wait.c530 int timelines[3] = { -1, -1, -1 }; in test_wait_snapshot() local
537 timelines[0] = syncobj_attach_sw_sync(fd, syncobjs[0]); in test_wait_snapshot()
538 timelines[1] = syncobj_attach_sw_sync(fd, syncobjs[1]); in test_wait_snapshot()
556 if (timelines[0] == -1) in test_wait_snapshot()
559 sw_sync_timeline_inc(timelines[0], 1); in test_wait_snapshot()
561 timelines[0] = syncobj_attach_sw_sync(fd, syncobjs[0]); in test_wait_snapshot()
575 timelines[2] = syncobj_attach_sw_sync(fd, syncobjs[0]); in test_wait_snapshot()
581 if (timelines[1] == -1) in test_wait_snapshot()
584 sw_sync_timeline_inc(timelines[1], 1); in test_wait_snapshot()
591 close(timelines[0]); in test_wait_snapshot()
[all …]
/external/exoplayer/tree/library/core/src/test/java/com/google/android/exoplayer2/source/
DMergingMediaSourceTest.java91 private static void testMergingMediaSourcePrepare(Timeline... timelines) throws IOException { in testMergingMediaSourcePrepare() argument
92 FakeMediaSource[] mediaSources = new FakeMediaSource[timelines.length]; in testMergingMediaSourcePrepare()
93 for (int i = 0; i < timelines.length; i++) { in testMergingMediaSourcePrepare()
94 mediaSources[i] = new FakeMediaSource(timelines[i]); in testMergingMediaSourcePrepare()
101 assertThat(timeline).isEqualTo(timelines[0]); in testMergingMediaSourcePrepare()
/external/exoplayer/tree/testutils/src/main/java/com/google/android/exoplayer2/testutil/
DExoPlayerTestRunner.java357 private final ArrayList<Timeline> timelines; field in ExoPlayerTestRunner
388 timelines = new ArrayList<>(); in ExoPlayerTestRunner()
511 public void assertTimelinesSame(Timeline... timelines) { in assertTimelinesSame() argument
512 assertThat(this.timelines).hasSize(timelines.length); in assertTimelinesSame()
513 for (int i = 0; i < timelines.length; i++) { in assertTimelinesSame()
514 assertThat(new NoUidTimeline(timelines[i])) in assertTimelinesSame()
515 .isEqualTo(new NoUidTimeline(this.timelines.get(i))); in assertTimelinesSame()
612 timelines.add(timeline); in onTimelineChanged()
DMediaSourceTestRunner.java60 private final LinkedBlockingDeque<Timeline> timelines; field in MediaSourceTestRunner
79 timelines = new LinkedBlockingDeque<>(); in MediaSourceTestRunner()
218 assertThat(timelines).isEmpty(); in assertNoTimelineChange()
227 timeline = timelines.removeFirst(); in assertTimelineChange()
240 timeline = timelines.poll(TIMEOUT_MS, TimeUnit.MILLISECONDS); in assertTimelineChangeBlocking()
353 timelines.addLast(timeline); in onSourceInfoRefreshed()
/external/exoplayer/tree/library/core/src/main/java/com/google/android/exoplayer2/
DMediaSourceList.java502 private final Timeline[] timelines; field in MediaSourceList.PlaylistTimeline
512 timelines = new Timeline[childCount]; in PlaylistTimeline()
519 timelines[index] = mediaSourceHolder.mediaSource.getTimeline(); in PlaylistTimeline()
522 windowCount += timelines[index].getWindowCount(); in PlaylistTimeline()
523 periodCount += timelines[index].getPeriodCount(); in PlaylistTimeline()
549 return timelines[childIndex]; in getTimelineByChildIndex()
/external/tensorflow/tensorflow/core/profiler/protobuf/
Dxplane.proto19 // An XPlane is a container of parallel timelines (XLines), generated by a
28 // Parallel timelines grouped in this plane. XLines with the same id
/external/mesa3d/src/intel/vulkan/
Danv_queue.c2592 struct anv_timeline **timelines, in anv_timelines_wait() argument
2605 anv_timeline_wait_locked(device, timelines[i], serials[i], 0); in anv_timelines_wait()
2636 anv_timeline_wait_locked(device, timelines[i], in anv_timelines_wait()
2653 struct anv_timeline **timelines; in anv_WaitSemaphores() local
2662 anv_multialloc_add(&ma, &timelines, pWaitInfo->semaphoreCount); in anv_WaitSemaphores()
2684 timelines[handle_count] = &impl->timeline; in anv_WaitSemaphores()
2704 anv_timelines_wait(device, timelines, values, handle_count, in anv_WaitSemaphores()
/external/perfetto/docs/instrumentation/
Dtrack-events.md446 ![Track timelines shown in the Perfetto UI](
447 /docs/images/track-timeline.png "Track timelines in the Perfetto UI")
/external/grpc-grpc/doc/core/
Dtransport_explainer.md94 There are other possible sample timelines. For example, for client-side streaming, a "typical" sequ…
/external/tensorflow/tensorflow/compiler/aot/
Dtfcompile.bzl96 Xprof to construct profiler timelines.
/external/perfetto/docs/data-sources/
Dframetimeline.md37 ![](/docs/images/frametimeline/app-timelines.png)
/external/llvm-project/llvm/docs/
DSecurity.rst112 …issues, as well as process discussions about matters such as disclosure timelines and group member…
/external/exoplayer/tree/
DRELEASENOTES.md435 * DASH: Support negative @r values in segment timelines
1430 Applications that rely on HLS timelines having a period starting at the
1431 epoch will need to update their handling of HLS timelines. The program date
/external/mesa3d/docs/relnotes/
D19.3.0.rst524 - radv: Add timelines with a VK_KHR_timeline_semaphore impl.
525 - radv: Add wait-before-submit support for timelines.
/external/cldr/tools/java/org/unicode/cldr/util/data/transforms/
Dinternal_raw_IPA-old.txt196631 timelines tˈạmlạnz
Dinternal_raw_IPA.txt164499 timelines %44931 tˈɑɪmlɑɪnz