After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 752427 - GStreamer.java malformed
GStreamer.java malformed
Status: RESOLVED NOTABUG
Product: GStreamer
Classification: Platform
Component: cerbero
1.5.2
Other Windows
: Normal normal
: git master
Assigned To: GStreamer Maintainers
GStreamer Maintainers
Depends on:
Blocks:
 
 
Reported: 2015-07-15 15:52 UTC by Carl Kovamees
Modified: 2016-07-06 18:48 UTC
See Also:
GNOME target: ---
GNOME version: ---


Attachments
GStreamer.java bootstrapper (3.50 KB, text/plain)
2015-07-15 15:52 UTC, Carl Kovamees
Details

Description Carl Kovamees 2015-07-15 15:52:32 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.
Comment 1 Olivier Crête 2016-07-06 18:48:36 UTC
This is ok, the those replaced by the script in gstreamer-1.0.mk when you run "ndk-build".