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/filters/vpx_parser.h"
14 #include "packager/media/formats/mp4/fragmenter.h"
15 #include "packager/media/formats/mp4/video_slice_header_parser.h"
17 namespace edash_packager {
37 scoped_ptr<EncryptionKey> encryption_key,
39 FourCC protection_scheme);
62 const EncryptionKey* encryption_key()
const {
return encryption_key_.get(); }
63 AesCryptor* encryptor() {
return encryptor_.get(); }
64 FourCC protection_scheme()
const {
return protection_scheme_; }
66 void set_encryption_key(scoped_ptr<EncryptionKey> encryption_key) {
67 encryption_key_ = encryption_key.Pass();
71 void EncryptBytes(uint8_t* data, uint32_t size);
72 Status EncryptSample(scoped_refptr<MediaSample> sample);
75 bool IsSubsampleEncryptionRequired();
77 scoped_refptr<StreamInfo> info_;
78 scoped_ptr<EncryptionKey> encryption_key_;
79 scoped_ptr<AesCryptor> encryptor_;
83 const uint8_t nalu_length_size_;
84 const VideoCodec video_codec_;
86 FourCC protection_scheme_;
88 scoped_ptr<VPxParser> vpx_parser_;
89 scoped_ptr<VideoSliceHeaderParser> header_parser_;
98 #endif // MEDIA_FORMATS_MP4_ENCRYPTING_FRAGMENTER_H_