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/fourccs.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 AesCryptor;
21 class StreamInfo;
22 struct EncryptionKey;
23 
24 namespace mp4 {
25 
28  public:
39  EncryptingFragmenter(scoped_refptr<StreamInfo> info,
40  TrackFragment* traf,
41  scoped_ptr<EncryptionKey> encryption_key,
42  int64_t clear_time,
43  FourCC protection_scheme,
44  uint8_t crypt_byte_block,
45  uint8_t skip_byte_block);
46 
47  ~EncryptingFragmenter() override;
48 
51  Status AddSample(scoped_refptr<MediaSample> sample) override;
52  Status InitializeFragment(int64_t first_sample_dts) override;
53  void FinalizeFragment() override;
55 
56  protected:
59  virtual Status PrepareFragmentForEncryption(bool enable_encryption);
61  virtual void FinalizeFragmentForEncryption();
62 
67 
68  const EncryptionKey* encryption_key() const { return encryption_key_.get(); }
69  AesCryptor* encryptor() { return encryptor_.get(); }
70  FourCC protection_scheme() const { return protection_scheme_; }
71  uint8_t crypt_byte_block() const { return crypt_byte_block_; }
72  uint8_t skip_byte_block() const { return skip_byte_block_; }
73 
74  void set_encryption_key(scoped_ptr<EncryptionKey> encryption_key) {
75  encryption_key_ = encryption_key.Pass();
76  }
77 
78  private:
79  void EncryptBytes(uint8_t* data, uint32_t size);
80  Status EncryptSample(scoped_refptr<MediaSample> sample);
81 
82  // Should we enable subsample encryption?
83  bool IsSubsampleEncryptionRequired();
84 
85  scoped_refptr<StreamInfo> info_;
86  scoped_ptr<EncryptionKey> encryption_key_;
87  scoped_ptr<AesCryptor> encryptor_;
88  // If this stream contains AVC, subsample encryption specifies that the size
89  // and type of NAL units remain unencrypted. This function returns the size of
90  // the size field in bytes. Can be 1, 2 or 4 bytes.
91  const uint8_t nalu_length_size_;
92  const VideoCodec video_codec_;
93  int64_t clear_time_;
94  const FourCC protection_scheme_;
95  const uint8_t crypt_byte_block_;
96  const uint8_t skip_byte_block_;
97 
98  scoped_ptr<VPxParser> vpx_parser_;
99  scoped_ptr<VideoSliceHeaderParser> header_parser_;
100 
101  DISALLOW_COPY_AND_ASSIGN(EncryptingFragmenter);
102 };
103 
104 } // namespace mp4
105 } // namespace media
106 } // namespace edash_packager
107 
108 #endif // MEDIA_FORMATS_MP4_ENCRYPTING_FRAGMENTER_H_
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.
EncryptingFragmenter(scoped_refptr< StreamInfo > info, TrackFragment *traf, scoped_ptr< EncryptionKey > encryption_key, int64_t clear_time, FourCC protection_scheme, uint8_t crypt_byte_block, uint8_t skip_byte_block)