28
28
/**
29
29
* A seeker that supports seeking within TS stream using binary search.
30
30
*
31
- * <p>This seeker uses the first and last PCR values within the stream, as well as the stream
32
- * duration to interpolate the PCR value of the seeking position. Then it performs binary search
33
- * within the stream to find a packets whose PCR value is within {@link #SEEK_TOLERANCE_US} from the
34
- * target PCR .
31
+ * <p>This seeker uses the first and last DTS values within the stream, as well as the stream
32
+ * duration to interpolate the DTS value of the seeking position. Then it performs binary search
33
+ * within the stream to find a packets whose DTS value is within {@link #SEEK_TOLERANCE_US} from the
34
+ * target DTS .
35
35
*/
36
36
/* package */ final class TsBinarySearchSeeker extends BinarySearchSeeker {
37
37
38
38
private static final long SEEK_TOLERANCE_US = 100_000 ;
39
39
private static final int MINIMUM_SEARCH_RANGE_BYTES = 5 * TsExtractor .TS_PACKET_SIZE ;
40
40
41
41
public TsBinarySearchSeeker (
42
- TimestampAdjuster pcrTimestampAdjuster ,
42
+ TimestampAdjuster timestampAdjuster ,
43
43
long streamDurationUs ,
44
44
long inputLength ,
45
- int pcrPid ,
45
+ int selectedPid ,
46
46
int timestampSearchBytes ) {
47
47
super (
48
48
new DefaultSeekTimestampConverter (),
49
- new TsPcrSeeker ( pcrPid , pcrTimestampAdjuster , timestampSearchBytes ),
49
+ new TsTimestampSeeker ( selectedPid , timestampAdjuster , timestampSearchBytes ),
50
50
streamDurationUs ,
51
51
/* floorTimePosition= */ 0 ,
52
52
/* ceilingTimePosition= */ streamDurationUs + 1 ,
@@ -57,25 +57,25 @@ public TsBinarySearchSeeker(
57
57
}
58
58
59
59
/**
60
- * A {@link TimestampSeeker} implementation that looks for a given PCR timestamp at a given
60
+ * A {@link TimestampSeeker} implementation that looks for a given DTS timestamp at a given
61
61
* position in a TS stream.
62
62
*
63
- * <p>Given a PCR timestamp, and a position within a TS stream, this seeker will peek up to {@link
63
+ * <p>Given a DTS timestamp, and a position within a TS stream, this seeker will peek up to {@link
64
64
* #timestampSearchBytes} from that stream position, look for all packets with PID equal to
65
- * PCR_PID , and then compare the PCR timestamps (if available) of these packets to the target
65
+ * SELECTED_PID , and then compare the DTS timestamps (if available) of these packets to the target
66
66
* timestamp.
67
67
*/
68
- private static final class TsPcrSeeker implements TimestampSeeker {
68
+ private static final class TsTimestampSeeker implements TimestampSeeker {
69
69
70
- private final TimestampAdjuster pcrTimestampAdjuster ;
70
+ private final TimestampAdjuster timestampAdjuster ;
71
71
private final ParsableByteArray packetBuffer ;
72
- private final int pcrPid ;
72
+ private final int selectedPid ;
73
73
private final int timestampSearchBytes ;
74
74
75
- public TsPcrSeeker (
76
- int pcrPid , TimestampAdjuster pcrTimestampAdjuster , int timestampSearchBytes ) {
77
- this .pcrPid = pcrPid ;
78
- this .pcrTimestampAdjuster = pcrTimestampAdjuster ;
75
+ public TsTimestampSeeker (
76
+ int selectedPid , TimestampAdjuster timestampAdjuster , int timestampSearchBytes ) {
77
+ this .selectedPid = selectedPid ;
78
+ this .timestampAdjuster = timestampAdjuster ;
79
79
this .timestampSearchBytes = timestampSearchBytes ;
80
80
packetBuffer = new ParsableByteArray ();
81
81
}
@@ -89,16 +89,16 @@ public TimestampSearchResult searchForTimestamp(ExtractorInput input, long targe
89
89
packetBuffer .reset (bytesToSearch );
90
90
input .peekFully (packetBuffer .getData (), /* offset= */ 0 , bytesToSearch );
91
91
92
- return searchForPcrValueInBuffer (packetBuffer , targetTimestamp , inputPosition );
92
+ return searchForDtsValueInBuffer (packetBuffer , targetTimestamp , inputPosition );
93
93
}
94
94
95
- private TimestampSearchResult searchForPcrValueInBuffer (
96
- ParsableByteArray packetBuffer , long targetPcrTimeUs , long bufferStartOffset ) {
95
+ private TimestampSearchResult searchForDtsValueInBuffer (
96
+ ParsableByteArray packetBuffer , long targetDtsTimeUs , long bufferStartOffset ) {
97
97
int limit = packetBuffer .limit ();
98
98
99
99
long startOfLastPacketPosition = C .INDEX_UNSET ;
100
100
long endOfLastPacketPosition = C .INDEX_UNSET ;
101
- long lastPcrTimeUsInRange = C .TIME_UNSET ;
101
+ long lastDtsTimeUsInRange = C .TIME_UNSET ;
102
102
103
103
while (packetBuffer .bytesLeft () >= TsExtractor .TS_PACKET_SIZE ) {
104
104
int startOfPacket =
@@ -107,34 +107,34 @@ private TimestampSearchResult searchForPcrValueInBuffer(
107
107
if (endOfPacket > limit ) {
108
108
break ;
109
109
}
110
- long pcrValue = TsUtil .readPcrFromPacket (packetBuffer , startOfPacket , pcrPid );
111
- if (pcrValue != C .TIME_UNSET ) {
112
- long pcrTimeUs = pcrTimestampAdjuster .adjustTsTimestamp (pcrValue );
113
- if (pcrTimeUs > targetPcrTimeUs ) {
114
- if (lastPcrTimeUsInRange == C .TIME_UNSET ) {
115
- // First PCR timestamp is already over target.
116
- return TimestampSearchResult .overestimatedResult (pcrTimeUs , bufferStartOffset );
110
+ long dtsValue = TsUtil .readDtsFromPacket (packetBuffer , startOfPacket , selectedPid );
111
+ if (dtsValue != C .TIME_UNSET ) {
112
+ long dtsTimeUs = timestampAdjuster .adjustTsTimestamp (dtsValue );
113
+ if (dtsTimeUs > targetDtsTimeUs ) {
114
+ if (lastDtsTimeUsInRange == C .TIME_UNSET ) {
115
+ // First DTS timestamp is already over target.
116
+ return TimestampSearchResult .overestimatedResult (dtsTimeUs , bufferStartOffset );
117
117
} else {
118
- // Last PCR timestamp < target timestamp < this timestamp.
118
+ // Last DTS timestamp < target timestamp < this timestamp.
119
119
return TimestampSearchResult .targetFoundResult (
120
120
bufferStartOffset + startOfLastPacketPosition );
121
121
}
122
- } else if (pcrTimeUs + SEEK_TOLERANCE_US > targetPcrTimeUs ) {
122
+ } else if (dtsTimeUs + SEEK_TOLERANCE_US > targetDtsTimeUs ) {
123
123
long startOfPacketInStream = bufferStartOffset + startOfPacket ;
124
124
return TimestampSearchResult .targetFoundResult (startOfPacketInStream );
125
125
}
126
126
127
- lastPcrTimeUsInRange = pcrTimeUs ;
127
+ lastDtsTimeUsInRange = dtsTimeUs ;
128
128
startOfLastPacketPosition = startOfPacket ;
129
129
}
130
130
packetBuffer .setPosition (endOfPacket );
131
131
endOfLastPacketPosition = endOfPacket ;
132
132
}
133
133
134
- if (lastPcrTimeUsInRange != C .TIME_UNSET ) {
134
+ if (lastDtsTimeUsInRange != C .TIME_UNSET ) {
135
135
long endOfLastPacketPositionInStream = bufferStartOffset + endOfLastPacketPosition ;
136
136
return TimestampSearchResult .underestimatedResult (
137
- lastPcrTimeUsInRange , endOfLastPacketPositionInStream );
137
+ lastDtsTimeUsInRange , endOfLastPacketPositionInStream );
138
138
} else {
139
139
return TimestampSearchResult .NO_TIMESTAMP_IN_RANGE_RESULT ;
140
140
}
0 commit comments