移植x264到Android系统,将x264移植到Android

在~/workspace/VideoQT/目录下,新建jni目录,在jni目录下,新建libx264目录,在libx264目录下,新建include和lib目录。将~/bysj/x264-snapshot-20131228-2245/目录下的x264.h,x264_config.h拷贝到include目录下,将libx264.a拷贝到lib目录下。在jni目录下,新建Android.mk文件,其脚本程序为:

LOCAL_PATH := $(call my-dir)

include $(CLEAR_VARS)

LOCAL_C_INCLUDES +=$(LOCAL_PATH)/libx264/include

LOCAL_MODULE    := x264jni

LOCAL_SRC_FILES := VideoQianru.c

#LOCAL_LDLIBS := $(LOCAL_PATH)/libx264.a

LOCAL_LDLIBS := -L$(SYSROOT)/usr/lib -llog -lgcc

LOCAL_LDFLAGS += $(LOCAL_PATH)/libx264/lib/libx264.a

#LOCAL_LDLIBS += $(LOCAL_PATH)/libx264.a

#LOCAL_LDLIBS := -L$(SYSROOT)/usr/lib -lgcc

include $(BUILD_SHARED_LIBRARY)

在jni目录下,新建文件VideoQianru.c文件,写jni程序,链接JAVA与C层。然后,终端到jni目录,输入ndk-build,完了之后,就会在VideoQT/libs/armeabi/目录下生成libx264jni.so文件。如图:

815e07039e97d643c58e02ed71e6389b.png

VideoQianru.C文件的代码为

#include

#include

#include

#include

#include

#include

typedef struct

{

x264_param_t * param;

x264_t *handle;

x264_picture_t * picture;

x264_nal_t  *nal;

} Encoder;

jlong Java_com_videoqt_H264Encoder_EncodeBegin(JNIEnv* env, jobject thiz,

jint width, jint height) {

// int i=0;

// static int j=0;

static hua_k=0;

Encoder * en = (Encoder *) malloc(sizeof(Encoder));

//FILE *hua_fp=fopen("/sdcard/x264H264Androidx264.txt","w+");

//fprintf(hua_fp,"hua_k=%d,Java_h264_com_H264Encoder_CompressBegin2014-02-19:1\n",hua_k);

hua_k++;

//fflush(hua_fp);

en->param = (x264_param_t *) malloc(sizeof(x264_param_t));

en->picture = (x264_param_t *) malloc(sizeof(x264_picture_t));

//x264_param_default(en->param); //set default param 浣跨敤//by hgl

x264_param_default(en->param); //set default param by other person

//en->param->rc.i_rc_method = X264_RC_CQP;

//x264_param_default_preset(en->param, "fast", "zerolatency");

x264_param_apply_profile(en->param,"baseline");

en->param->i_log_level = X264_LOG_NONE;

en->param->i_width = width; //set frame width

en->param->i_height = height; //set frame height

en->param->rc.i_lookahead =0;

//en->param->rc.f_rf_constant=25;

//en->param->i_level_idc=12;

en->param->ref=16;

//en->param->i_frame_total=300;

//en->param->rc.i_rc_method = X264_RC_CRF;

/en->param.rc.i_vbv_max_bitrate=(int)((m_bitRate*1.2)/1000) ;

//

en->param.rc.i_bitrate = (int)m_bitRate/1000; ///*from here add by hgl 2013-12-31 10:06*/

en->param->i_csp=X264_CSP_I420;

en->param->i_frame_reference=1;

//

//

//en->param->i_threads=1;

//en->param->b_intra_refresh=1;

//en->param->i_bframe=0;//0

//en->param->b_annexb=1;

//en->param->b_cabac=0;//0

//en->param->i_cabac_init_idc=-1;//-1

//if(i<1000){

//en->param->hua_level[0]=-255;

//i++;

//fprintf(hua_fp,"绗?d娆★紝%d\n",j,en->param->hua_level[0]) ;

//j++;

//}

//en->param->rc.b_cbr=1;

en->param->i_fps_num =25;

en->param->i_fps_den = 1;

//en-> param->i_keyint_max =25;

//en->param->i_fps_num =5 ;

/*to here add by hgl 2013-12-31 10:06*/

//en->param->b_open_gop = 1;

//en->param->i_fps_den = 1;

//by hgl from

//if ((en->handle = x264_encoder_open(en->param)) != 0) {

//for(i=0;i<1000;i++){

//fprintf(hua_fp,"绗?d娆★紝%d\n",j,en->param->hua_level[0]) ;

// }

//j++;

//}

//else{

// return 0;

//}

//by hgl to

if ((en->handle = x264_encoder_open(en->param)) == 0) {

return 0;

}

/* Create a new pic */

x264_picture_alloc(en->picture, X264_CSP_I420, en->param->i_width,

en->param->i_height);

return (jlong) en;

}

