DASH Media Packaging SDK
 All Classes Namespaces Functions Variables Typedefs Enumerations Enumerator
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/audio_stream_info.h"
13 #include "packager/media/base/buffer_writer.h"
14 #include "packager/media/base/stream_info.h"
15 #include "packager/media/base/video_stream_info.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 WritePesToFile(const PesPacket& pes,
91  ContinuityCounter* continuity_counter,
92  File* file) {
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  return output_writer.WriteToFile(file).ok();
157 }
158 
159 } // namespace
160 
161 TsWriter::TsWriter() {}
162 TsWriter::~TsWriter() {}
163 
164 bool TsWriter::Initialize(const StreamInfo& stream_info) {
165  const StreamType stream_type = stream_info.stream_type();
166  if (stream_type != StreamType::kStreamVideo &&
167  stream_type != StreamType::kStreamAudio) {
168  LOG(ERROR) << "TsWriter cannot handle stream type " << stream_type
169  << " yet.";
170  return false;
171  }
172 
173  if (stream_info.stream_type() == StreamType::kStreamVideo) {
174  const VideoStreamInfo& video_stream_info =
175  static_cast<const VideoStreamInfo&>(stream_info);
176  if (video_stream_info.codec() != Codec::kCodecH264) {
177  LOG(ERROR) << "TsWriter cannot handle video codec "
178  << video_stream_info.codec() << " yet.";
179  return false;
180  }
181  pmt_writer_.reset(new H264ProgramMapTableWriter(&pmt_continuity_counter_));
182  } else {
183  DCHECK_EQ(stream_type, StreamType::kStreamAudio);
184  const AudioStreamInfo& audio_stream_info =
185  static_cast<const AudioStreamInfo&>(stream_info);
186  if (audio_stream_info.codec() != Codec::kCodecAAC) {
187  LOG(ERROR) << "TsWriter cannot handle audio codec "
188  << audio_stream_info.codec() << " yet.";
189  return false;
190  }
191  pmt_writer_.reset(new AacProgramMapTableWriter(
192  audio_stream_info.codec_config(), &pmt_continuity_counter_));
193  }
194 
195  return true;
196 }
197 
198 bool TsWriter::NewSegment(const std::string& file_name) {
199  if (current_file_) {
200  LOG(ERROR) << "File " << current_file_->file_name() << " still open.";
201  return false;
202  }
203  current_file_.reset(File::Open(file_name.c_str(), "w"));
204  if (!current_file_) {
205  LOG(ERROR) << "Failed to open file " << file_name;
206  return false;
207  }
208 
209  BufferWriter psi;
210  WritePatToBuffer(kPat, arraysize(kPat), &pat_continuity_counter_, &psi);
211  if (encrypted_) {
212  if (!pmt_writer_->EncryptedSegmentPmt(&psi)) {
213  return false;
214  }
215  } else {
216  if (!pmt_writer_->ClearSegmentPmt(&psi)) {
217  return false;
218  }
219  }
220 
221  if (!psi.WriteToFile(current_file_.get()).ok()) {
222  LOG(ERROR) << "Failed to write PSI to file.";
223  return false;
224  }
225 
226  return true;
227 }
228 
230  encrypted_ = true;
231 }
232 
234  return current_file_.release()->Close();
235 }
236 
237 bool TsWriter::AddPesPacket(std::unique_ptr<PesPacket> pes_packet) {
238  DCHECK(current_file_);
239  if (!WritePesToFile(*pes_packet, &elementary_stream_continuity_counter_,
240  current_file_.get())) {
241  LOG(ERROR) << "Failed to write pes to file.";
242  return false;
243  }
244 
245  // No need to keep pes_packet around so not passing it anywhere.
246  return true;
247 }
248 
250  std::unique_ptr<ProgramMapTableWriter> table_writer) {
251  pmt_writer_ = std::move(table_writer);
252 }
253 
254 } // namespace mp2t
255 } // namespace media
256 } // namespace shaka
virtual bool Open()=0
Internal open. Should not be used directly.
Abstract class holds stream information.
Definition: stream_info.h:51
virtual bool NewSegment(const std::string &file_name)
Definition: ts_writer.cc:198
virtual bool AddPesPacket(std::unique_ptr< PesPacket > pes_packet)
Definition: ts_writer.cc:237
void SetProgramMapTableWriterForTesting(std::unique_ptr< ProgramMapTableWriter > table_writer)
Only for testing.
Definition: ts_writer.cc:249
virtual bool FinalizeSegment()
Definition: ts_writer.cc:233
virtual bool Initialize(const StreamInfo &stream_info)
Definition: ts_writer.cc:164
Holds video stream information.
Holds audio stream information.
Status WriteToFile(File *file)
virtual void SignalEncrypted()
Signals the writer that the rest of the segments are encrypted.
Definition: ts_writer.cc:229