gpl.sh 523 B

123456789101112131415161718192021222324252627282930
  1. #!/bin/bash
  2. # Build tinyWRAP for Google Android Systems
  3. # GPL parameters
  4. export GPL_PARAMS=LICENSE=gpl \
  5. NO_FREE=yes \
  6. FFMPEG=yes \
  7. LIBYUV=yes \
  8. VPX=yes \
  9. H264=yes \
  10. THEORA=yes \
  11. OPUS=yes \
  12. OPENCORE_AMR=yes \
  13. SPEEX_DSP=yes \
  14. SPEEX_JB=yes \
  15. SPEEX_RESAMPLER=yes \
  16. SPEEX_DENOISE=yes \
  17. SPEEX=yes \
  18. ILBC=yes \
  19. LIBGSM=yes \
  20. G729=yes \
  21. SRTP=yes \
  22. TLS=yes
  23. for IS_NEON in no yes
  24. #for IS_NEON in yes
  25. do
  26. ../bindings/java/android/buildAll.sh $@ NEON=$IS_NEON $GPL_PARAMS WEBRTC=$IS_NEON WEBRTC_DENOISE=$IS_NEON
  27. done