Add WebM module
Use already existing libraries: libvorbis and libopus. Also use newly added libraries: libvpx, libwebm, libsimplewebm.
This commit is contained in:
parent
1556d0d377
commit
d710b265f8
11 changed files with 1124 additions and 3 deletions
|
|
@ -164,6 +164,9 @@ def configure(env):
|
|||
env["libvorbis"] = "system" # Needed to link against system libtheora
|
||||
env.ParseConfig('pkg-config theora theoradec --cflags --libs')
|
||||
|
||||
if (env["libvpx"] == "system"):
|
||||
env.ParseConfig('pkg-config vpx --cflags --libs')
|
||||
|
||||
if (env["libvorbis"] == "system"):
|
||||
env["libogg"] = "system" # Needed to link against system libvorbis
|
||||
env.ParseConfig('pkg-config vorbis vorbisfile --cflags --libs')
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue