summaryrefslogtreecommitdiffstats
path: root/media/libeffects/factory/EffectsFactory.h
diff options
context:
space:
mode:
authorEric Laurent <elaurent@google.com>2013-09-27 14:53:24 -0700
committerEric Laurent <elaurent@google.com>2013-09-27 16:03:26 -0700
commit83f400056ac913250f0926326ff78697c68d18a1 (patch)
tree4dcd3ee8df9d39701190664ce5d0e9b4bb5b7cc9 /media/libeffects/factory/EffectsFactory.h
parent5b8ce24b849f6cd5629b4ba508f7c78d6227d250 (diff)
downloadframeworks_av-83f400056ac913250f0926326ff78697c68d18a1.zip
frameworks_av-83f400056ac913250f0926326ff78697c68d18a1.tar.gz
frameworks_av-83f400056ac913250f0926326ff78697c68d18a1.tar.bz2
Revert "Effects Factory changes for effects offload"
This reverts commit 284c17e73bbff51cb5b1adcee98386d47733757a. Change-Id: I31db21e1ad4758b21356bfe4c4c64f15b2da8737
Diffstat (limited to 'media/libeffects/factory/EffectsFactory.h')
-rw-r--r--media/libeffects/factory/EffectsFactory.h19
1 files changed, 0 insertions, 19 deletions
diff --git a/media/libeffects/factory/EffectsFactory.h b/media/libeffects/factory/EffectsFactory.h
index 147ff18..c1d4319 100644
--- a/media/libeffects/factory/EffectsFactory.h
+++ b/media/libeffects/factory/EffectsFactory.h
@@ -32,15 +32,6 @@ typedef struct list_elem_s {
struct list_elem_s *next;
} list_elem_t;
-// Structure used for storing effects with their sub effects.
-// Used in creating gSubEffectList. Here,
-// object holds the effect desc and the list sub_elem holds the sub effects
-typedef struct list_sub_elem_s {
- void *object;
- list_elem_t *sub_elem;
- struct list_sub_elem_s *next;
-} list_sub_elem_t;
-
typedef struct lib_entry_s {
audio_effect_library_t *desc;
char *name;
@@ -56,16 +47,6 @@ typedef struct effect_entry_s {
lib_entry_t *lib;
} effect_entry_t;
-// Structure used to store the lib entry
-// and the descriptor of the sub effects.
-// The library entry is to be stored in case of
-// sub effects as the sub effects are not linked
-// to the library list - gLibraryList.
-typedef struct sub_effect_entry_s {
- lib_entry_t *lib;
- void *object;
-} sub_effect_entry_t;
-
#if __cplusplus
} // extern "C"
#endif