mirror of
https://gitlab.linphone.org/BC/public/linphone-android.git
synced 2026-01-17 11:28:06 +00:00
86 lines
2.2 KiB
Makefile
Executable file
86 lines
2.2 KiB
Makefile
Executable file
LOCAL_PATH:= $(call my-dir)/../../ffmpeg
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_MODULE := libavcodec
|
|
|
|
LOCAL_SRC_FILES = \
|
|
libavcodec/allcodecs.c \
|
|
libavcodec/aandcttab.c \
|
|
libavcodec/arm/dsputil_arm.s.arm \
|
|
libavcodec/arm/dsputil_armv6.s.arm \
|
|
libavcodec/arm/dsputil_init_arm.c \
|
|
libavcodec/arm/dsputil_init_armv5te.c \
|
|
libavcodec/arm/dsputil_init_armv6.c \
|
|
libavcodec/arm/fft_init_arm.c \
|
|
libavcodec/arm/h264dsp_init_arm.c \
|
|
libavcodec/arm/h264pred_init_arm.c \
|
|
libavcodec/arm/jrevdct_arm.s \
|
|
libavcodec/arm/mpegvideo_arm.s \
|
|
libavcodec/arm/mpegvideo_armv5te.c \
|
|
libavcodec/arm/mpegvideo_armv5te_s.S \
|
|
libavcodec/arm/simple_idct_arm.s \
|
|
libavcodec/arm/simple_idct_armv5te.s \
|
|
libavcodec/arm/simple_idct_armv6.s \
|
|
libavcodec/audioconvert.c.arm \
|
|
libavcodec/avpacket.c \
|
|
libavcodec/bitstream.c \
|
|
libavcodec/bitstream_filter.c \
|
|
libavcodec/cabac.c \
|
|
libavcodec/dsputil.c.arm \
|
|
libavcodec/error_resilience.c \
|
|
libavcodec/faandct.c \
|
|
libavcodec/faanidct.c \
|
|
libavcodec/flvdec.c \
|
|
libavcodec/flvenc.c \
|
|
libavcodec/golomb.c \
|
|
libavcodec/h263.c.arm \
|
|
libavcodec/h263_parser.c \
|
|
libavcodec/h263dec.c \
|
|
libavcodec/h264.c \
|
|
libavcodec/h264_cabac.c.arm \
|
|
libavcodec/h264_cavlc.c.arm \
|
|
libavcodec/h264_direct.c.arm \
|
|
libavcodec/h264_loopfilter.c \
|
|
libavcodec/h264_ps.c \
|
|
libavcodec/h264_refs.c \
|
|
libavcodec/h264_sei.c \
|
|
libavcodec/h264dsp.c \
|
|
libavcodec/h264idct.c \
|
|
libavcodec/h264pred.c \
|
|
libavcodec/imgconvert.c \
|
|
libavcodec/intelh263dec.c \
|
|
libavcodec/inverse.c \
|
|
libavcodec/ituh263dec.c \
|
|
libavcodec/ituh263enc.c \
|
|
libavcodec/jfdctfst.c \
|
|
libavcodec/jfdctint.c \
|
|
libavcodec/jrevdct.c \
|
|
libavcodec/motion_est.c.arm \
|
|
libavcodec/mpeg12data.c \
|
|
libavcodec/mpeg4video.c.arm \
|
|
libavcodec/mpeg4video_parser.c \
|
|
libavcodec/mpeg4videodec.c.arm \
|
|
libavcodec/mpeg4videoenc.c.arm \
|
|
libavcodec/mpegvideo.c.arm \
|
|
libavcodec/mpegvideo_enc.c.arm \
|
|
libavcodec/opt.c \
|
|
libavcodec/options.c \
|
|
libavcodec/parser.c \
|
|
libavcodec/ratecontrol.c \
|
|
libavcodec/raw.c \
|
|
libavcodec/resample.c \
|
|
libavcodec/resample2.c \
|
|
libavcodec/simple_idct.c \
|
|
libavcodec/utils.c
|
|
|
|
|
|
LOCAL_CFLAGS += -DHAVE_AV_CONFIG_H
|
|
|
|
#for including config.h:
|
|
LOCAL_C_INCLUDES += \
|
|
$(LOCAL_PATH)/../build/ffmpeg \
|
|
$(LOCAL_PATH)/ \
|
|
$(LOCAL_PATH)/libavutil
|
|
|
|
include $(BUILD_STATIC_LIBRARY)
|
|
|