Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1212)

Unified Diff: media/formats/webm/webm_crypto_helpers.h

Issue 2174533002: Implement WebM subsample support (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebased Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « media/formats/webm/webm_constants.h ('k') | media/formats/webm/webm_crypto_helpers.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/formats/webm/webm_crypto_helpers.h
diff --git a/media/formats/webm/webm_crypto_helpers.h b/media/formats/webm/webm_crypto_helpers.h
index 041fb2b8020abdeb32725504e014fa13c215e679..21e53f7409ddf932fea6123169cd4ecca8285bf1 100644
--- a/media/formats/webm/webm_crypto_helpers.h
+++ b/media/formats/webm/webm_crypto_helpers.h
@@ -10,6 +10,7 @@
#include <memory>
#include "media/base/decoder_buffer.h"
+#include "media/base/media_export.h"
namespace media {
@@ -20,12 +21,13 @@ namespace media {
// false otherwise, in which case |decrypt_config| and |data_offset| will not be
// changed. Current encrypted WebM request for comments specification is here
// http://wiki.webmproject.org/encryption/webm-encryption-rfc
-bool WebMCreateDecryptConfig(const uint8_t* data,
- int data_size,
- const uint8_t* key_id,
- int key_id_size,
- std::unique_ptr<DecryptConfig>* decrypt_config,
- int* data_offset);
+bool MEDIA_EXPORT
+WebMCreateDecryptConfig(const uint8_t* data,
+ int data_size,
+ const uint8_t* key_id,
+ int key_id_size,
+ std::unique_ptr<DecryptConfig>* decrypt_config,
+ int* data_offset);
} // namespace media
« no previous file with comments | « media/formats/webm/webm_constants.h ('k') | media/formats/webm/webm_crypto_helpers.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698