OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:returnDecodingEntries
(Results
1 - 2
of
2
) sorted by null
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/tracks/
CroppedTrack.java
64
LinkedList<TimeToSampleBox.Entry>
returnDecodingEntries
= new LinkedList<TimeToSampleBox.Entry>();
67
if (
returnDecodingEntries
.isEmpty() ||
returnDecodingEntries
.getLast().getDelta() != nuDecodingTime) {
69
returnDecodingEntries
.add(e);
71
TimeToSampleBox.Entry e =
returnDecodingEntries
.getLast();
75
return
returnDecodingEntries
;
87
LinkedList<CompositionTimeToSample.Entry>
returnDecodingEntries
= new LinkedList<CompositionTimeToSample.Entry>();
90
if (
returnDecodingEntries
.isEmpty() ||
returnDecodingEntries
.getLast().getOffset() != nuDecodingTime) {
92
returnDecodingEntries
.add(e)
[
all
...]
AppendTrack.java
256
LinkedList<TimeToSampleBox.Entry>
returnDecodingEntries
= new LinkedList<TimeToSampleBox.Entry>();
259
if (
returnDecodingEntries
.isEmpty() ||
returnDecodingEntries
.getLast().getDelta() != nuDecodingTime) {
261
returnDecodingEntries
.add(e);
263
TimeToSampleBox.Entry e =
returnDecodingEntries
.getLast();
268
return
returnDecodingEntries
;
Completed in 291 milliseconds