5 #include <packager/media/formats/mp2t/ts_section_pes.h>
7 #include <absl/log/check.h>
8 #include <absl/log/log.h>
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>
16 static const int kPesStartCode = 0x000001;
24 static int64_t UnrollTimestamp(int64_t previous_unrolled_time, int64_t time) {
30 DCHECK_EQ((time >> nbits), 0);
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;
40 int64_t diff0 = time0 - previous_unrolled_time;
41 int64_t diff1 = time1 - previous_unrolled_time;
42 int64_t diff2 = time2 - previous_unrolled_time;
50 int64_t unrolled_time;
53 unrolled_time = time1;
56 unrolled_time = time0;
60 unrolled_time = time2;
65 static bool IsTimestampSectionValid(int64_t timestamp_section) {
72 return ((timestamp_section & 0x1) != 0) &&
73 ((timestamp_section & 0x10000) != 0) &&
74 ((timestamp_section & 0x100000000LL) != 0);
77 static 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);
87 TsSectionPes::TsSectionPes(std::unique_ptr<EsParser> es_parser)
88 : es_parser_(es_parser.release()),
90 previous_pts_valid_(false),
92 previous_dts_valid_(false),
97 TsSectionPes::~TsSectionPes() {
100 bool TsSectionPes::Parse(
bool payload_unit_start_indicator,
104 if (wait_for_pusi_ && !payload_unit_start_indicator)
107 bool parse_result =
true;
108 if (payload_unit_start_indicator) {
113 const uint8_t* raw_pes;
114 pes_byte_queue_.Peek(&raw_pes, &raw_pes_size);
115 if (raw_pes_size > 0)
116 parse_result = Emit(
true);
122 wait_for_pusi_ =
false;
127 pes_byte_queue_.Push(buf, size);
130 return (parse_result && Emit(
false));
133 bool TsSectionPes::Flush() {
139 return es_parser_->Flush();
142 void TsSectionPes::Reset() {
145 previous_pts_valid_ =
false;
147 previous_dts_valid_ =
false;
153 bool TsSectionPes::Emit(
bool emit_for_unknown_size) {
155 const uint8_t* raw_pes;
156 pes_byte_queue_.Peek(&raw_pes, &raw_pes_size);
160 if (raw_pes_size < 6)
164 int pes_packet_length =
165 (
static_cast<int>(raw_pes[4]) << 8) |
166 (
static_cast<int>(raw_pes[5]));
167 if ((pes_packet_length == 0 && !emit_for_unknown_size) ||
168 (pes_packet_length != 0 && raw_pes_size < pes_packet_length + 6)) {
175 DVLOG(LOG_LEVEL_PES) <<
"pes_packet_length=" << pes_packet_length;
178 bool parse_result = ParseInternal(raw_pes, raw_pes_size);
186 bool TsSectionPes::ParseInternal(
const uint8_t* raw_pes,
int raw_pes_size) {
187 BitReader bit_reader(raw_pes, raw_pes_size);
190 int packet_start_code_prefix;
192 int pes_packet_length;
193 RCHECK(bit_reader.ReadBits(24, &packet_start_code_prefix));
194 RCHECK(bit_reader.ReadBits(8, &stream_id));
195 RCHECK(bit_reader.ReadBits(16, &pes_packet_length));
197 RCHECK(packet_start_code_prefix == kPesStartCode);
198 DVLOG(LOG_LEVEL_PES) <<
"stream_id=" << stream_id;
199 if (pes_packet_length == 0)
200 pes_packet_length =
static_cast<int>(bit_reader.bits_available()) / 8;
205 const int kPrivateStream1 = 0xBD;
207 bool is_audio_stream_id =
208 ((stream_id & 0xe0) == 0xc0) || stream_id == kPrivateStream1;
209 bool is_video_stream_id = ((stream_id & 0xf0) == 0xe0);
210 if (!is_audio_stream_id && !is_video_stream_id)
215 int PES_scrambling_control;
217 int data_alignment_indicator;
219 int original_or_copy;
223 int dsm_trick_mode_flag;
224 int additional_copy_info_flag;
226 int pes_extension_flag;
227 int pes_header_data_length;
228 RCHECK(bit_reader.ReadBits(2, &dummy_2));
229 RCHECK(dummy_2 == 0x2);
230 RCHECK(bit_reader.ReadBits(2, &PES_scrambling_control));
231 RCHECK(bit_reader.ReadBits(1, &PES_priority));
232 RCHECK(bit_reader.ReadBits(1, &data_alignment_indicator));
233 RCHECK(bit_reader.ReadBits(1, ©right));
234 RCHECK(bit_reader.ReadBits(1, &original_or_copy));
235 RCHECK(bit_reader.ReadBits(2, &pts_dts_flags));
236 RCHECK(bit_reader.ReadBits(1, &escr_flag));
237 RCHECK(bit_reader.ReadBits(1, &es_rate_flag));
238 RCHECK(bit_reader.ReadBits(1, &dsm_trick_mode_flag));
239 RCHECK(bit_reader.ReadBits(1, &additional_copy_info_flag));
240 RCHECK(bit_reader.ReadBits(1, &pes_crc_flag));
241 RCHECK(bit_reader.ReadBits(1, &pes_extension_flag));
242 RCHECK(bit_reader.ReadBits(8, &pes_header_data_length));
243 int pes_header_start_size =
static_cast<int>(bit_reader.bits_available()) / 8;
248 int es_size = pes_packet_length - 3 - pes_header_data_length;
249 int es_offset = 6 + 3 + pes_header_data_length;
250 RCHECK(es_size >= 0);
251 RCHECK(es_offset + es_size <= raw_pes_size);
254 bool is_pts_valid =
false;
255 bool is_dts_valid =
false;
256 int64_t pts_section = 0;
257 int64_t dts_section = 0;
258 if (pts_dts_flags == 0x2) {
259 RCHECK(bit_reader.ReadBits(40, &pts_section));
260 RCHECK((((pts_section >> 36) & 0xf) == 0x2) &&
261 IsTimestampSectionValid(pts_section));
264 if (pts_dts_flags == 0x3) {
265 RCHECK(bit_reader.ReadBits(40, &pts_section));
266 RCHECK(bit_reader.ReadBits(40, &dts_section));
267 RCHECK((((pts_section >> 36) & 0xf) == 0x3) &&
268 IsTimestampSectionValid(pts_section));
269 RCHECK((((dts_section >> 36) & 0xf) == 0x1) &&
270 IsTimestampSectionValid(dts_section));
276 int64_t media_pts(kNoTimestamp);
277 int64_t media_dts(kNoTimestamp);
279 int64_t dts = ConvertTimestampSectionToTimestamp(dts_section);
280 if (previous_dts_valid_)
281 dts = UnrollTimestamp(previous_dts_, dts);
283 previous_dts_valid_ =
true;
287 int64_t pts = ConvertTimestampSectionToTimestamp(pts_section);
288 if (previous_pts_valid_) {
289 pts = UnrollTimestamp(previous_pts_, pts);
291 if (media_dts != kNoTimestamp) {
292 pts = UnrollTimestamp(media_dts, pts);
296 previous_pts_valid_ =
true;
301 DCHECK_EQ(bit_reader.bits_available() % 8, 0u);
302 int pes_header_remaining_size =
303 pes_header_data_length -
304 (pes_header_start_size -
305 static_cast<int>(bit_reader.bits_available()) / 8);
306 RCHECK(pes_header_remaining_size >= 0);
309 DVLOG(LOG_LEVEL_PES) <<
"Emit a reassembled PES:"
310 <<
" size=" << es_size <<
" pts=" << media_pts
311 <<
" dts=" << media_dts <<
" data_alignment_indicator="
312 << data_alignment_indicator;
313 return es_parser_->Parse(&raw_pes[es_offset], es_size, media_pts, media_dts);
316 void TsSectionPes::ResetPesState() {
317 pes_byte_queue_.Reset();
318 wait_for_pusi_ =
true;
All the methods that are virtual are virtual for mocking.