diff --git a/proprietary/cryptoPlugin/WVCryptoPlugin.cpp b/proprietary/cryptoPlugin/WVCryptoPlugin.cpp index 4c2fc3ee..625a5f1e 100644 --- a/proprietary/cryptoPlugin/WVCryptoPlugin.cpp +++ b/proprietary/cryptoPlugin/WVCryptoPlugin.cpp @@ -74,7 +74,7 @@ bool WVCryptoPlugin::requiresSecureDecoderComponent(const char *mime) const { return !strncasecmp(mime, "video/", 6); } -status_t WVCryptoPlugin::decrypt( +ssize_t WVCryptoPlugin::decrypt( bool secure, const uint8_t key[16], const uint8_t iv[16], diff --git a/proprietary/cryptoPlugin/WVCryptoPlugin.h b/proprietary/cryptoPlugin/WVCryptoPlugin.h index acbf80ee..c532836b 100644 --- a/proprietary/cryptoPlugin/WVCryptoPlugin.h +++ b/proprietary/cryptoPlugin/WVCryptoPlugin.h @@ -31,7 +31,7 @@ struct WVCryptoPlugin : public CryptoPlugin { virtual bool requiresSecureDecoderComponent(const char *mime) const; - virtual status_t decrypt( + virtual ssize_t decrypt( bool secure, const uint8_t key[16], const uint8_t iv[16],