blob: ece570875d1a0ac0e908bf45fa38f66aab94de79 (
plain) (
blame)
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
|
t_aac ()
{
dep_paths aac
if test_header 'faad' && test_header 'mp4ff'; then
ldflags="-lfaad -lmp4ff"
echo t
fi
}
audiofile ()
{
dep_paths audiofile
if test_header 'audiofile'; then
ldflags="-lm -laudiofile"
echo t
fi
}
flac ()
{
}
oggvorbis ()
{
}
oggflac ()
{
}
mod ()
{
}
mpc ()
{
}
mp3 ()
{
}
tremor ()
{
}
|