5 #include "packager/media/formats/mp2t/ts_section_pes.h"
7 #include "packager/base/logging.h"
8 #include "packager/base/strings/string_number_conversions.h"
9 #include "packager/media/base/bit_reader.h"
10 #include "packager/media/base/timestamp.h"
11 #include "packager/media/formats/mp2t/es_parser.h"
12 #include "packager/media/formats/mp2t/mp2t_common.h"
14 static const int kPesStartCode = 0x000001;
22 static int64_t UnrollTimestamp(int64_t previous_unrolled_time, int64_t time) {
28 DCHECK_EQ((time >> nbits), 0);
31 int64_t previous_unrolled_time_high = (previous_unrolled_time >> nbits);
32 int64_t time0 = ((previous_unrolled_time_high - 1) << nbits) | time;
33 int64_t time1 = ((previous_unrolled_time_high + 0) << nbits) | time;
34 int64_t time2 = ((previous_unrolled_time_high + 1) << nbits) | time;
38 int64_t diff0 = time0 - previous_unrolled_time;
39 int64_t diff1 = time1 - previous_unrolled_time;
40 int64_t diff2 = time2 - previous_unrolled_time;
48 int64_t unrolled_time;
51 unrolled_time = time1;
54 unrolled_time = time0;
58 unrolled_time = time2;
63 static bool IsTimestampSectionValid(int64_t timestamp_section) {
70 return ((timestamp_section & 0x1) != 0) &&
71 ((timestamp_section & 0x10000) != 0) &&
72 ((timestamp_section & 0x100000000LL) != 0);
75 static int64_t ConvertTimestampSectionToTimestamp(int64_t timestamp_section) {
76 return (((timestamp_section >> 33) & 0x7) << 30) |
77 (((timestamp_section >> 17) & 0x7fff) << 15) |
78 (((timestamp_section >> 1) & 0x7fff) << 0);
85 TsSectionPes::TsSectionPes(std::unique_ptr<EsParser> es_parser)
86 : es_parser_(es_parser.release()),
88 previous_pts_valid_(false),
90 previous_dts_valid_(false),
95 TsSectionPes::~TsSectionPes() {
98 bool TsSectionPes::Parse(
bool payload_unit_start_indicator,
102 if (wait_for_pusi_ && !payload_unit_start_indicator)
105 bool parse_result =
true;
106 if (payload_unit_start_indicator) {
111 const uint8_t* raw_pes;
112 pes_byte_queue_.
Peek(&raw_pes, &raw_pes_size);
113 if (raw_pes_size > 0)
114 parse_result = Emit(
true);
120 wait_for_pusi_ =
false;
125 pes_byte_queue_.
Push(buf, size);
128 return (parse_result && Emit(
false));
131 void TsSectionPes::Flush() {
140 void TsSectionPes::Reset() {
143 previous_pts_valid_ =
false;
145 previous_dts_valid_ =
false;
151 bool TsSectionPes::Emit(
bool emit_for_unknown_size) {
153 const uint8_t* raw_pes;
154 pes_byte_queue_.
Peek(&raw_pes, &raw_pes_size);
158 if (raw_pes_size < 6)
162 int pes_packet_length =
163 (
static_cast<int>(raw_pes[4]) << 8) |
164 (
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)) {
173 DVLOG(LOG_LEVEL_PES) <<
"pes_packet_length=" << pes_packet_length;
176 bool parse_result = ParseInternal(raw_pes, raw_pes_size);
184 bool TsSectionPes::ParseInternal(
const uint8_t* raw_pes,
int raw_pes_size) {
185 BitReader bit_reader(raw_pes, raw_pes_size);
188 int packet_start_code_prefix;
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));
195 RCHECK(packet_start_code_prefix == kPesStartCode);
196 DVLOG(LOG_LEVEL_PES) <<
"stream_id=" << std::hex << stream_id << std::dec;
197 if (pes_packet_length == 0)
198 pes_packet_length =
static_cast<int>(bit_reader.bits_available()) / 8;
202 bool is_audio_stream_id = ((stream_id & 0xe0) == 0xc0);
203 bool is_video_stream_id = ((stream_id & 0xf0) == 0xe0);
204 if (!is_audio_stream_id && !is_video_stream_id)
209 int PES_scrambling_control;
211 int data_alignment_indicator;
213 int original_or_copy;
217 int dsm_trick_mode_flag;
218 int additional_copy_info_flag;
220 int pes_extension_flag;
221 int pes_header_data_length;
222 RCHECK(bit_reader.ReadBits(2, &dummy_2));
223 RCHECK(dummy_2 == 0x2);
224 RCHECK(bit_reader.ReadBits(2, &PES_scrambling_control));
225 RCHECK(bit_reader.ReadBits(1, &PES_priority));
226 RCHECK(bit_reader.ReadBits(1, &data_alignment_indicator));
227 RCHECK(bit_reader.ReadBits(1, ©right));
228 RCHECK(bit_reader.ReadBits(1, &original_or_copy));
229 RCHECK(bit_reader.ReadBits(2, &pts_dts_flags));
230 RCHECK(bit_reader.ReadBits(1, &escr_flag));
231 RCHECK(bit_reader.ReadBits(1, &es_rate_flag));
232 RCHECK(bit_reader.ReadBits(1, &dsm_trick_mode_flag));
233 RCHECK(bit_reader.ReadBits(1, &additional_copy_info_flag));
234 RCHECK(bit_reader.ReadBits(1, &pes_crc_flag));
235 RCHECK(bit_reader.ReadBits(1, &pes_extension_flag));
236 RCHECK(bit_reader.ReadBits(8, &pes_header_data_length));
237 int pes_header_start_size =
static_cast<int>(bit_reader.bits_available()) / 8;
242 int es_size = pes_packet_length - 3 - pes_header_data_length;
243 int es_offset = 6 + 3 + pes_header_data_length;
244 RCHECK(es_size >= 0);
245 RCHECK(es_offset + es_size <= raw_pes_size);
248 bool is_pts_valid =
false;
249 bool is_dts_valid =
false;
250 int64_t pts_section = 0;
251 int64_t dts_section = 0;
252 if (pts_dts_flags == 0x2) {
253 RCHECK(bit_reader.ReadBits(40, &pts_section));
254 RCHECK((((pts_section >> 36) & 0xf) == 0x2) &&
255 IsTimestampSectionValid(pts_section));
258 if (pts_dts_flags == 0x3) {
259 RCHECK(bit_reader.ReadBits(40, &pts_section));
260 RCHECK(bit_reader.ReadBits(40, &dts_section));
261 RCHECK((((pts_section >> 36) & 0xf) == 0x3) &&
262 IsTimestampSectionValid(pts_section));
263 RCHECK((((dts_section >> 36) & 0xf) == 0x1) &&
264 IsTimestampSectionValid(dts_section));
270 int64_t media_pts(kNoTimestamp);
271 int64_t media_dts(kNoTimestamp);
273 int64_t pts = ConvertTimestampSectionToTimestamp(pts_section);
274 if (previous_pts_valid_)
275 pts = UnrollTimestamp(previous_pts_, pts);
277 previous_pts_valid_ =
true;
281 int64_t dts = ConvertTimestampSectionToTimestamp(dts_section);
282 if (previous_dts_valid_)
283 dts = UnrollTimestamp(previous_dts_, dts);
285 previous_dts_valid_ =
true;
290 DCHECK_EQ(bit_reader.bits_available() % 8, 0u);
291 int pes_header_remaining_size =
292 pes_header_data_length -
293 (pes_header_start_size -
294 static_cast<int>(bit_reader.bits_available()) / 8);
295 RCHECK(pes_header_remaining_size >= 0);
299 <<
"Emit a reassembled PES:"
300 <<
" size=" << es_size
301 <<
" pts=" << media_pts
302 <<
" dts=" << media_dts
303 <<
" data_alignment_indicator=" << data_alignment_indicator;
304 return es_parser_->Parse(&raw_pes[es_offset], es_size, media_pts, media_dts);
307 void TsSectionPes::ResetPesState() {
308 pes_byte_queue_.
Reset();
309 wait_for_pusi_ =
true;