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