[Android] LibVLC android commit 7733732: no vout on mpeg4/m2ts

Edward Wang edward.c.wang at compdigitec.com
Wed Jan 7 17:18:32 CET 2015


On Wed, Jan 7, 2015 at 11:14 AM, Nuno Mota <mundumelga at gmail.com> wrote:
> Hey guys,
>
> I'm having the same issue here.
>
> I compiled the source yesterday and come out with the same problem:
>
>> > D/VLC﹕ core vout display: looking for vout display module matching
>> > "androidsurface": 4 candidates
>> > E/VLC﹕ android_surface vout display: Could not initialize
>> > libandroid.so/libui.so/libgui.so/libsurfaceflinger_client.so!
>> > D/VLC﹕ core vout display: no vout display modules matched
>> > E/VLC﹕ core video output: video output creation failed

We have a new video output, android_window, for recent Android versions.

You should use something like this, to select android_window for
recent versions of Android:

            if(LibVlcUtil.isGingerbreadOrLater())
                libVLC.setVout(LibVLC.VOUT_ANDROID_WINDOW);
            else
                libVLC.setVout(LibVLC.VOUT_ANDROID_SURFACE);

Regards,
Edward


More information about the Android mailing list