Shaka Packager SDK
ts_writer.cc
1 // Copyright 2016 Google Inc. All rights reserved.
2 //
3 // Use of this source code is governed by a BSD-style
4 // license that can be found in the LICENSE file or at
5 // https://developers.google.com/open-source/licenses/bsd
6 
7 #include "packager/media/formats/mp2t/ts_writer.h"
8 
9 #include <algorithm>
10 
11 #include "packager/base/logging.h"
12 #include "packager/media/base/buffer_writer.h"
13 #include "packager/media/base/media_sample.h"
14 #include "packager/media/formats/mp2t/pes_packet.h"
15 #include "packager/media/formats/mp2t/program_map_table_writer.h"
16 #include "packager/media/formats/mp2t/ts_packet_writer_util.h"
17 
18 namespace shaka {
19 namespace media {
20 namespace mp2t {
21 
22 namespace {
23 
24 // For all the pointer fields in the following PAT and PMTs, they are not really
25 // part of PAT or PMT but it's there so that TsPacket can point to a memory
26 // location that starts from pointer field.
27 const uint8_t kProgramAssociationTableId = 0x00;
28 
29 // This PAT can be used for both encrypted and clear.
30 const uint8_t kPat[] = {
31  0x00, // pointer field
32  kProgramAssociationTableId,
33  0xB0, // The last 2 '00' assumes that this PAT is not very long.
34  0x0D, // Length of the rest of this array.
35  0x00, 0x00, // Transport stream ID is 0.
36  0xC1, // version number 0, current next indicator 1.
37  0x00, // section number
38  0x00, // last section number
39  // program number -> PMT PID mapping.
40  0x00, 0x01, // program number is 1.
41  0xE0, // first 3 bits is reserved.
42  ProgramMapTableWriter::kPmtPid,
43  // CRC32.
44  0xF9, 0x62, 0xF5, 0x8B,
45 };
46 
47 const bool kHasPcr = true;
48 const bool kPayloadUnitStartIndicator = true;
49 
50 // This is the size of the first few fields in a TS packet, i.e. TS packet size
51 // without adaptation field or the payload.
52 const int kTsPacketHeaderSize = 4;
53 const int kTsPacketSize = 188;
54 const int kTsPacketMaximumPayloadSize =
55  kTsPacketSize - kTsPacketHeaderSize;
56 
57 const size_t kMaxPesPacketLengthValue = 0xFFFF;
58 
59 void WritePatToBuffer(const uint8_t* pat,
60  int pat_size,
61  ContinuityCounter* continuity_counter,
62  BufferWriter* writer) {
63  const int kPatPid = 0;
64  WritePayloadToBufferWriter(pat, pat_size, kPayloadUnitStartIndicator, kPatPid,
65  !kHasPcr, 0, continuity_counter, writer);
66 }
67 
68 // The only difference between writing PTS or DTS is the leading bits.
69 void WritePtsOrDts(uint8_t leading_bits,
70  uint64_t pts_or_dts,
71  BufferWriter* writer) {
72  // First byte has 3 MSB of PTS.
73  uint8_t first_byte =
74  leading_bits << 4 | (((pts_or_dts >> 30) & 0x07) << 1) | 1;
75  // Second byte has the next 8 bits of pts.
76  uint8_t second_byte = (pts_or_dts >> 22) & 0xFF;
77  // Third byte has the next 7 bits of pts followed by a marker bit.
78  uint8_t third_byte = (((pts_or_dts >> 15) & 0x7F) << 1) | 1;
79  // Fourth byte has the next 8 bits of pts.
80  uint8_t fourth_byte = ((pts_or_dts >> 7) & 0xFF);
81  // Fifth byte has the last 7 bits of pts followed by a marker bit.
82  uint8_t fifth_byte = ((pts_or_dts & 0x7F) << 1) | 1;
83  writer->AppendInt(first_byte);
84  writer->AppendInt(second_byte);
85  writer->AppendInt(third_byte);
86  writer->AppendInt(fourth_byte);
87  writer->AppendInt(fifth_byte);
88 }
89 
90 bool WritePesToBuffer(const PesPacket& pes,
91  ContinuityCounter* continuity_counter,
92  BufferWriter* current_buffer) {
93  // The size of the length field.
94  const int kAdaptationFieldLengthSize = 1;
95  // The size of the flags field.
96  const int kAdaptationFieldHeaderSize = 1;
97  const int kPcrFieldSize = 6;
98  const int kTsPacketMaxPayloadWithPcr =
99  kTsPacketMaximumPayloadSize - kAdaptationFieldLengthSize -
100  kAdaptationFieldHeaderSize - kPcrFieldSize;
101  const uint64_t pcr_base = pes.has_dts() ? pes.dts() : pes.pts();
102  const int pid = ProgramMapTableWriter::kElementaryPid;
103 
104  // This writer will hold part of PES packet after PES_packet_length field.
105  BufferWriter pes_header_writer;
106  // The first bit must be '10' for PES with video or audio stream id. The other
107  // flags (bits) don't matter so they are 0.
108  pes_header_writer.AppendInt(static_cast<uint8_t>(0x80));
109  pes_header_writer.AppendInt(
110  static_cast<uint8_t>(static_cast<int>(pes.has_pts()) << 7 |
111  static_cast<int>(pes.has_dts()) << 6
112  // Other fields are all 0.
113  ));
114  uint8_t pes_header_data_length = 0;
115  if (pes.has_pts())
116  pes_header_data_length += 5;
117  if (pes.has_dts())
118  pes_header_data_length += 5;
119  pes_header_writer.AppendInt(pes_header_data_length);
120 
121  if (pes.has_pts() && pes.has_dts()) {
122  WritePtsOrDts(0x03, pes.pts(), &pes_header_writer);
123  WritePtsOrDts(0x01, pes.dts(), &pes_header_writer);
124  } else if (pes.has_pts()) {
125  WritePtsOrDts(0x02, pes.pts(), &pes_header_writer);
126  }
127 
128  // Put the first TS packet's payload into a buffer. This contains the PES
129  // packet's header.
130  BufferWriter first_ts_packet_buffer(kTsPacketSize);
131  first_ts_packet_buffer.AppendNBytes(static_cast<uint64_t>(0x000001), 3);
132  first_ts_packet_buffer.AppendInt(pes.stream_id());
133  const size_t pes_packet_length = pes.data().size() + pes_header_writer.Size();
134  first_ts_packet_buffer.AppendInt(static_cast<uint16_t>(
135  pes_packet_length > kMaxPesPacketLengthValue ? 0 : pes_packet_length));
136  first_ts_packet_buffer.AppendBuffer(pes_header_writer);
137 
138  const size_t available_payload =
139  kTsPacketMaxPayloadWithPcr - first_ts_packet_buffer.Size();
140  const size_t bytes_consumed = std::min(pes.data().size(), available_payload);
141  first_ts_packet_buffer.AppendArray(pes.data().data(), bytes_consumed);
142 
143  BufferWriter output_writer;
144  WritePayloadToBufferWriter(first_ts_packet_buffer.Buffer(),
145  first_ts_packet_buffer.Size(),
146  kPayloadUnitStartIndicator, pid, kHasPcr, pcr_base,
147  continuity_counter, &output_writer);
148 
149  const size_t remaining_pes_data_size = pes.data().size() - bytes_consumed;
150  if (remaining_pes_data_size > 0) {
151  WritePayloadToBufferWriter(pes.data().data() + bytes_consumed,
152  remaining_pes_data_size,
153  !kPayloadUnitStartIndicator, pid, !kHasPcr, 0,
154  continuity_counter, &output_writer);
155  }
156 
157  current_buffer->AppendBuffer(output_writer);
158  return true;
159 }
160 
161 } // namespace
162 
163 TsWriter::TsWriter(std::unique_ptr<ProgramMapTableWriter> pmt_writer)
164  : pmt_writer_(std::move(pmt_writer)) {}
165 
166 TsWriter::~TsWriter() {}
167 
169  BufferWriter psi;
170  WritePatToBuffer(kPat, arraysize(kPat), &pat_continuity_counter_, &psi);
171  if (encrypted_) {
172  if (!pmt_writer_->EncryptedSegmentPmt(&psi)) {
173  return false;
174  }
175  } else {
176  if (!pmt_writer_->ClearSegmentPmt(&psi)) {
177  return false;
178  }
179  }
180  buffer->AppendBuffer(psi);
181 
182  return true;
183 }
184 
186  encrypted_ = true;
187 }
188 
189 bool TsWriter::AddPesPacket(std::unique_ptr<PesPacket> pes_packet,
190  BufferWriter* buffer) {
191 
192  if (!WritePesToBuffer(*pes_packet, &elementary_stream_continuity_counter_,
193  buffer)) {
194  LOG(ERROR) << "Failed to write pes to buffer.";
195  return false;
196  }
197 
198  // No need to keep pes_packet around so not passing it anywhere.
199  return true;
200 }
201 
202 } // namespace mp2t
203 } // namespace media
204 } // namespace shaka
shaka::media::mp2t::TsWriter::AddPesPacket
virtual bool AddPesPacket(std::unique_ptr< PesPacket > pes_packet, BufferWriter *buffer)
Definition: ts_writer.cc:189
shaka::media::BufferWriter
Definition: buffer_writer.h:23
shaka
All the methods that are virtual are virtual for mocking.
Definition: gflags_hex_bytes.cc:11
shaka::media::mp2t::TsWriter::SignalEncrypted
virtual void SignalEncrypted()
Signals the writer that the rest of the segments are encrypted.
Definition: ts_writer.cc:185
shaka::media::mp2t::TsWriter::NewSegment
virtual bool NewSegment(BufferWriter *buffer)
Definition: ts_writer.cc:168