This change corrects some problems with the unit tests and make files for the libcleardrmengine. Change-Id: Iafd8aae2ecae3885ad4bbfdf9257bce6f62f98dc
18 lines
429 B
C
18 lines
429 B
C
/*
|
|
* Copyright 2012 Google Inc. All Rights Reserved.
|
|
*/
|
|
|
|
#ifndef WV_CREATE_DRM_PLUGIN_FACTORY_H_
|
|
#define WV_CREATE_DRM_PLUGIN_FACTORY_H_
|
|
|
|
#include "media/stagefright/foundation/ABase.h"
|
|
#include "media/drm/DrmEngineAPI.h"
|
|
#include "media/hardware/CryptoAPI.h"
|
|
|
|
extern "C" {
|
|
android::DrmPluginFactory* createDrmPluginFactory();
|
|
android::CryptoFactory *createCryptoFactory();
|
|
}
|
|
|
|
#endif // WV_CREATE_DRM_PLUGIN_FACTORY_H_
|