GNOME Bugzilla – Bug 752427
GStreamer.java malformed
Last modified: 2016-07-06 18:48:36 UTC
Created attachment 307483 [details] GStreamer.java bootstrapper All the Android downloads, e.g. gstreamer-1.0-android-x86-1.5.2.tar.bz2, contains a malformed share/gst-android/ndk-build/GStreamer.java. It includes line starts with markup like this: @INCLUDE_FONTS@ @INCLUDE_CA_CERTIFICATES@ @INCLUDE_COPY_FILE@ This is the top of the file: public class GStreamer { private static native void nativeInit(Context context) throws Exception; public static void init(Context context) throws Exception { nativeInit(context); @INCLUDE_FONTS@ copyFonts(context); @INCLUDE_CA_CERTIFICATES@ copyCaCertificates(context); } @INCLUDE_FONTS@ private static void copyFonts(Context context) { @INCLUDE_FONTS@ AssetManager assetManager = context.getAssets(); @INCLUDE_FONTS@ ... This also occurs in 1.5.1 Android downloads.
This is ok, the those replaced by the script in gstreamer-1.0.mk when you run "ndk-build".