Home
last modified time | relevance | path

Searched refs:periods (Results 1 – 25 of 106) sorted by relevance

12345

/external/exoplayer/tree/library/dash/src/main/java/com/google/android/exoplayer2/source/dash/manifest/
DDashManifest.java91 private final List<Period> periods; field in DashManifest
109 List<Period> periods) { in DashManifest() argument
122 periods); in DashManifest()
137 List<Period> periods) { in DashManifest() argument
149 this.periods = periods == null ? Collections.emptyList() : periods; in DashManifest()
153 return periods.size(); in getPeriodCount()
157 return periods.get(index); in getPeriod()
161 return index == periods.size() - 1 in getPeriodDurationMs()
162 ? (durationMs == C.TIME_UNSET ? C.TIME_UNSET : (durationMs - periods.get(index).startMs)) in getPeriodDurationMs()
163 : (periods.get(index + 1).startMs - periods.get(index).startMs); in getPeriodDurationMs()
DDashManifestParser.java118 List<Period> periods = new ArrayList<>(); in parseMediaPresentationDescription() local
144 throw new ParserException("Unable to determine start of period " + periods.size()); in parseMediaPresentationDescription()
150 periods.add(period); in parseMediaPresentationDescription()
166 if (periods.isEmpty()) { in parseMediaPresentationDescription()
182 periods); in parseMediaPresentationDescription()
197 List<Period> periods) { in buildMediaPresentationDescription() argument
210 periods); in buildMediaPresentationDescription()
/external/exoplayer/tree/library/core/src/main/java/com/google/android/exoplayer2/source/
DMergingMediaPeriod.java39 private final MediaPeriod[] periods; field in MergingMediaPeriod
52 MediaPeriod... periods) { in MergingMediaPeriod() argument
54 this.periods = periods; in MergingMediaPeriod()
60 for (int i = 0; i < periods.length; i++) { in MergingMediaPeriod()
62 this.periods[i] = new TimeOffsetMediaPeriod(periods[i], periodTimeOffsetsUs[i]); in MergingMediaPeriod()
73 return periods[index] instanceof TimeOffsetMediaPeriod in getChildPeriod()
74 ? ((TimeOffsetMediaPeriod) periods[index]).mediaPeriod in getChildPeriod()
75 : periods[index]; in getChildPeriod()
81 Collections.addAll(childrenPendingPreparation, periods); in prepare()
82 for (MediaPeriod period : periods) { in prepare()
[all …]
DMergingMediaSource.java148 MediaPeriod[] periods = new MediaPeriod[mediaSources.length]; in createPeriod() local
150 for (int i = 0; i < periods.length; i++) { in createPeriod()
153 periods[i] = in createPeriod()
158 compositeSequenceableLoaderFactory, periodTimeOffsetsUs[periodIndex], periods); in createPeriod()
/external/tinyalsa/
Dpcm_plugin.c191 struct pcm_plugin_min_max bw, ch, pb, periods; in pcm_plug_get_params() local
219 &plugin->constraints->periods, 1); in pcm_plug_get_params()
232 periods.min = plugin->constraints->periods.min; in pcm_plug_get_params()
233 periods.max = plugin->constraints->periods.max; in pcm_plug_get_params()
249 buffer_bytes.min = pb.min * periods.min; in pcm_plug_get_params()
250 buffer_bytes.max = pb.max * periods.max; in pcm_plug_get_params()
444 unsigned int bw, ch, period_sz, periods; in pcm_plug_hw_params_set() local
459 periods = (p->intervals[SNDRV_PCM_HW_PARAM_PERIODS - offset]).min; in pcm_plug_hw_params_set()
468 val2 = period_sz * periods; //buffer_size; in pcm_plug_hw_params_set()
471 val2 = pcm_plug_frames_to_bytes(period_sz * periods, val1); //buffer_bytes; in pcm_plug_hw_params_set()
/external/tinyalsa_new/src/
Dpcm_plugin.c208 struct pcm_plugin_min_max bw, ch, pb, periods; in pcm_plug_get_params() local
236 &plugin->constraints->periods, 1); in pcm_plug_get_params()
249 periods.min = plugin->constraints->periods.min; in pcm_plug_get_params()
250 periods.max = plugin->constraints->periods.max; in pcm_plug_get_params()
266 buffer_bytes.min = pb.min * periods.min; in pcm_plug_get_params()
267 buffer_bytes.max = pb.max * periods.max; in pcm_plug_get_params()
461 unsigned int bw, ch, period_sz, periods; in pcm_plug_hw_params_set() local
476 periods = (p->intervals[SNDRV_PCM_HW_PARAM_PERIODS - offset]).min; in pcm_plug_hw_params_set()
485 val2 = period_sz * periods; //buffer_size; in pcm_plug_hw_params_set()
488 val2 = pcm_plug_frames_to_bytes(period_sz * periods, val1); //buffer_bytes; in pcm_plug_hw_params_set()
/external/mesa3d/src/gallium/drivers/freedreno/
Dfreedreno_query_hw.c106 list_addtail(&hq->period->list, &hq->periods); in pause_query()
114 LIST_FOR_EACH_ENTRY_SAFE(period, s, &hq->periods, list) { in destroy_periods()
185 if (list_is_empty(&hq->periods)) in fd_hw_get_query_result()
198 hq->periods.prev, list); in fd_hw_get_query_result()
226 LIST_FOR_EACH_ENTRY(period, &hq->periods, list) { in fd_hw_get_query_result()
284 list_inithead(&hq->periods); in fd_hw_create_query()
Dfreedreno_query_hw.h121 struct list_head periods; member
/external/cldr/tools/java/org/unicode/cldr/tool/
DGenerateDayPeriodChart.java70 final List<DayPeriod> periods = info.getPeriods(); in main() local
71 careAbout.addAll(periods); in main()
72 for (DayPeriod dp1 : periods) { in main()
73 for (DayPeriod dp2 : periods) { in main()
/external/cldr/tools/cldr-unittest/src/org/unicode/cldr/unittest/
DTestDayPeriods.java67 List<DayPeriod> periods = periodInfo.getPeriods(); in TestAttributes() local
86 assertRelation(locale, true, periods, TestFmwkPlus.CONTAINS, period); in TestAttributes()
/external/autotest/client/profilers/powertop/src/
DREADME7 periods of time, rather than having to wake up every millisecond for
9 idle for long periods, which translates into a longer battery life for
/external/mesa3d/docs/_extra/specs/
DMESA_swap_control.spec35 of color buffer swaps, measured in video frame periods.
79 glXSwapIntervalMESA specifies the minimum number of video frame periods
/external/exoplayer/tree/library/dash/src/test/java/com/google/android/exoplayer2/source/dash/manifest/
DDashManifestTest.java221 private static DashManifest newDashManifest(int duration, Period... periods) { in newDashManifest() argument
234 Arrays.asList(periods)); in newDashManifest()
/external/autotest/server/site_tests/enterprise_LongevityTrackerServer/
Dcontrol.stratosmedia7 PURPOSE = "Tracks Chrome OS performance over long periods."
Dcontrol.riseplayer7 PURPOSE = "Tracks Chrome OS performance over long periods."
/external/tinyalsa/include/tinyalsa/
Dpcm_plugin.h87 struct pcm_plugin_min_max periods; member
/external/llvm-project/compiler-rt/test/fuzzer/
Dexit_on_src_pos.test4 # Binaries must end in .exe or else symbolization will break on Windows because of how periods
Dfuzzer-oom.test2 # Tests break on windows unless exe extension is used (because there are periods
/external/autotest/client/site_tests/longevity_Tracker/
Dcontrol.stratosmedia7 PURPOSE = 'Tracks Chrome OS performance over long periods.'
Dcontrol.chromesign7 PURPOSE = 'Tracks Chrome OS performance over long periods.'
Dcontrol.riseplayer7 PURPOSE = 'Tracks Chrome OS performance over long periods.'
/external/exoplayer/tree/library/dash/src/test/java/com/google/android/exoplayer2/source/dash/
DDashMediaPeriodTest.java280 private static DashManifest createDashManifest(Period... periods) { in createDashManifest() argument
293 Arrays.asList(periods)); in createDashManifest()
/external/sonic/samples/
DREADME32 This is just two sine periods, which is too short to hear. However, it's
/external/autotest/server/site_tests/network_WiFi_DarkResumeActiveScans/
Dcontrol23 networks during these periods, and the connection/authentication process
/external/perfetto/docs/concepts/
Ddetached-mode.md8 arbitrarily long periods of time.
25 possibly for very long periods of time. Because Traceur is not a persistent service (and even if it…

12345