D-Thatcher / Android_NDK_YUV

A comparison of several NDK methods that convert a YUV formatted image to RGBA format

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Android_NDK_YUV

A comparison of several NDK methods that convert a YUV encoded image to RGBA format


To reference these native methods in an Activity (Java), declare the method you wish to call inside the class

public native String getMyString();
and load the library that contains that method
static { System.loadLibrary("native"); }


These declarations should occur in-line with in your class' private member variables

About

A comparison of several NDK methods that convert a YUV formatted image to RGBA format


Languages

Language:C++ 76.5%Language:C 19.1%Language:Makefile 4.4%