[Android] blacklist a few more modules

Rafaël Carré git at videolan.org
Sat May 26 17:33:03 CEST 2012


android | branch: master | Rafaël Carré <funman at videolan.org> | Sat May 26 09:24:10 2012 -0400| [1c0d6176f036f4dd302c5cb6b3da8806d00a3273] | committer: Rafaël Carré

blacklist a few more modules

Make the regexps more strict (match libXXXX_plugin.a)

> http://git.videolan.org/gitweb.cgi/android.git/?a=commit;h=1c0d6176f036f4dd302c5cb6b3da8806d00a3273
---

 find_modules.sh |   22 +++++++++++++---------
 1 file changed, 13 insertions(+), 9 deletions(-)

diff --git a/find_modules.sh b/find_modules.sh
index ed997f0..fb1bc9d 100755
--- a/find_modules.sh
+++ b/find_modules.sh
@@ -8,7 +8,7 @@ fi
 
 blacklist="
 stats
-access_bd
+access_(bd|shm|imem)
 oldrc
 real
 hotkeys
@@ -16,12 +16,10 @@ gestures
 sap
 dynamicoverlay
 rss
-libball
-bargraph
+ball
+audiobargraph_[av]
 clone
-access_shm
 mosaic
-imem
 osdmenu
 puzzle
 mediadirs
@@ -39,21 +37,27 @@ psychedelic
 alphamask
 netsync
 audioscrobbler
-imem
 motiondetect
+motionblur
 export
 smf
 podcast
 bluescreen
 erase
-record
+stream_filter_record
 speex_resampler
 remoteosd
 magnify
 gradient
-spdif
+.*tospdif
 dtstofloat32
 logger
+visual
+fb
+aout_file
+vmem
+yuv
+.dummy
 "
 
 regexp=
@@ -67,4 +71,4 @@ do
     fi
 done
 
-find $1/modules -name 'lib*plugin.a' | grep -vE "${regexp}" | tr '\n' ' '
+find $1/modules -name 'lib*plugin.a' | grep -vE "lib(${regexp})_plugin.a" | tr '\n' ' '



More information about the Android mailing list