Home
last modified time | relevance | path

Searched full:representation (Results 1 – 25 of 8171) sorted by relevance

12345678910>>...327

/external/exoplayer/tree_15dc86382f17a24a3e881e52e31a810c1ea44b49/library/dash/src/main/java/com/google/android/exoplayer2/source/dash/
DDashUtil.java33 import com.google.android.exoplayer2.source.dash.manifest.Representation;
47 * Builds a {@link DataSpec} for a given {@link RangedUri} belonging to {@link Representation}.
49 * @param representation The {@link Representation} to which the request belongs.
57 Representation representation, String baseUrl, RangedUri requestUri, int flags) { in buildDataSpec() argument
62 .setKey(resolveCacheKey(representation, requestUri)) in buildDataSpec()
68 * Builds a {@link DataSpec} for a given {@link RangedUri} belonging to {@link Representation}.
70 * <p>Uses the first base URL of the representation to build the data spec.
72 * @param representation The {@link Representation} to which the request belongs.
79 Representation representation, RangedUri requestUri, int flags) { in buildDataSpec() argument
80 return buildDataSpec(representation, representation.baseUrls.get(0).url, requestUri, flags); in buildDataSpec()
[all …]
DDefaultDashChunkSource.java46 import com.google.android.exoplayer2.source.dash.manifest.Representation;
209 List<Representation> representations = getRepresentations(); in DefaultDashChunkSource()
212 Representation representation = representations.get(trackSelection.getIndexInTrackGroup(i)); in DefaultDashChunkSource() local
214 BaseUrl selectedBaseUrl = baseUrlExclusionList.selectBaseUrl(representation.baseUrls); in DefaultDashChunkSource()
218 representation, in DefaultDashChunkSource()
219 selectedBaseUrl != null ? selectedBaseUrl : representation.baseUrls.get(0), in DefaultDashChunkSource()
222 representation.format, in DefaultDashChunkSource()
228 representation.getIndex()); in DefaultDashChunkSource()
260 List<Representation> representations = getRepresentations();
262 Representation representation = representations.get(trackSelection.getIndexInTrackGroup(i));
[all …]
/external/exoplayer/tree_8e57d3715f9092d5ec54ebe2e538f34bfcc34479/library/dash/src/main/java/com/google/android/exoplayer2/source/dash/
DDashUtil.java33 import com.google.android.exoplayer2.source.dash.manifest.Representation;
46 * Builds a {@link DataSpec} for a given {@link RangedUri} belonging to {@link Representation}.
48 * @param representation The {@link Representation} to which the request belongs.
56 Representation representation, String baseUrl, RangedUri requestUri, int flags) { in buildDataSpec() argument
61 .setKey(resolveCacheKey(representation, requestUri)) in buildDataSpec()
67 * Builds a {@link DataSpec} for a given {@link RangedUri} belonging to {@link Representation}.
69 * <p>Uses the first base URL of the representation to build the data spec.
71 * @param representation The {@link Representation} to which the request belongs.
78 Representation representation, RangedUri requestUri, int flags) { in buildDataSpec() argument
79 return buildDataSpec(representation, representation.baseUrls.get(0).url, requestUri, flags); in buildDataSpec()
[all …]
DDefaultDashChunkSource.java46 import com.google.android.exoplayer2.source.dash.manifest.Representation;
209 List<Representation> representations = getRepresentations(); in DefaultDashChunkSource()
212 Representation representation = representations.get(trackSelection.getIndexInTrackGroup(i)); in DefaultDashChunkSource() local
214 BaseUrl selectedBaseUrl = baseUrlExclusionList.selectBaseUrl(representation.baseUrls); in DefaultDashChunkSource()
218 representation, in DefaultDashChunkSource()
219 selectedBaseUrl != null ? selectedBaseUrl : representation.baseUrls.get(0), in DefaultDashChunkSource()
222 representation.format, in DefaultDashChunkSource()
228 representation.getIndex()); in DefaultDashChunkSource()
260 List<Representation> representations = getRepresentations();
262 Representation representation = representations.get(trackSelection.getIndexInTrackGroup(i));
[all …]
/external/exoplayer/tree_8e57d3715f9092d5ec54ebe2e538f34bfcc34479/library/dash/src/main/java/com/google/android/exoplayer2/source/dash/manifest/
DRepresentation.java32 /** A DASH representation. */
33 public abstract class Representation { class
39 * Identifies the revision of the media contained within the representation. If the media can
45 /** The format of the representation. */
47 /** The base URLs of the representation. */
51 /** The in-band event streams in the representation. May be empty. */
53 /** Essential properties in the representation. May be empty. */
64 * @param format The format of the representation.
65 * @param baseUrls The list of base URLs of the representation.
66 * @param segmentBase A segment base element for the representation.
[all …]
/external/exoplayer/tree_15dc86382f17a24a3e881e52e31a810c1ea44b49/library/dash/src/main/java/com/google/android/exoplayer2/source/dash/manifest/
DRepresentation.java32 /** A DASH representation. */
33 public abstract class Representation { class
39 * Identifies the revision of the media contained within the representation. If the media can
45 /** The format of the representation. */
47 /** The base URLs of the representation. */
51 /** The in-band event streams in the representation. May be empty. */
53 /** Essential properties in the representation. May be empty. */
64 * @param format The format of the representation.
65 * @param baseUrls The list of base URLs of the representation.
66 * @param segmentBase A segment base element for the representation.
[all …]
/external/apache-commons-math/src/main/java/org/apache/commons/math/genetics/
DAbstractListChromosome.java27 * @param <T> type of the representation list
34 private final List<T> representation; field in AbstractListChromosome
38 * @param representation inner representation of the chromosome
40 public AbstractListChromosome(final List<T> representation) { in AbstractListChromosome() argument
42 checkValidity(representation); in AbstractListChromosome()
44 …throw new IllegalArgumentException(String.format("Invalid representation for %s", getClass().getSi… in AbstractListChromosome()
46 this.representation = Collections.unmodifiableList(new ArrayList<T> (representation)); in AbstractListChromosome()
51 * @param representation inner representation of the chromosome
53 public AbstractListChromosome(final T[] representation) { in AbstractListChromosome() argument
54 this(Arrays.asList(representation)); in AbstractListChromosome()
[all …]
DRandomKey.java27 * Random Key chromosome is used for permutation representation. It is a vector
39 * With this representation, common operators like n-point crossover can be
45 * array representation is sorted only once in the constructor.
67 * Cache of sorted representation (unmodifiable).
72 * Base sequence [0,1,...,n-1], permuted accorting to the representation (unmodifiable).
79 * @param representation list of [0,1] values representing the permutation
81 public RandomKey(List<Double> representation) { in RandomKey() argument
82 super(representation); in RandomKey()
83 // store the sorted representation in RandomKey()
96 * @param representation array of [0,1] values representing the permutation
[all …]
/external/exoplayer/tree_8e57d3715f9092d5ec54ebe2e538f34bfcc34479/testdata/src/test/assets/media/mpd/
Dsample_mpd_stream_keys5 <Representation id="135" bandwidth="1000000" codecs="avc1.42c01f"/>
13 <Representation id="1001" bandwidth="200000" codecs="avc1.42c01f">
18 </Representation>
19 <Representation id="1002" bandwidth="400000" codecs="avc1.42c01f">
24 </Representation>
25 <Representation id="1003" bandwidth="600000" codecs="avc1.42c01f">
30 </Representation>
36 <Representation id="1011" bandwidth="48000" codecs="mp4a.40.2"/>
37 <Representation id="1012" bandwidth="96000" codecs="mp4a.40.2"/>
43 <Representation id="1021" bandwidth="256000" codecs="mp4a.40.2"/>
[all …]
Dsample_mpd_availabilityTimeOffset_segmentTemplate13 <Representation>
16 </Representation>
21 <Representation/>
25 <Representation>
28 </Representation>
33 <Representation>
36 </Representation>
41 <Representation>
43 </Representation>
Dsample_mpd_availabilityTimeOffset_segmentList13 <Representation>
16 </Representation>
21 <Representation/>
25 <Representation>
28 </Representation>
33 <Representation>
36 </Representation>
41 <Representation>
43 </Representation>
/external/exoplayer/tree_15dc86382f17a24a3e881e52e31a810c1ea44b49/testdata/src/test/assets/media/mpd/
Dsample_mpd_stream_keys5 <Representation id="135" bandwidth="1000000" codecs="avc1.42c01f"/>
13 <Representation id="1001" bandwidth="200000" codecs="avc1.42c01f">
18 </Representation>
19 <Representation id="1002" bandwidth="400000" codecs="avc1.42c01f">
24 </Representation>
25 <Representation id="1003" bandwidth="600000" codecs="avc1.42c01f">
30 </Representation>
36 <Representation id="1011" bandwidth="48000" codecs="mp4a.40.2"/>
37 <Representation id="1012" bandwidth="96000" codecs="mp4a.40.2"/>
43 <Representation id="1021" bandwidth="256000" codecs="mp4a.40.2"/>
[all …]
Dsample_mpd_availabilityTimeOffset_segmentList13 <Representation>
16 </Representation>
21 <Representation/>
25 <Representation>
28 </Representation>
33 <Representation>
36 </Representation>
41 <Representation>
43 </Representation>
Dsample_mpd_availabilityTimeOffset_segmentTemplate13 <Representation>
16 </Representation>
21 <Representation/>
25 <Representation>
28 </Representation>
33 <Representation>
36 </Representation>
41 <Representation>
43 </Representation>
/external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/operator/
DGenericKey.java8 private Object representation; field in GenericKey
12 * @param representation key data
14 public GenericKey(Object representation) in GenericKey() argument
17 this.representation = representation; in GenericKey()
20 public GenericKey(AlgorithmIdentifier algorithmIdentifier, byte[] representation) in GenericKey() argument
23 this.representation = representation; in GenericKey()
26 protected GenericKey(AlgorithmIdentifier algorithmIdentifier, Object representation) in GenericKey() argument
29 this.representation = representation; in GenericKey()
39 return representation; in getRepresentation()
/external/bouncycastle/repackaged_platform/bcpkix/src/main/java/com/android/internal/org/bouncycastle/operator/
DGenericKey.java12 private Object representation; field in GenericKey
16 * @param representation key data
18 public GenericKey(Object representation) in GenericKey() argument
21 this.representation = representation; in GenericKey()
24 public GenericKey(AlgorithmIdentifier algorithmIdentifier, byte[] representation) in GenericKey() argument
27 this.representation = representation; in GenericKey()
30 protected GenericKey(AlgorithmIdentifier algorithmIdentifier, Object representation) in GenericKey() argument
33 this.representation = representation; in GenericKey()
43 return representation; in getRepresentation()
/external/exoplayer/tree_15dc86382f17a24a3e881e52e31a810c1ea44b49/docs/doc/reference/com/google/android/exoplayer2/source/dash/
DDashUtil.html157Representation,com.google.android.exoplayer2.source.dash.manifest.RangedUri,int)">buildDataSpec</a…
161 … to <a href="manifest/Representation.html" title="class in com.google.android.exoplayer2.source.da…
166Representation,java.lang.String,com.google.android.exoplayer2.source.dash.manifest.RangedUri,int)"…
171 … to <a href="manifest/Representation.html" title="class in com.google.android.exoplayer2.source.da…
176 …am.DataSource,int,com.google.android.exoplayer2.source.dash.manifest.Representation)">loadChunkInd…
178 …ef="manifest/Representation.html" title="class in com.google.android.exoplayer2.source.dash.manife…
180 <div class="block">Loads initialization and index data for the <code>representation</code> and retu…
185 …am.DataSource,int,com.google.android.exoplayer2.source.dash.manifest.Representation,int)">loadChun…
187 …ef="manifest/Representation.html" title="class in com.google.android.exoplayer2.source.dash.manife…
190 <div class="block">Loads initialization and index data for the <code>representation</code> and retu…
[all …]
/external/exoplayer/tree_8e57d3715f9092d5ec54ebe2e538f34bfcc34479/docs/doc/reference/com/google/android/exoplayer2/source/dash/
DDashUtil.html157Representation,com.google.android.exoplayer2.source.dash.manifest.RangedUri,int)">buildDataSpec</a…
161 … to <a href="manifest/Representation.html" title="class in com.google.android.exoplayer2.source.da…
166Representation,java.lang.String,com.google.android.exoplayer2.source.dash.manifest.RangedUri,int)"…
171 … to <a href="manifest/Representation.html" title="class in com.google.android.exoplayer2.source.da…
176 …am.DataSource,int,com.google.android.exoplayer2.source.dash.manifest.Representation)">loadChunkInd…
178 …ef="manifest/Representation.html" title="class in com.google.android.exoplayer2.source.dash.manife…
180 <div class="block">Loads initialization and index data for the <code>representation</code> and retu…
185 …am.DataSource,int,com.google.android.exoplayer2.source.dash.manifest.Representation,int)">loadChun…
187 …ef="manifest/Representation.html" title="class in com.google.android.exoplayer2.source.dash.manife…
190 <div class="block">Loads initialization and index data for the <code>representation</code> and retu…
[all …]
/external/mesa3d/src/gallium/auxiliary/util/
Du_debug_flush.h48 * Create a buffer (AKA allocation) representation.
52 * representation.
58 * Reference a buffer representation.
63 * Replace a pointer to a buffer representation with proper refcounting.
70 * Create a context representation.
75 * representation.
81 * Destroy a context representation.
83 * @param fctx The context representation to destroy.
91 * @param fbuf The buffer representation to map.
94 * Used to annotate a map of the buffer described by the buffer representation.
[all …]
/external/exoplayer/tree_15dc86382f17a24a3e881e52e31a810c1ea44b49/library/dash/src/main/java/com/google/android/exoplayer2/source/dash/offline/
DDashDownloader.java34 import com.google.android.exoplayer2.source.dash.manifest.Representation;
58 * // Create a downloader for the first representation of the first adaptation set of the first
151 Representation representation = adaptationSet.representations.get(i); in addSegmentsForAdaptationSet() local
154 index = getSegmentIndex(dataSource, adaptationSet.type, representation, removing); in addSegmentsForAdaptationSet()
163 // Generating an incomplete segment list is allowed. Advance to the next representation. in addSegmentsForAdaptationSet()
172 String baseUrl = castNonNull(baseUrlExclusionList.selectBaseUrl(representation.baseUrls)).url; in addSegmentsForAdaptationSet()
173 @Nullable RangedUri initializationUri = representation.getInitializationUri(); in addSegmentsForAdaptationSet()
175 out.add(createSegment(representation, baseUrl, periodStartUs, initializationUri)); in addSegmentsForAdaptationSet()
177 @Nullable RangedUri indexUri = representation.getIndexUri(); in addSegmentsForAdaptationSet()
179 out.add(createSegment(representation, baseUrl, periodStartUs, indexUri)); in addSegmentsForAdaptationSet()
[all …]
/external/exoplayer/tree_8e57d3715f9092d5ec54ebe2e538f34bfcc34479/library/dash/src/main/java/com/google/android/exoplayer2/source/dash/offline/
DDashDownloader.java34 import com.google.android.exoplayer2.source.dash.manifest.Representation;
58 * // Create a downloader for the first representation of the first adaptation set of the first
151 Representation representation = adaptationSet.representations.get(i); in addSegmentsForAdaptationSet() local
154 index = getSegmentIndex(dataSource, adaptationSet.type, representation, removing); in addSegmentsForAdaptationSet()
163 // Generating an incomplete segment list is allowed. Advance to the next representation. in addSegmentsForAdaptationSet()
172 String baseUrl = castNonNull(baseUrlExclusionList.selectBaseUrl(representation.baseUrls)).url; in addSegmentsForAdaptationSet()
173 @Nullable RangedUri initializationUri = representation.getInitializationUri(); in addSegmentsForAdaptationSet()
175 out.add(createSegment(representation, baseUrl, periodStartUs, initializationUri)); in addSegmentsForAdaptationSet()
177 @Nullable RangedUri indexUri = representation.getIndexUri(); in addSegmentsForAdaptationSet()
179 out.add(createSegment(representation, baseUrl, periodStartUs, indexUri)); in addSegmentsForAdaptationSet()
[all …]
/external/exoplayer/tree_15dc86382f17a24a3e881e52e31a810c1ea44b49/docs/doc/reference/com/google/android/exoplayer2/source/dash/manifest/
DRepresentation.SingleSegmentRepresentation.html5 <title>Representation.SingleSegmentRepresentation (ExoPlayer library)</title>
22 parent.document.title="Representation.SingleSegmentRepresentation (ExoPlayer library)";
117 <h2 title="Class Representation.SingleSegmentRepresentation" class="title">Class Representation.Sin…
124Representation.html" title="class in com.google.android.exoplayer2.source.dash.manifest">com.googl…
127 <li>com.google.android.exoplayer2.source.dash.manifest.Representation.SingleSegmentRepresentation</…
138 <dd><a href="Representation.html" title="class in com.google.android.exoplayer2.source.dash.manifes…
141 <pre>public static class <span class="typeNameLabel">Representation.SingleSegmentRepresentation</sp…
142 extends <a href="Representation.html" title="class in com.google.android.exoplayer2.source.dash.man…
143 <div class="block">A DASH representation consisting of a single segment.</div>
158 …ed.classes.inherited.from.class.com.google.android.exoplayer2.source.dash.manifest.Representation">
[all …]
/external/exoplayer/tree_8e57d3715f9092d5ec54ebe2e538f34bfcc34479/docs/doc/reference/com/google/android/exoplayer2/source/dash/manifest/
DRepresentation.SingleSegmentRepresentation.html5 <title>Representation.SingleSegmentRepresentation (ExoPlayer library)</title>
22 parent.document.title="Representation.SingleSegmentRepresentation (ExoPlayer library)";
117 <h2 title="Class Representation.SingleSegmentRepresentation" class="title">Class Representation.Sin…
124Representation.html" title="class in com.google.android.exoplayer2.source.dash.manifest">com.googl…
127 <li>com.google.android.exoplayer2.source.dash.manifest.Representation.SingleSegmentRepresentation</…
138 <dd><a href="Representation.html" title="class in com.google.android.exoplayer2.source.dash.manifes…
141 <pre>public static class <span class="typeNameLabel">Representation.SingleSegmentRepresentation</sp…
142 extends <a href="Representation.html" title="class in com.google.android.exoplayer2.source.dash.man…
143 <div class="block">A DASH representation consisting of a single segment.</div>
158 …ed.classes.inherited.from.class.com.google.android.exoplayer2.source.dash.manifest.Representation">
[all …]
/external/cronet/net/third_party/quiche/src/quiche/spdy/core/hpack/
Dhpack_encoder.cc41 const Representation Next() { in Next()
152 void HpackEncoder::EmitIndexedLiteral(const Representation& representation) { in EmitIndexedLiteral() argument
153 QUICHE_DVLOG(2) << "Emitting indexed literal: (" << representation.first in EmitIndexedLiteral()
154 << ", " << representation.second << ")"; in EmitIndexedLiteral()
156 EmitLiteral(representation); in EmitIndexedLiteral()
157 header_table_.TryAddEntry(representation.first, representation.second); in EmitIndexedLiteral()
160 void HpackEncoder::EmitNonIndexedLiteral(const Representation& representation, in EmitNonIndexedLiteral() argument
162 QUICHE_DVLOG(2) << "Emitting nonindexed literal: (" << representation.first in EmitNonIndexedLiteral()
163 << ", " << representation.second << ")"; in EmitNonIndexedLiteral()
165 size_t name_index = header_table_.GetByName(representation.first); in EmitNonIndexedLiteral()
[all …]
Dhpack_encoder.h35 using Representation = std::pair<absl::string_view, absl::string_view>;
36 using Representations = std::vector<Representation>;
111 // Emits a static/dynamic indexed representation (Section 7.1).
114 // Emits a literal representation (Section 7.2).
115 void EmitIndexedLiteral(const Representation& representation);
116 void EmitNonIndexedLiteral(const Representation& representation,
118 void EmitLiteral(const Representation& representation);
128 static void CookieToCrumbs(const Representation& cookie,
132 static void DecomposeRepresentation(const Representation& header_field,

12345678910>>...327