| Index: media/base/android/media_codec_bridge.h
|
| diff --git a/media/base/android/media_codec_bridge.h b/media/base/android/media_codec_bridge.h
|
| index d7377366cab7aa7d21f1000d55ee93779ceffd24..dd315917779db1dd689f6a57c62f0744318e2e69 100644
|
| --- a/media/base/android/media_codec_bridge.h
|
| +++ b/media/base/android/media_codec_bridge.h
|
| @@ -21,6 +21,7 @@
|
|
|
| namespace media {
|
|
|
| +class EncryptionScheme;
|
| struct SubsampleEntry;
|
|
|
| // These must be in sync with MediaCodecBridge.MEDIA_CODEC_XXX constants in
|
| @@ -101,6 +102,7 @@ class MEDIA_EXPORT MediaCodecBridge {
|
| const std::string& key_id,
|
| const std::string& iv,
|
| const std::vector<SubsampleEntry>& subsamples,
|
| + const EncryptionScheme& encryption_scheme,
|
| base::TimeDelta presentation_time);
|
|
|
| // Same QueueSecureInputBuffer overriden for the use with
|
| @@ -115,6 +117,7 @@ class MEDIA_EXPORT MediaCodecBridge {
|
| const std::vector<char>& iv,
|
| const SubsampleEntry* subsamples,
|
| int subsamples_size,
|
| + const EncryptionScheme& encryption_scheme,
|
| base::TimeDelta presentation_time) = 0;
|
|
|
| // Submits an empty buffer with a EOS (END OF STREAM) flag.
|
|
|