makefile.monkey2 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154
  1. Namespace theoraplayer
  2. '***** ogg *****
  3. '
  4. #Import "native/ogg/src/bitwise.c"
  5. #Import "native/ogg/src/framing.c"
  6. '***** vorbis *****
  7. '
  8. #Import "native/vorbis/lib/analysis.c"
  9. '#Import "native/vorbis/lib/barkmel.c"
  10. #Import "native/vorbis/lib/bitrate.c"
  11. #Import "native/vorbis/lib/block.c"
  12. #Import "native/vorbis/lib/codebook.c"
  13. #Import "native/vorbis/lib/envelope.c"
  14. #Import "native/vorbis/lib/floor0.c"
  15. #Import "native/vorbis/lib/floor1.c"
  16. #Import "native/vorbis/lib/info.c"
  17. #Import "native/vorbis/lib/lookup.c"
  18. #Import "native/vorbis/lib/lpc.c"
  19. #Import "native/vorbis/lib/lsp.c"
  20. #Import "native/vorbis/lib/mapping0.c"
  21. #Import "native/vorbis/lib/mdct.c"
  22. #Import "native/vorbis/lib/psy.c"
  23. '#Import "native/vorbis/lib/psytune.c"
  24. #Import "native/vorbis/lib/registry.c"
  25. #Import "native/vorbis/lib/res0.c"
  26. #Import "native/vorbis/lib/sharedbook.c"
  27. #Import "native/vorbis/lib/smallft.c"
  28. #Import "native/vorbis/lib/synthesis.c"
  29. '#Import "native/vorbis/lib/tone.c"
  30. #Import "native/vorbis/lib/vorbisenc.c"
  31. #Import "native/vorbis/lib/vorbisfile.c"
  32. #Import "native/vorbis/lib/window.c"
  33. '***** theora *****
  34. '
  35. '#Import "native/theora/lib/analyze.c"
  36. #Import "native/theora/lib/apiwrapper.c"
  37. #Import "native/theora/lib/bitpack.c"
  38. #Import "native/theora/lib/collect.c"
  39. #Import "native/theora/lib/decapiwrapper.c"
  40. #Import "native/theora/lib/decinfo.c"
  41. #Import "native/theora/lib/decode.c"
  42. #Import "native/theora/lib/dequant.c"
  43. '#Import "native/theora/lib/encapiwrapper.c"
  44. '#Import "native/theora/lib/encfrag.c"
  45. '#Import "native/theora/lib/encinfo.c"
  46. '#Import "native/theora/lib/encode.c"
  47. #Import "native/theora/lib/encoder_disabled.c"
  48. #Import "native/theora/lib/enquant.c"
  49. #Import "native/theora/lib/fdct.c"
  50. #Import "native/theora/lib/fragment.c"
  51. #Import "native/theora/lib/huffdec.c"
  52. #Import "native/theora/lib/huffenc.c"
  53. #Import "native/theora/lib/idct.c"
  54. #Import "native/theora/lib/info.c"
  55. #Import "native/theora/lib/internal.c"
  56. #Import "native/theora/lib/mathops.c"
  57. '#Import "native/theora/lib/mcenc.c"
  58. #Import "native/theora/lib/quant.c"
  59. #Import "native/theora/lib/rate.c"
  60. #Import "native/theora/lib/state.c"
  61. #Import "native/theora/lib/tokenize.c"
  62. '#Import "native/theora/lib/x86/mmxencfrag.c
  63. '#Import "native/theora/lib/x86/mmxfdct.c"
  64. '#Import "native/theora/lib/x86/mmxfrag.c"
  65. '#Import "native/theora/lib/x86/mmxidct.c"
  66. '#Import "native/theora/lib/x86/mmxstate.c"
  67. '#Import "native/theora/lib/x86/sse2encfrag.c"
  68. '#Import "native/theora/lib/x86/sse2fdct.c"
  69. '#Import "native/theora/lib/x86/sse2idct.c"
  70. '#Import "native/theora/lib/x86/x86cpu.c"
  71. '#Import "native/theora/lib/x86/x86enc.c"
  72. '#Import "native/theora/lib/x86/x86enquant.c"
  73. '#Import "native/theora/lib/x86/x86state.c"
  74. '***** theoraplayer *****
  75. '
  76. #Import "native/theoraplayer/src/AudioInterface.cpp"
  77. #Import "native/theoraplayer/src/AudioInterfaceFactory.cpp"
  78. #Import "native/theoraplayer/src/AudioPacketQueue.cpp"
  79. #Import "native/theoraplayer/src/DataSource.cpp"
  80. #Import "native/theoraplayer/src/Exception.cpp"
  81. #Import "native/theoraplayer/src/FileDataSource.cpp"
  82. #Import "native/theoraplayer/src/FrameQueue.cpp"
  83. #Import "native/theoraplayer/src/Manager.cpp"
  84. #Import "native/theoraplayer/src/MemoryDataSource.cpp"
  85. #Import "native/theoraplayer/src/Mutex.cpp"
  86. #Import "native/theoraplayer/src/theoraplayer.cpp"
  87. #Import "native/theoraplayer/src/Thread.cpp"
  88. #Import "native/theoraplayer/src/Timer.cpp"
  89. #Import "native/theoraplayer/src/Utility.cpp"
  90. #Import "native/theoraplayer/src/VideoClip.cpp"
  91. #Import "native/theoraplayer/src/VideoFrame.cpp"
  92. #Import "native/theoraplayer/src/WorkerThread.cpp"
  93. #Import "native/theoraplayer/src/YUV/yuv_util.c"
  94. #Import "native/theoraplayer/src/formats/Theora/VideoClip_Theora.cpp"
  95. #Import "native/theoraplayer/src/YUV/C/yuv420_grey_c.c"
  96. #Import "native/theoraplayer/src/YUV/C/yuv420_rgb_c.c"
  97. #Import "native/theoraplayer/src/YUV/C/yuv420_yuv_c.c"
  98. #Import "native/theoraplayer/src/YUV/libyuv/src/compare.cc"
  99. #Import "native/theoraplayer/src/YUV/libyuv/src/compare_common.cc"
  100. #Import "native/theoraplayer/src/YUV/libyuv/src/compare_gcc.cc"
  101. #Import "native/theoraplayer/src/YUV/libyuv/src/compare_neon.cc"
  102. #Import "native/theoraplayer/src/YUV/libyuv/src/compare_neon64.cc"
  103. #Import "native/theoraplayer/src/YUV/libyuv/src/compare_posix.cc"
  104. #Import "native/theoraplayer/src/YUV/libyuv/src/compare_win.cc"
  105. #Import "native/theoraplayer/src/YUV/libyuv/src/convert.cc"
  106. #Import "native/theoraplayer/src/YUV/libyuv/src/convert_argb.cc"
  107. #Import "native/theoraplayer/src/YUV/libyuv/src/convert_from.cc"
  108. #Import "native/theoraplayer/src/YUV/libyuv/src/convert_from_argb.cc"
  109. #Import "native/theoraplayer/src/YUV/libyuv/src/convert_jpeg.cc"
  110. #Import "native/theoraplayer/src/YUV/libyuv/src/convert_to_argb.cc"
  111. #Import "native/theoraplayer/src/YUV/libyuv/src/convert_to_i420.cc"
  112. #Import "native/theoraplayer/src/YUV/libyuv/src/cpu_id.cc"
  113. #Import "native/theoraplayer/src/YUV/libyuv/src/mjpeg_decoder.cc"
  114. #Import "native/theoraplayer/src/YUV/libyuv/src/mjpeg_validate.cc"
  115. #Import "native/theoraplayer/src/YUV/libyuv/src/planar_functions.cc"
  116. #Import "native/theoraplayer/src/YUV/libyuv/src/rotate.cc"
  117. #Import "native/theoraplayer/src/YUV/libyuv/src/rotate_argb.cc"
  118. #Import "native/theoraplayer/src/YUV/libyuv/src/rotate_mips.cc"
  119. #Import "native/theoraplayer/src/YUV/libyuv/src/rotate_neon.cc"
  120. #Import "native/theoraplayer/src/YUV/libyuv/src/rotate_neon64.cc"
  121. #Import "native/theoraplayer/src/YUV/libyuv/src/row_any.cc"
  122. #Import "native/theoraplayer/src/YUV/libyuv/src/row_common.cc"
  123. #Import "native/theoraplayer/src/YUV/libyuv/src/row_gcc.cc"
  124. #Import "native/theoraplayer/src/YUV/libyuv/src/row_mips.cc"
  125. #Import "native/theoraplayer/src/YUV/libyuv/src/row_neon.cc"
  126. #Import "native/theoraplayer/src/YUV/libyuv/src/row_neon64.cc"
  127. #Import "native/theoraplayer/src/YUV/libyuv/src/row_posix.cc"
  128. #Import "native/theoraplayer/src/YUV/libyuv/src/row_win.cc"
  129. '#Import "native/theoraplayer/src/YUV/libyuv/src/row_x86.asm"
  130. #Import "native/theoraplayer/src/YUV/libyuv/src/scale.cc"
  131. #Import "native/theoraplayer/src/YUV/libyuv/src/scale_any.cc"
  132. #Import "native/theoraplayer/src/YUV/libyuv/src/scale_argb.cc"
  133. #Import "native/theoraplayer/src/YUV/libyuv/src/scale_argb_neon.cc"
  134. #Import "native/theoraplayer/src/YUV/libyuv/src/scale_common.cc"
  135. #Import "native/theoraplayer/src/YUV/libyuv/src/scale_gcc.cc"
  136. #Import "native/theoraplayer/src/YUV/libyuv/src/scale_mips.cc"
  137. #Import "native/theoraplayer/src/YUV/libyuv/src/scale_neon.cc"
  138. #Import "native/theoraplayer/src/YUV/libyuv/src/scale_neon64.cc"
  139. #Import "native/theoraplayer/src/YUV/libyuv/src/scale_posix.cc"
  140. #Import "native/theoraplayer/src/YUV/libyuv/src/scale_win.cc"
  141. #Import "native/theoraplayer/src/YUV/libyuv/src/video_common.cc"
  142. '#Import "native/theoraplayer/src/YUV/libyuv/src/x86inc.asm"
  143. #Import "native/theoraplayer/src/YUV/libyuv/yuv_libyuv.c"