68 lines
2.4 KiB
C++
68 lines
2.4 KiB
C++
// Copyright 2014 Google Inc. All rights reserved.
|
|
//
|
|
// Use of this source code is governed by a BSD-style
|
|
// license that can be found in the LICENSE file or at
|
|
// https://developers.google.com/open-source/licenses/bsd
|
|
|
|
#ifndef MEDIA_FORMATS_MP4_KEY_ROTATION_FRAGMENTER_H_
|
|
#define MEDIA_FORMATS_MP4_KEY_ROTATION_FRAGMENTER_H_
|
|
|
|
#include "media/base/encryption_key_source.h"
|
|
#include "media/formats/mp4/encrypting_fragmenter.h"
|
|
|
|
namespace media {
|
|
namespace mp4 {
|
|
|
|
struct MovieFragment;
|
|
|
|
/// KeyRotationFragmenter generates MP4 fragments with sample encrypted by
|
|
/// rotation keys.
|
|
class KeyRotationFragmenter : public EncryptingFragmenter {
|
|
public:
|
|
/// @param moof points to a MovieFragment box.
|
|
/// @param traf points to a TrackFragment box.
|
|
/// @param normalize_presentation_timestamp defines whether PTS should be
|
|
/// normalized to start from zero.
|
|
/// @param encryption_key_source points to the source which generates
|
|
/// encryption keys.
|
|
/// @param track_type indicates whether SD key or HD key should be used to
|
|
/// encrypt the video content.
|
|
/// @param crypto_period_duration specifies crypto period duration in units
|
|
/// of the current track's timescale.
|
|
/// @param clear_time specifies clear lead duration in units of the current
|
|
/// track's timescale.
|
|
/// @param nalu_length_size NAL unit length size, in bytes, for subsample
|
|
/// encryption.
|
|
KeyRotationFragmenter(MovieFragment* moof,
|
|
TrackFragment* traf,
|
|
bool normalize_presentation_timestamp,
|
|
EncryptionKeySource* encryption_key_source,
|
|
EncryptionKeySource::TrackType track_type,
|
|
int64 crypto_period_duration,
|
|
int64 clear_time,
|
|
uint8 nalu_length_size);
|
|
virtual ~KeyRotationFragmenter();
|
|
|
|
protected:
|
|
/// @name Fragmenter implementation overrides.
|
|
/// @{
|
|
virtual Status PrepareFragmentForEncryption(bool enable_encryption) OVERRIDE;
|
|
virtual void FinalizeFragmentForEncryption() OVERRIDE;
|
|
/// @}
|
|
|
|
private:
|
|
MovieFragment* moof_;
|
|
|
|
EncryptionKeySource* encryption_key_source_;
|
|
EncryptionKeySource::TrackType track_type_;
|
|
const int64 crypto_period_duration_;
|
|
size_t prev_crypto_period_index_;
|
|
|
|
DISALLOW_COPY_AND_ASSIGN(KeyRotationFragmenter);
|
|
};
|
|
|
|
} // namespace mp4
|
|
} // namespace media
|
|
|
|
#endif // MEDIA_FORMATS_MP4_KEY_ROTATION_FRAGMENTER_H_
|