
简介
该用户还未填写简介
擅长的技术栈
未填写擅长的技术栈
可提供的服务
暂无可提供的服务
Android.bp编译生成 system和vendor分区两份库
在Android.bp中添加vendor_avaiable:ture属性。当然也可以使用vendor:ture属性。官方解释如下:vendor bool, whether this module is specific to an SoC (System-On-a-Chip). When set to true, it is installed into /vendor (or /system..
Android Native代码中的status_t定义
定义在Android/system/core/include/utils/Errors.h中,小提示,Android代码中遇到的symbol,既不是Linux中提供的定义,使用source insight又找不到的情况下,可以去Android/system/core/include/目录找找,可能会有意想不到的收获哦。定义如下:1/*2 * Copyright (C) 2007 The...
硬件解码器API接口对比(google decoder-allwinner decoder)
Google Decoder API/* Decoder client interface. */typedef void* ClientInst; /* Opaque pointer to the client. *//* Function to notify the client that decoder has successfully initialized. */typedef void
到底了