Advertisement
Guest User

Android makefile for xvidcore

a guest
Sep 15th, 2011
169
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.44 KB | None | 0 0
  1. LOCAL_PATH := $(call my-dir)
  2.  
  3. include $(CLEAR_VARS)
  4.  
  5. LOCAL_MODULE := xvidcore
  6. LOCAL_CFLAGS = -Wall -DHAVE_PTHREAD -DARCH_IS_GENERIC -DARCH_IS_32BIT -DARCH_IS_LITTLE_ENDIAN
  7. LOCAL_C_INCLUDES := $(LOCAL_PATH)/src
  8. LOCAL_EXPORT_C_INCLUDES := $(LOCAL_PATH)/src
  9.  
  10. LOCAL_SRC_FILES := src/decoder.c \
  11. src/encoder.c \
  12. src/xvid.c \
  13. src/bitstream/bitstream.c \
  14. src/bitstream/cbp.c \
  15. src/bitstream/mbcoding.c \
  16. src/dct/fdct.c \
  17. src/dct/idct.c \
  18. src/dct/simple_idct.c \
  19. src/image/colorspace.c \
  20. src/image/image.c \
  21. src/image/interpolate8x8.c \
  22. src/image/font.c \
  23. src/image/postprocessing.c \
  24. src/image/qpel.c \
  25. src/image/reduced.c \
  26. src/motion/estimation_bvop.c \
  27. src/motion/estimation_common.c \
  28. src/motion/estimation_gmc.c \
  29. src/motion/estimation_pvop.c \
  30. src/motion/estimation_rd_based.c \
  31. src/motion/estimation_rd_based_bvop.c \
  32. src/motion/gmc.c \
  33. src/motion/motion_comp.c \
  34. src/motion/vop_type_decision.c \
  35. src/motion/sad.c \
  36. src/prediction/mbprediction.c \
  37. src/plugins/plugin_single.c \
  38. src/plugins/plugin_2pass1.c \
  39. src/plugins/plugin_2pass2.c \
  40. src/plugins/plugin_lumimasking.c \
  41. src/plugins/plugin_dump.c \
  42. src/plugins/plugin_psnr.c \
  43. src/plugins/plugin_ssim.c \
  44. src/plugins/plugin_psnrhvsm.c \
  45. src/quant/quant_h263.c \
  46. src/quant/quant_matrix.c \
  47. src/quant/quant_mpeg.c \
  48. src/utils/emms.c \
  49. src/utils/mbtransquant.c \
  50. src/utils/mem_align.c \
  51. src/utils/mem_transfer.c \
  52. src/utils/timer.c
  53.  
  54. include $(BUILD_STATIC_LIBRARY)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement