forked from mstorsjo/vlc-android
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfind_modules.sh
More file actions
executable file
·74 lines (70 loc) · 781 Bytes
/
find_modules.sh
File metadata and controls
executable file
·74 lines (70 loc) · 781 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
#!/bin/sh
if [ $# != 1 ]
then
echo "Usage: $0 [vlc build dir]"
exit 1
fi
blacklist="
addons.*
stats
access_(bd|shm|imem)
oldrc
real
hotkeys
gestures
sap
dynamicoverlay
rss
ball
audiobargraph_[av]
clone
mosaic
osdmenu
puzzle
mediadirs
t140
ripple
motion
sharpen
grain
posterize
mirror
wall
scene
blendbench
psychedelic
alphamask
netsync
audioscrobbler
motiondetect
motionblur
export
smf
podcast
bluescreen
erase
stream_filter_record
speex_resampler
remoteosd
magnify
gradient
.*tospdif
dtstofloat32
logger
visual
fb
aout_file
yuv
.dummy
"
regexp=
for i in ${blacklist}
do
if [ -z "${regexp}" ]
then
regexp="${i}"
else
regexp="${regexp}|${i}"
fi
done
find $1/modules -name 'lib*plugin.a' | grep -vE "lib(${regexp})_plugin.a" | tr '\n' ' '