我是靠谱客的博主 怕孤单帅哥,最近开发中收集的这篇文章主要介绍libx264 for android编译(重点是看那个configure如何配置),觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

1.2 使用ndk编译x264
1. 下载源码并编译
$ cd /opt/android/ndk/android-ndk-r10e/resources
$ git clone http://git.videolan.org/git/x264.git
$ cd x264


修改configure文件
$ vim configure
将下面的这四句:
else
echo "SOSUFFIX=so" >> config.mak
echo "SONAME=libx264.so.$API" >> config.mak
echo "SOFLAGS=-shared -Wl, -soname, $(SONAME)$SOFLAGS" >> config.mak
中的这句:
echo "SONAME=libx264.so.$API" >> config.mak
改成:
echo "SONAME=libx264.so" >> config.mak
【保存并退出】


创建配置脚本
$ vim android_x264_configure.sh
#!/bin/bash
NDK=/opt/android/ndk/android-ndk-r10e
SYSROOT=$NDK/platforms/android-9/arch-arm/
TOOLCHAIN=$NDK/toolchains/arm-linux-androideabi-4.8/prebuilt/linux-x86_64


function build_one
{
./configure
--prefix=$PREFIX
--enable-shared
--enable-static
--disable-gpac
--disable-cli
--cross-prefix=$TOOLCHAIN/bin/arm-linux-androideabi-
--host=arm-linux
--sysroot=$SYSROOT
--extra-cflags="-Os -fpic $ADDI_CFLAGS"
--extra-ldflags="$ADDI_LDFLAGS"
$ADDITIONAL_CONFIGURE_FLAG
}
CPU=arm
PREFIX=$(pwd)/android/$CPU
ADDI_CFLAGS=""

build_one
【保存并退出】


$ chmod +x android_x264_configure.sh
$ ./android_x264_configure.sh
platform: ARM
byte order: little-endian
system: LINUX
cli: no
libx264: internal
shared: yes
static: yes
asm: yes
interlaced: yes
avs: avxsynth
lavf: no
ffms: no
mp4: no
gpl: yes
thread: posix
opencl: yes
filters: crop select_every
debug: no
gprof: no
strip: yes
PIC: yes
bit depth: 8
chroma format: all


You can run 'make' or 'make fprofiled' now.


$ make
$ make install
$ ls -R android
android:
arm


android/arm:
Android.mk bin include lib


android/arm/bin:
x264


android/arm/include:
x264_config.h x264.h


android/arm/lib:
libx264.a libx264.so pkgconfig


android/arm/lib/pkgconfig:
x264.pc


$ vim android/arm/Android.mk
LOCAL_PATH := $(call my-dir)


include $(CLEAR_VRS)
LOCAL_MODULE := libx264
LOCAL_SRC_FILES := lib/libx264.so
LOCAL_EXPORT_C_INCLUDES := $(LOCAL_PATH)/include
include $(PREBUILT_SHARED_LIBRARY)

最后

以上就是怕孤单帅哥为你收集整理的libx264 for android编译(重点是看那个configure如何配置)的全部内容,希望文章能够帮你解决libx264 for android编译(重点是看那个configure如何配置)所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(41)

评论列表共有 0 条评论

立即
投稿
返回
顶部