jint Java_com_videoqt_H264Encoder_EncodeEnd(JNIEnv* env, jobject thiz,jlong handle)

{

Encoder * en = (Encoder *) handle;

if(en->picture)

{

x264_picture_clean(en->picture);

free(en->picture);

en->picture = 0;

}

if(en->param)

{

free(en->param);

en->param=0;

}

if(en->handle)

{

x264_encoder_close(en->handle);

}

free(en);

return 0;

}

jint Java_com_videoqt_H264Encoder_EncodeContinue(JNIEnv* env, jobject thiz,jlong handle,jint type,jbyteArray in, jint insize,jbyteArray out)

{

Encoder * en = (Encoder *) handle;

x264_picture_t pic_out;

int i_data=0;

int nNal=-1;

int result=0;

int i=0,j=0;

int nPix=0;

jbyte * Buf = (jbyte*)(*env)->GetByteArrayElements(env, in, 0);

jbyte * h264Buf = (jbyte*)(*env)->GetByteArrayElements(env, out, 0);

unsigned char * pTmpOut = h264Buf;

int nPicSize=en->param->i_width*en->param->i_height;

jbyte * y=en->picture->img.plane[0];

jbyte * v=en->picture->img.plane[1];

jbyte * u=en->picture->img.plane[2];

memcpy(en->picture->img.plane[0],Buf,nPicSize);

for (i=0;i

{

*(u+i)=*(Buf+nPicSize+i*2);

*(v+i)=*(Buf+nPicSize+i*2+1);

}

switch (type)

{

case 0:

en->picture->i_type = X264_TYPE_P;

break;

case 1:

en->picture->i_type = X264_TYPE_IDR;

break;

case 2:

en->picture->i_type = X264_TYPE_I;

break;

default:

en->picture->i_type = X264_TYPE_AUTO;

break;

}

if( x264_encoder_encode( en->handle, &(en->nal), &nNal, en->picture ,&pic_out) < 0 )

{

return -1;

}

for (i = 0; i < nNal; i++){

memcpy(pTmpOut, en->nal[i].p_payload, en->nal[i].i_payload);

pTmpOut += en->nal[i].i_payload;

result+=en->nal[i].i_payload;

}

return result;

}

0b1331709591d260c1c78e86d0c51c18.png

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
提供的源码资源涵盖了Java应用等多个领域,每个领域都包含了丰富的实例和项目。这些源码都是基于各自平台的最新技术和标准编写,确保了在对应环境下能够无缝运行。同时,源码中配备了详细的注释和文档,帮助用户快速理解代码结构和实现逻辑。 适用人群: 适合毕业设计、课程设计作业。这些源码资源特别适合大学生群体。无论你是计算机相关专业的学生,还是对其他领域编程感兴趣的学生,这些资源都能为你提供宝贵的学习和实践机会。通过学习和运行这些源码,你可以掌握各平台开发的基础知识,提升编程能力和项目实战经验。 使用场景及目标: 在学习阶段,你可以利用这些源码资源进行课程实践、课外项目或毕业设计。通过分析和运行源码,你将深入了解各平台开发的技术细节和最佳实践,逐步培养起自己的项目开发和问题解决能力。此外,在求职或创业过程中,具备跨平台开发能力的大学生将更具竞争力。 其他说明: 为了确保源码资源的可运行性和易用性,特别注意了以下几点:首先,每份源码都提供了详细的运行环境和依赖说明,确保用户能够轻松搭建起开发环境;其次,源码中的注释和文档都非常完善,方便用户快速上手和理解代码;最后,我会定期更新这些源码资源,以适应各平台技术的最新发展和市场需求。 所有源码均经过严格测试,可以直接运行,可以放心下载使用。有任何使用问题欢迎随时与博主沟通,第一时间进行解答!

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值