Shaka Packager SDK
Loading...
Searching...
No Matches
ts_section_pes.cc
1// Copyright 2014 The Chromium Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#include <packager/media/formats/mp2t/ts_section_pes.h>
6
7#include <absl/log/check.h>
8#include <absl/log/log.h>
9
10#include <packager/macros/logging.h>
11#include <packager/media/base/bit_reader.h>
12#include <packager/media/base/timestamp.h>
13#include <packager/media/formats/mp2t/es_parser.h>
14#include <packager/media/formats/mp2t/mp2t_common.h>
15
16static const int kPesStartCode = 0x000001;
17
18// Given that |time| is coded using 33 bits,
19// UnrollTimestamp returns the corresponding unrolled timestamp.
20// The unrolled timestamp is defined by:
21// |time| + k * (2 ^ 33)
22// where k is estimated so that the unrolled timestamp
23// is as close as possible to |previous_unrolled_time|.
24static int64_t UnrollTimestamp(int64_t previous_unrolled_time, int64_t time) {
25 // Mpeg2 TS timestamps have an accuracy of 33 bits.
26 const int nbits = 33;
27
28 // |timestamp| has a precision of |nbits|
29 // so make sure the highest bits are set to 0.
30 DCHECK_EQ((time >> nbits), 0);
31
32 // Consider 3 possibilities to estimate the missing high bits of |time|.
33 int64_t previous_unrolled_time_high = (previous_unrolled_time >> nbits);
34 int64_t time0 = ((previous_unrolled_time_high - 1) << nbits) | time;
35 int64_t time1 = ((previous_unrolled_time_high + 0) << nbits) | time;
36 int64_t time2 = ((previous_unrolled_time_high + 1) << nbits) | time;
37
38 // Select the min absolute difference with the current time
39 // so as to ensure time continuity.
40 int64_t diff0 = time0 - previous_unrolled_time;
41 int64_t diff1 = time1 - previous_unrolled_time;
42 int64_t diff2 = time2 - previous_unrolled_time;
43 if (diff0 < 0)
44 diff0 = -diff0;
45 if (diff1 < 0)
46 diff1 = -diff1;
47 if (diff2 < 0)
48 diff2 = -diff2;
49
50 int64_t unrolled_time;
51 int64_t min_diff;
52 if (diff1 < diff0) {
53 unrolled_time = time1;
54 min_diff = diff1;
55 } else {
56 unrolled_time = time0;
57 min_diff = diff0;
58 }
59 if (diff2 < min_diff)
60 unrolled_time = time2;
61
62 return unrolled_time;
63}
64
65static bool IsTimestampSectionValid(int64_t timestamp_section) {
66 // |pts_section| has 40 bits:
67 // - starting with either '0010' or '0011' or '0001'
68 // - and ending with a marker bit.
69 // See ITU H.222 standard - PES section.
70
71 // Verify that all the marker bits are set to one.
72 return ((timestamp_section & 0x1) != 0) &&
73 ((timestamp_section & 0x10000) != 0) &&
74 ((timestamp_section & 0x100000000LL) != 0);
75}
76
77static int64_t ConvertTimestampSectionToTimestamp(int64_t timestamp_section) {
78 return (((timestamp_section >> 33) & 0x7) << 30) |
79 (((timestamp_section >> 17) & 0x7fff) << 15) |
80 (((timestamp_section >> 1) & 0x7fff) << 0);
81}
82
83namespace shaka {
84namespace media {
85namespace mp2t {
86
87TsSectionPes::TsSectionPes(std::unique_ptr<EsParser> es_parser)
88 : es_parser_(es_parser.release()),
89 wait_for_pusi_(true),
90 previous_pts_valid_(false),
91 previous_pts_(0),
92 previous_dts_valid_(false),
93 previous_dts_(0) {
94 DCHECK(es_parser_);
95}
96
97TsSectionPes::~TsSectionPes() {}
98
99bool TsSectionPes::Parse(bool payload_unit_start_indicator,
100 const uint8_t* buf,
101 int size) {
102 // Ignore partial PES.
103 if (wait_for_pusi_ && !payload_unit_start_indicator)
104 return true;
105
106 bool parse_result = true;
107 if (payload_unit_start_indicator) {
108 // Try emitting a packet since we might have a pending PES packet
109 // with an undefined size.
110 // In this case, a unit is emitted when the next unit is coming.
111 int raw_pes_size;
112 const uint8_t* raw_pes;
113 pes_byte_queue_.Peek(&raw_pes, &raw_pes_size);
114 if (raw_pes_size > 0)
115 parse_result = Emit(true);
116
117 // Reset the state.
118 ResetPesState();
119
120 // Update the state.
121 wait_for_pusi_ = false;
122 }
123
124 // Add the data to the parser state.
125 if (size > 0)
126 pes_byte_queue_.Push(buf, size);
127
128 // Try emitting the current PES packet.
129 return (parse_result && Emit(false));
130}
131
132bool TsSectionPes::Flush() {
133 // Try emitting a packet since we might have a pending PES packet
134 // with an undefined size.
135 RCHECK(Emit(true));
136
137 // Flush the underlying ES parser.
138 return es_parser_->Flush();
139}
140
141void TsSectionPes::Reset() {
142 ResetPesState();
143
144 previous_pts_valid_ = false;
145 previous_pts_ = 0;
146 previous_dts_valid_ = false;
147 previous_dts_ = 0;
148
149 es_parser_->Reset();
150}
151
152bool TsSectionPes::Emit(bool emit_for_unknown_size) {
153 int raw_pes_size;
154 const uint8_t* raw_pes;
155 pes_byte_queue_.Peek(&raw_pes, &raw_pes_size);
156
157 // A PES should be at least 6 bytes.
158 // Wait for more data to come if not enough bytes.
159 if (raw_pes_size < 6)
160 return true;
161
162 // Check whether we have enough data to start parsing.
163 int pes_packet_length =
164 (static_cast<int>(raw_pes[4]) << 8) | (static_cast<int>(raw_pes[5]));
165 if ((pes_packet_length == 0 && !emit_for_unknown_size) ||
166 (pes_packet_length != 0 && raw_pes_size < pes_packet_length + 6)) {
167 // Wait for more data to come either because:
168 // - there are not enough bytes,
169 // - or the PES size is unknown and the "force emit" flag is not set.
170 // (PES size might be unknown for video PES packet).
171 return true;
172 }
173 DVLOG(LOG_LEVEL_PES) << "pes_packet_length=" << pes_packet_length;
174
175 // Parse the packet.
176 bool parse_result = ParseInternal(raw_pes, raw_pes_size);
177
178 // Reset the state.
179 ResetPesState();
180
181 return parse_result;
182}
183
184bool TsSectionPes::ParseInternal(const uint8_t* raw_pes, int raw_pes_size) {
185 BitReader bit_reader(raw_pes, raw_pes_size);
186
187 // Read up to the pes_packet_length (6 bytes).
188 int packet_start_code_prefix;
189 int stream_id;
190 int pes_packet_length;
191 RCHECK(bit_reader.ReadBits(24, &packet_start_code_prefix));
192 RCHECK(bit_reader.ReadBits(8, &stream_id));
193 RCHECK(bit_reader.ReadBits(16, &pes_packet_length));
194
195 RCHECK(packet_start_code_prefix == kPesStartCode);
196 DVLOG(LOG_LEVEL_PES) << "stream_id=" << stream_id;
197 if (pes_packet_length == 0)
198 pes_packet_length = static_cast<int>(bit_reader.bits_available()) / 8;
199
200 // Ignore the PES for unknown stream IDs.
201 // ATSC Standard A/52:2012 3. GENERIC IDENTIFICATION OF AN AC-3 STREAM.
202 // AC3/E-AC3 stream uses private stream id.
203 const int kPrivateStream1 = 0xBD;
204 // See ITU H.222 Table 2-22 "Stream_id assignments"
205 bool is_audio_stream_id =
206 ((stream_id & 0xe0) == 0xc0) || stream_id == kPrivateStream1;
207 bool is_video_stream_id = ((stream_id & 0xf0) == 0xe0);
208 if (!is_audio_stream_id && !is_video_stream_id)
209 return true;
210
211 // Read up to "pes_header_data_length".
212 int dummy_2;
213 int PES_scrambling_control;
214 int PES_priority;
215 int data_alignment_indicator;
216 int copyright;
217 int original_or_copy;
218 int pts_dts_flags;
219 int escr_flag;
220 int es_rate_flag;
221 int dsm_trick_mode_flag;
222 int additional_copy_info_flag;
223 int pes_crc_flag;
224 int pes_extension_flag;
225 int pes_header_data_length;
226 RCHECK(bit_reader.ReadBits(2, &dummy_2));
227 RCHECK(dummy_2 == 0x2);
228 RCHECK(bit_reader.ReadBits(2, &PES_scrambling_control));
229 RCHECK(bit_reader.ReadBits(1, &PES_priority));
230 RCHECK(bit_reader.ReadBits(1, &data_alignment_indicator));
231 RCHECK(bit_reader.ReadBits(1, &copyright));
232 RCHECK(bit_reader.ReadBits(1, &original_or_copy));
233 RCHECK(bit_reader.ReadBits(2, &pts_dts_flags));
234 RCHECK(bit_reader.ReadBits(1, &escr_flag));
235 RCHECK(bit_reader.ReadBits(1, &es_rate_flag));
236 RCHECK(bit_reader.ReadBits(1, &dsm_trick_mode_flag));
237 RCHECK(bit_reader.ReadBits(1, &additional_copy_info_flag));
238 RCHECK(bit_reader.ReadBits(1, &pes_crc_flag));
239 RCHECK(bit_reader.ReadBits(1, &pes_extension_flag));
240 RCHECK(bit_reader.ReadBits(8, &pes_header_data_length));
241 int pes_header_start_size = static_cast<int>(bit_reader.bits_available()) / 8;
242
243 // Compute the size and the offset of the ES payload.
244 // "6" for the 6 bytes read before and including |pes_packet_length|.
245 // "3" for the 3 bytes read before and including |pes_header_data_length|.
246 int es_size = pes_packet_length - 3 - pes_header_data_length;
247 int es_offset = 6 + 3 + pes_header_data_length;
248 RCHECK(es_size >= 0);
249 RCHECK(es_offset + es_size <= raw_pes_size);
250
251 // Read the timing information section.
252 bool is_pts_valid = false;
253 bool is_dts_valid = false;
254 int64_t pts_section = 0;
255 int64_t dts_section = 0;
256 if (pts_dts_flags == 0x2) {
257 RCHECK(bit_reader.ReadBits(40, &pts_section));
258 RCHECK((((pts_section >> 36) & 0xf) == 0x2) &&
259 IsTimestampSectionValid(pts_section));
260 is_pts_valid = true;
261 }
262 if (pts_dts_flags == 0x3) {
263 RCHECK(bit_reader.ReadBits(40, &pts_section));
264 RCHECK(bit_reader.ReadBits(40, &dts_section));
265 RCHECK((((pts_section >> 36) & 0xf) == 0x3) &&
266 IsTimestampSectionValid(pts_section));
267 RCHECK((((dts_section >> 36) & 0xf) == 0x1) &&
268 IsTimestampSectionValid(dts_section));
269 is_pts_valid = true;
270 is_dts_valid = true;
271 }
272
273 // Convert and unroll the timestamps.
274 int64_t media_pts(kNoTimestamp);
275 int64_t media_dts(kNoTimestamp);
276 if (is_dts_valid) {
277 int64_t dts = ConvertTimestampSectionToTimestamp(dts_section);
278 if (previous_dts_valid_)
279 dts = UnrollTimestamp(previous_dts_, dts);
280 previous_dts_ = dts;
281 previous_dts_valid_ = true;
282 media_dts = dts;
283 }
284 if (is_pts_valid) {
285 int64_t pts = ConvertTimestampSectionToTimestamp(pts_section);
286 if (previous_pts_valid_) {
287 pts = UnrollTimestamp(previous_pts_, pts);
288 } else {
289 if (media_dts != kNoTimestamp) {
290 pts = UnrollTimestamp(media_dts, pts);
291 }
292 }
293 previous_pts_ = pts;
294 previous_pts_valid_ = true;
295 media_pts = pts;
296 }
297
298 // Discard the rest of the PES packet header.
299 DCHECK_EQ(bit_reader.bits_available() % 8, 0u);
300 int pes_header_remaining_size =
301 pes_header_data_length -
302 (pes_header_start_size -
303 static_cast<int>(bit_reader.bits_available()) / 8);
304 RCHECK(pes_header_remaining_size >= 0);
305
306 // Read the PES packet.
307 DVLOG(LOG_LEVEL_PES) << "Emit a reassembled PES:"
308 << " size=" << es_size << " pts=" << media_pts
309 << " dts=" << media_dts << " data_alignment_indicator="
310 << data_alignment_indicator;
311 return es_parser_->Parse(&raw_pes[es_offset], es_size, media_pts, media_dts);
312}
313
314void TsSectionPes::ResetPesState() {
315 pes_byte_queue_.Reset();
316 wait_for_pusi_ = true;
317}
318
319} // namespace mp2t
320} // namespace media
321} // namespace shaka
All the methods that are virtual are virtual for mocking.