Shaka Packager SDK
mp4_muxer.h
1 // Copyright 2014 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 #ifndef PACKAGER_MEDIA_FORMATS_MP4_MP4_MUXER_H_
8 #define PACKAGER_MEDIA_FORMATS_MP4_MP4_MUXER_H_
9 
10 #include <vector>
11 
12 #include "packager/base/optional.h"
13 #include "packager/media/base/muxer.h"
14 
15 namespace shaka {
16 namespace media {
17 
18 class AudioStreamInfo;
19 class StreamInfo;
20 class TextStreamInfo;
21 class VideoStreamInfo;
22 
23 namespace mp4 {
24 
25 class Segmenter;
26 
27 struct ProtectionSchemeInfo;
28 struct Track;
29 
32 class MP4Muxer : public Muxer {
33  public:
35  explicit MP4Muxer(const MuxerOptions& options);
36  ~MP4Muxer() override;
37 
38  private:
39  // Muxer implementation overrides.
40  Status InitializeMuxer() override;
41  Status Finalize() override;
42  Status AddMediaSample(size_t stream_id, const MediaSample& sample) override;
43  Status FinalizeSegment(size_t stream_id,
44  const SegmentInfo& segment_info) override;
45 
46  Status DelayInitializeMuxer();
47  Status UpdateEditListOffsetFromSample(const MediaSample& sample);
48 
49  // Generate Audio/Video Track box.
50  void InitializeTrak(const StreamInfo* info, Track* trak);
51  bool GenerateAudioTrak(const AudioStreamInfo* audio_info, Track* trak);
52  bool GenerateVideoTrak(const VideoStreamInfo* video_info, Track* trak);
53  bool GenerateTextTrak(const TextStreamInfo* video_info, Track* trak);
54 
55  // Gets |start| and |end| initialization range. Returns true if there is an
56  // init range and sets start-end byte-range-spec specified in RFC2616.
57  base::Optional<Range> GetInitRangeStartAndEnd();
58 
59  // Gets |start| and |end| index range. Returns true if there is an index range
60  // and sets start-end byte-range-spec specified in RFC2616.
61  base::Optional<Range> GetIndexRangeStartAndEnd();
62 
63  // Fire events if there are no errors and Muxer::muxer_listener() is not NULL.
64  void FireOnMediaStartEvent();
65  void FireOnMediaEndEvent();
66 
67  // Get time in seconds since midnight, Jan. 1, 1904, in UTC Time.
68  uint64_t IsoTimeNow();
69 
70  // Assumes single stream (multiplexed a/v not supported yet).
71  bool to_be_initialized_ = true;
72  base::Optional<int64_t> edit_list_offset_;
73 
74  std::unique_ptr<Segmenter> segmenter_;
75 
76  DISALLOW_COPY_AND_ASSIGN(MP4Muxer);
77 };
78 
79 } // namespace mp4
80 } // namespace media
81 } // namespace shaka
82 
83 #endif // PACKAGER_MEDIA_FORMATS_MP4_MP4_MUXER_H_
shaka::media::AudioStreamInfo
Holds audio stream information.
Definition: audio_stream_info.h:18
shaka::media::Muxer
Definition: muxer.h:30
shaka::media::SegmentInfo
Definition: media_handler.h:55
shaka
All the methods that are virtual are virtual for mocking.
Definition: gflags_hex_bytes.cc:11
shaka::media::TextStreamInfo
Definition: text_stream_info.h:49
shaka::Status
Definition: status.h:110
shaka::media::MuxerOptions
This structure contains the list of configuration options for Muxer.
Definition: muxer_options.h:20
shaka::media::mp4::Track
Definition: box_definitions.h:653
shaka::media::mp4::MP4Muxer::MP4Muxer
MP4Muxer(const MuxerOptions &options)
Create a MP4Muxer object from MuxerOptions.
Definition: mp4_muxer.cc:155
shaka::media::VideoStreamInfo
Holds video stream information.
Definition: video_stream_info.h:23
shaka::media::mp4::MP4Muxer
Definition: mp4_muxer.h:32
shaka::media::MediaSample
Class to hold a media sample.
Definition: media_sample.h:22
shaka::media::StreamInfo
Abstract class holds stream information.
Definition: stream_info.h:65