7 #ifndef MEDIA_FORMATS_MP4_ENCRYPTING_FRAGMENTER_H_
8 #define MEDIA_FORMATS_MP4_ENCRYPTING_FRAGMENTER_H_
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/codecs/video_slice_header_parser.h"
14 #include "packager/media/codecs/vpx_parser.h"
15 #include "packager/media/formats/mp4/fragmenter.h"
42 scoped_ptr<EncryptionKey> encryption_key,
44 FourCC protection_scheme,
45 uint8_t crypt_byte_block,
46 uint8_t skip_byte_block);
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_; }
75 void set_encryption_key(scoped_ptr<EncryptionKey> encryption_key) {
76 encryption_key_ = encryption_key.Pass();
80 void EncryptBytes(uint8_t* data, uint32_t size);
81 Status EncryptSample(scoped_refptr<MediaSample> sample);
84 bool IsSubsampleEncryptionRequired();
86 scoped_refptr<StreamInfo> info_;
87 scoped_ptr<EncryptionKey> encryption_key_;
88 scoped_ptr<AesCryptor> encryptor_;
92 const uint8_t nalu_length_size_;
93 const VideoCodec video_codec_;
95 const FourCC protection_scheme_;
96 const uint8_t crypt_byte_block_;
97 const uint8_t skip_byte_block_;
99 scoped_ptr<VPxParser> vpx_parser_;
100 scoped_ptr<VideoSliceHeaderParser> header_parser_;
109 #endif // MEDIA_FORMATS_MP4_ENCRYPTING_FRAGMENTER_H_