diff options
author | Eric Laurent <elaurent@google.com> | 2011-05-27 17:51:52 -0700 |
---|---|---|
committer | Eric Laurent <elaurent@google.com> | 2011-05-27 17:51:52 -0700 |
commit | 65580f9adf6c4d98449ad0716488f9fe3869aa5a (patch) | |
tree | 71432ddbf09fcc122be1ef5781bbc2d87f725ad8 /media/libeffects/factory | |
parent | e1315cf0b63b4c14a77046519e6b01f6f60d74b0 (diff) | |
download | frameworks_av-65580f9adf6c4d98449ad0716488f9fe3869aa5a.zip frameworks_av-65580f9adf6c4d98449ad0716488f9fe3869aa5a.tar.gz frameworks_av-65580f9adf6c4d98449ad0716488f9fe3869aa5a.tar.bz2 |
Removed interface to load audio effects libraries
Removed unused functions allowing dynamic loading of audio effects libraries
from effects factory API.
Change-Id: I06cc5a51dc10aca87c7a8687bbb874babd711eca
Diffstat (limited to 'media/libeffects/factory')
-rw-r--r-- | media/libeffects/factory/EffectsFactory.c | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/media/libeffects/factory/EffectsFactory.c b/media/libeffects/factory/EffectsFactory.c index b541be5..b0e8585 100644 --- a/media/libeffects/factory/EffectsFactory.c +++ b/media/libeffects/factory/EffectsFactory.c @@ -332,18 +332,6 @@ exit: return ret; } -int EffectLoadLibrary(const char *libPath, int *handle) -{ - // TODO: see if this interface still makes sense with the use of config files - return -ENOSYS; -} - -int EffectUnloadLibrary(int handle) -{ - // TODO: see if this interface still makes sense with the use of config files - return -ENOSYS; -} - int EffectIsNullUuid(effect_uuid_t *uuid) { if (memcmp(uuid, EFFECT_UUID_NULL, sizeof(effect_uuid_t))) { |