DASH Media Packaging SDK
 All Classes Namespaces Functions Variables Typedefs Enumerator
encrypting_fragmenter.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 MEDIA_FORMATS_MP4_ENCRYPTING_FRAGMENTER_H_
8 #define MEDIA_FORMATS_MP4_ENCRYPTING_FRAGMENTER_H_
9 
10 #include "packager/base/memory/ref_counted.h"
11 #include "packager/base/memory/scoped_ptr.h"
12 #include "packager/media/base/encryption_modes.h"
13 #include "packager/media/filters/vpx_parser.h"
14 #include "packager/media/formats/mp4/fragmenter.h"
15 #include "packager/media/formats/mp4/video_slice_header_parser.h"
16 
17 namespace edash_packager {
18 namespace media {
19 
20 class AesEncryptor;
21 class StreamInfo;
22 struct EncryptionKey;
23 
24 namespace mp4 {
25 
28  public:
33  EncryptingFragmenter(scoped_refptr<StreamInfo> info,
34  TrackFragment* traf,
35  scoped_ptr<EncryptionKey> encryption_key,
36  int64_t clear_time,
37  EncryptionMode encryption_mode);
38 
39  ~EncryptingFragmenter() override;
40 
43  Status AddSample(scoped_refptr<MediaSample> sample) override;
44  Status InitializeFragment(int64_t first_sample_dts) override;
45  void FinalizeFragment() override;
47 
48  protected:
51  virtual Status PrepareFragmentForEncryption(bool enable_encryption);
53  virtual void FinalizeFragmentForEncryption();
54 
59 
60  EncryptionKey* encryption_key() { return encryption_key_.get(); }
61  AesEncryptor* encryptor() { return encryptor_.get(); }
62 
63  void set_encryption_key(scoped_ptr<EncryptionKey> encryption_key) {
64  encryption_key_ = encryption_key.Pass();
65  }
66 
67  private:
68  void EncryptBytes(uint8_t* data, uint32_t size);
69  Status EncryptSample(scoped_refptr<MediaSample> sample);
70 
71  // Should we enable subsample encryption?
72  bool IsSubsampleEncryptionRequired();
73 
74  scoped_refptr<StreamInfo> info_;
75  scoped_ptr<EncryptionKey> encryption_key_;
76  scoped_ptr<AesEncryptor> encryptor_;
77  // If this stream contains AVC, subsample encryption specifies that the size
78  // and type of NAL units remain unencrypted. This function returns the size of
79  // the size field in bytes. Can be 1, 2 or 4 bytes.
80  const uint8_t nalu_length_size_;
81  int64_t clear_time_;
82  EncryptionMode encryption_mode_;
83 
84  scoped_ptr<VPxParser> vpx_parser_;
85  scoped_ptr<VideoSliceHeaderParser> header_parser_;
86 
87  DISALLOW_COPY_AND_ASSIGN(EncryptingFragmenter);
88 };
89 
90 } // namespace mp4
91 } // namespace media
92 } // namespace edash_packager
93 
94 #endif // MEDIA_FORMATS_MP4_ENCRYPTING_FRAGMENTER_H_
EncryptingFragmenter(scoped_refptr< StreamInfo > info, TrackFragment *traf, scoped_ptr< EncryptionKey > encryption_key, int64_t clear_time, EncryptionMode encryption_mode)
EncryptingFragmenter generates MP4 fragments with sample encrypted.
Status InitializeFragment(int64_t first_sample_dts) override
Status AddSample(scoped_refptr< MediaSample > sample) override
void FinalizeFragment() override
Finalize and optimize the fragment.
virtual Status PrepareFragmentForEncryption(bool enable_encryption)
virtual void FinalizeFragmentForEncryption()
Finalize current fragment for encryption.