Cannot Make VLC Work with GLSurfaceView (egl_android gl: cannot create EGL window surface)
I’m trying to get vlc to work with glsurfaceview and can't seem to make it work since I updated my vlc from 2.0.6 to 2.5.12
Here are the minimal changes I made to edit the sample code (https://code.videolan.org/videolan/libvlc-android-samples) to make necessary changes to use GLSurfaceView:
surface_view.xml:
<SurfaceView> to <android.opengl.GLSurfaceView>
assigned an id to it: android:id="@+id/glsurface”
JavaActivity.java
private SurfaceView mVideoSurface = null; **to** private GLSurfaceView mVideoSurface = null;
mVideoSurface = (SurfaceView) stub.inflate(); **to** mVideoSurface = (GLSurfaceView) stub.inflate();
and right after inflating the surface, I added:
GLSurfaceView glview = (GLSurfaceView) this.findViewById(R.id.glsurface);
glview.setRenderer(new GLSurfaceView.Renderer() {
@Override
public void onSurfaceCreated(GL10 gl, EGLConfig config) {
}
@Override
public void onSurfaceChanged(GL10 gl, int width, int height) {
}
@Override
public void onDrawFrame(GL10 gl) {
}
});
Here are the logs I get from the reference code:
02-15 13:53:11.229 30486-30486/? E/Zygote: v2
02-15 13:53:11.229 30486-30486/? I/libpersona: KNOX_SDCARD checking this for 10161
02-15 13:53:11.229 30486-30486/? I/libpersona: KNOX_SDCARD not a persona
02-15 13:53:11.230 30486-30486/? E/Zygote: accessInfo : 0
02-15 13:53:11.230 30486-30486/? W/SELinux: SELinux selinux_android_compute_policy_index : Policy Index[2], Con:u:r:zygote:s0 RAM:SEPF_SECMOBILE_7.0_0009, [-1 -1 -1 -1 0 1]
02-15 13:53:11.231 30486-30486/? I/SELinux: SELinux: seapp_context_lookup: seinfo=untrusted, level=s0:c512,c768, pkgname=org.videolan.java_sample
02-15 13:53:11.235 30486-30486/? I/art: Late-enabling -Xcheck:jni
02-15 13:53:11.252 30486-30486/? D/TimaKeyStoreProvider: TimaKeyStore is not enabled: cannot add TimaSignature Service and generateKeyPair Service
02-15 13:53:11.259 30486-30493/? I/art: Debugger is no longer active
02-15 13:53:11.259 30486-30493/? I/art: Starting a blocking GC Instrumentation
02-15 13:53:11.359 30486-30486/? D/VLC: [0000007fa6fb2090/6e697274535f676e] core libvlc: VLC media player - 3.0.0-git Vetinari
02-15 13:53:11.359 30486-30486/? D/VLC: [0000007fa6fb2090/6e697274535f676e] core libvlc: Copyright © 1996-2017 the VideoLAN team
02-15 13:53:11.359 30486-30486/? D/VLC: [0000007fa6fb2090/deb120520c10cc3c] core libvlc: revision 2.2.0-git-15026-g8a3958ca57
02-15 13:53:11.359 30486-30486/? D/VLC: [0000007fa6fb2090/c51273cfc0f76898] core libvlc: configured with ../configure '--host=aarch64-linux-android' '--build=x86_64-unknown-linux' '--with-contrib=/home/agility/vlc-android/vlc/contrib/aarch64-linux-android' '--disable-nls' '--enable-live555' '--enable-realrtsp' '--enable-avformat' '--enable-swscale' '--enable-avcodec' '--enable-opus' '--enable-opensles' '--enable-matroska' '--enable-taglib' '--enable-dvbpsi' '--disable-vlc' '--disable-shared' '--disable-update-check' '--disable-vlm' '--disable-dbus' '--enable-lua' '--disable-vcd' '--disable-v4l2' '--enable-dvdread' '--enable-dvdnav' '--disable-bluray' '--disable-linsys' '--disable-decklink' '--disable-libva' '--disable-dv1394' '--enable-mod' '--disable-sid' '--disable-gme' '--disable-tremor' '--disable-mad' '--enable-mpg123' '--disable-dca' '--disable-sdl-image' '--enable-zvbi' '--disable-fluidsynth' '--enable-fluidlite' '--disable-jack' '--disable-pulse' '--disable-alsa' '--disable-samplerate' '--disable-sdl' '--disable-xcb' '--disable-qt' '--dis
02-15 13:53:11.359 30486-30486/? D/VLC: [0000007fa6fb2090/7f93464b70] core libvlc: plug-ins loaded: 295 modules
02-15 13:53:11.359 30486-30486/? D/VLC: [0000007fa6fb2310/1107444bafd2b2d4] core logger: looking for logger module matching "any": 4 candidates
02-15 13:53:11.359 30486-30486/? D/VLC: [0000007fa6fb2310/e764f700d9772716] core logger: using logger module "android_logger"
02-15 13:53:11.359 30486-30486/? D/VLC: [0000007fa6fb2090/7716] core libvlc: translation test: code is "C"
02-15 13:53:11.359 30486-30486/? D/VLC: [0000007fa6fc2070/7716] core keystore: looking for keystore module matching "memory": 3 candidates
02-15 13:53:11.359 30486-30486/? D/VLC: [0000007fa6fc2070/7716] core keystore: using keystore module "memory"
02-15 13:53:11.359 30486-30486/? D/VLC: [0000007fa6fb2090/7716] core libvlc: CPU has capabilities FPU
02-15 13:53:11.362 30486-30486/? D/VLC: [0000007fb3899510/7716] core generic: creating audio output
02-15 13:53:11.362 30486-30486/? D/VLC: [0000007fa6fea990/7716] core audio output: looking for audio output module matching "android_audiotrack": 4 candidates
02-15 13:53:11.363 30486-30486/? E/VLC: [0000007fa6fea990/7716] android_audiotrack audio output: GetStaticFieldID(AudioFormat.ENCODING_DOLBY_TRUEHD) failed
02-15 13:53:11.363 30486-30486/? D/VLC: [0000007fa6fea990/7716] core audio output: using audio output module "android_audiotrack"
02-15 13:53:11.363 30486-30486/? D/VLC: [0000007fb3899510/7716] core generic: keeping audio output
02-15 13:53:11.366 30486-30486/? D/JavaActivity: glview null: false
02-15 13:53:11.371 30486-30486/? D/VLC: [0000007fa6fea990/7716] core audio output: restart requested (3)
02-15 13:53:11.371 30486-30486/? D/VLC: [0000007fa6fea990/7716] android_audiotrack audio output: selected device: pcm
02-15 13:53:11.382 30486-30486/? D/ViewRootImpl@ee880db[JavaActivity]: ThreadedRenderer.create() translucent=false
02-15 13:53:11.387 30486-30486/? D/InputTransport: Input channel constructed: fd=64
02-15 13:53:11.388 30486-30486/? D/ViewRootImpl@ee880db[JavaActivity]: setView = DecorView@4a3c778[JavaActivity] touchMode=true
02-15 13:53:11.389 30486-30486/? D/ViewRootImpl@ee880db[JavaActivity]: dispatchAttachedToWindow
02-15 13:53:11.406 30486-30486/? D/ViewRootImpl@ee880db[JavaActivity]: Relayout returned: oldFrame=[0,0][0,0] newFrame=[0,0][2048,1536] result=0x27 surface={isValid=true 548472727040} surfaceGenerationChanged=true
02-15 13:53:11.406 30486-30486/? D/ViewRootImpl@ee880db[JavaActivity]: mHardwareRenderer.initialize() mSurface={isValid=true 548472727040} hwInitialized=true
02-15 13:53:11.407 30486-30504/? I/Adreno: QUALCOMM build : bc01238, I8e5c908169
Build Date : 12/22/16
OpenGL ES Shader Compiler Version: XE031.09.00.03
Local Branch : mybranch24102081
Remote Branch : quic/LA.BR.1.3.6.c1_rb1.5
Remote Branch : NONE
Reconstruct Branch : NOTHING
02-15 13:53:11.407 30486-30486/? W/JavaActivity: onLayoutChange()
02-15 13:53:11.411 30486-30504/? I/OpenGLRenderer: Initialized EGL, version 1.4
02-15 13:53:11.411 30486-30504/? D/OpenGLRenderer: Swap behavior 1
02-15 13:53:11.419 30486-30486/? D/SurfaceView: Relayout returned: oldFrame=[0,0][0,0] newFrame=[0,0][2048,1536] result=0x7 surface={Surface(name=null)/@0xf52ae51 isValid=true 548472734208}
02-15 13:53:11.420 30486-30486/? D/VLC: [0000007fa6fb0290/7716] core input: Creating an input for 'BigBuckBunny_640x360.m4v'
02-15 13:53:11.420 30486-30505/? D/VLC: [0000007fa6fb0290/7729] core input: using timeshift granularity of 50 MiB
02-15 13:53:11.420 30486-30505/? D/VLC: [0000007fa6fb0290/7729] core input: using default timeshift path
02-15 13:53:11.421 30486-30505/? D/VLC: [0000007fa6fb0290/7729] core input: `http://download.blender.org/peach/bigbuckbunny_movies/BigBuckBunny_640x360.m4v' gives access `http' demux `any' path `download.blender.org/peach/bigbuckbunny_movies/BigBuckBunny_640x360.m4v'
02-15 13:53:11.421 30486-30505/? D/VLC: [0000007fa8c49a90/7729] core input source: creating demux: access='http' demux='any' location='download.blender.org/peach/bigbuckbunny_movies/BigBuckBunny_640x360.m4v' file='(null)'
02-15 13:53:11.421 30486-30505/? D/VLC: [0000007fa8c49bd0/7729] core demux: looking for access_demux module matching "http": 6 candidates
02-15 13:53:11.421 30486-30505/? D/VLC: [0000007fa8c49bd0/7729] core demux: no access_demux modules matched
02-15 13:53:11.421 30486-30505/? D/VLC: [0000007fa8ca5990/7729] core stream: creating access: http://download.blender.org/peach/bigbuckbunny_movies/BigBuckBunny_640x360.m4v
02-15 13:53:11.421 30486-30505/? D/VLC: [0000007fa8ca5990/7729] core stream: looking for access module matching "http": 22 candidates
02-15 13:53:11.421 30486-30505/? D/VLC: [0000007fa8c8de90/7729] core keystore: looking for keystore module matching "any": 3 candidates
02-15 13:53:11.421 30486-30505/? D/VLC: [0000007fa8c8de90/7729] core keystore: no keystore modules matched
02-15 13:53:11.421 30486-30505/? D/VLC: [0000007fa8ca5990/7729] connmgr stream: resolving download.blender.org ...
02-15 13:53:11.423 30486-30505/? D/VLC: [0000007fa8ca5990/7729] connmgr stream: outgoing request:
GET /peach/bigbuckbunny_movies/BigBuckBunny_640x360.m4v HTTP/1.1
Host: download.blender.org
Accept: */*
Accept-Language: en_US
User-Agent: VLC/3.0.0-git LibVLC/3.0.0-git
Range: bytes=0-
02-15 13:53:11.443 30486-30486/? D/ViewRootImpl@ee880db[JavaActivity]: Relayout returned: oldFrame=[0,0][2048,1536] newFrame=[0,0][2048,1536] result=0x1 surface={isValid=true 548472727040} surfaceGenerationChanged=false
02-15 13:53:11.450 30486-30486/? D/SurfaceView: Relayout returned: oldFrame=[0,0][2048,1536] newFrame=[0,0][2048,1536] result=0x1 surface={Surface(name=null)/@0xf52ae51 isValid=true 547927334912}
02-15 13:53:11.493 30486-30486/? D/ViewRootImpl@ee880db[JavaActivity]: MSG_RESIZED_REPORT: frame=Rect(0, 0 - 2048, 1536) ci=Rect(0, 0 - 0, 0) vi=Rect(0, 0 - 0, 0) or=2
02-15 13:53:11.493 30486-30486/? D/ViewRootImpl@ee880db[JavaActivity]: MSG_WINDOW_FOCUS_CHANGED 1
02-15 13:53:11.494 30486-30486/? D/ViewRootImpl@ee880db[JavaActivity]: mHardwareRenderer.initializeIfNeeded()#2 mSurface={isValid=true 548472727040}
02-15 13:53:11.494 30486-30486/? V/InputMethodManager: Starting input: tba=android.view.inputmethod.EditorInfo@af716b6 nm : org.videolan.java_sample ic=null
02-15 13:53:11.494 30486-30486/? I/InputMethodManager: [IMM] startInputInner - mService.startInputOrWindowGainedFocus
02-15 13:53:11.505 30486-30486/? W/JavaActivity: onLayoutChange()
02-15 13:53:11.506 30486-30500/? D/InputTransport: Input channel constructed: fd=69
02-15 13:53:11.511 30486-30486/? V/InputMethodManager: Starting input: tba=android.view.inputmethod.EditorInfo@b940d90 nm : org.videolan.java_sample ic=null
02-15 13:53:11.747 30486-30505/? D/VLC: [0000007fa8ca5990/7729] connmgr stream: incoming response:
HTTP/1.1 206 Partial Content
Content-Type: application/octet-stream
Accept-Ranges: bytes
ETag: "2816293834"
Last-Modified: Sat, 07 Jun 2008 14:50:00 GMT
Content-Range: bytes 0-121283918/121283919
Content-Length: 121283919
Date: Thu, 15 Feb 2018 21:53:08 GMT
Server: lighttpd/1.4.48
02-15 13:53:11.748 30486-30505/? D/VLC: [0000007fa8ca5990/7729] core stream: using access module "access"
02-15 13:53:11.748 30486-30505/? D/VLC: [0000007fa8ca5b10/7729] core stream: looking for stream_filter module matching "prefetch,cache_block": 26 candidates
02-15 13:53:11.748 30486-30505/? D/VLC: [0000007fa8ca5b10/7729] prefetch stream: using 16777216 bytes buffer, 16384 bytes read
02-15 13:53:11.748 30486-30505/? D/VLC: [0000007fa8ca5b10/7729] core stream: using stream_filter module "prefetch"
02-15 13:53:11.748 30486-30505/? D/VLC: [0000007fa8ca5c90/7729] core stream: looking for stream_filter module matching "any": 26 candidates
02-15 13:53:11.748 30486-30505/? D/VLC: [0000007fa8ca5c90/7729] lua stream: Trying Lua scripts in /data/user/0/org.videolan.java_sample/app_vlc/.share/lua/playlist
02-15 13:53:11.749 30486-30505/? D/VLC: [0000007fa8ca5c90/7729] lua stream: Trying Lua scripts in /system/usr/share/lua/playlist
02-15 13:53:11.749 30486-30505/? D/VLC: [0000007fa8ca5c90/7729] core stream: no stream_filter modules matched
02-15 13:53:11.749 30486-30505/? D/VLC: [0000007fa8c49bd0/7729] core stream_directory: looking for stream_directory module matching "any": 1 candidates
02-15 13:53:11.749 30486-30505/? D/VLC: [0000007fa8c49bd0/7729] core stream_directory: no stream_directory modules matched
02-15 13:53:11.749 30486-30505/? D/VLC: [0000007fa8c49a90/7729] core input source: attachment of directory-extractor failed for http://download.blender.org/peach/bigbuckbunny_movies/BigBuckBunny_640x360.m4v
02-15 13:53:11.749 30486-30505/? D/VLC: [0000007fa8ca5c90/7729] core stream: looking for stream_filter module matching "record": 26 candidates
02-15 13:53:11.749 30486-30505/? D/VLC: [0000007fa8ca5c90/7729] core stream: using stream_filter module "record"
02-15 13:53:11.749 30486-30505/? D/VLC: [0000007fa8c49a90/7729] core input source: creating demux: access='http' demux='any' location='download.blender.org/peach/bigbuckbunny_movies/BigBuckBunny_640x360.m4v' file='(null)'
02-15 13:53:11.749 30486-30505/? D/VLC: [0000007fa8c49bd0/7729] core demux: looking for demux module matching "any": 46 candidates
02-15 13:53:12.248 30486-30505/? W/VLC: [0000007fa8ca6b90/7729] mp4 stream: Unknown uuid type box
02-15 13:53:12.437 30486-30505/org.videolan.java_sample D/VLC: [0000007fa8ca5c90/7729] mp4 stream: dumping root Box "root"
02-15 13:53:12.438 30486-30505/org.videolan.java_sample D/VLC: [0000007fa8ca5c90/7729] mp4 stream: | + ftyp size 32 offset 0
02-15 13:53:12.438 30486-30505/org.videolan.java_sample D/VLC: [0000007fa8ca5c90/7729] mp4 stream: | + moov size 261693 offset 32
02-15 13:53:12.438 30486-30505/org.videolan.java_sample D/VLC: [0000007fa8ca5c90/7729] mp4 stream: | | + mvhd size 108 offset 40
02-15 13:53:12.438 30486-30505/org.videolan.java_sample D/VLC: [0000007fa8ca5c90/7729] mp4 stream: | | + trak size 148033 offset 148
02-15 13:53:12.438 30486-30505/org.videolan.java_sample D/VLC: [0000007fa8ca5c90/7729] mp4 stream: | | | + tkhd size 92 offset 156
02-15 13:53:12.438 30486-30505/org.videolan.java_sample D/VLC: [0000007fa8ca5c90/7729] mp4 stream: | | | + edts size 36 offset 248
02-15 13:53:12.438 30486-30505/org.videolan.java_sample D/VLC: [0000007fa8ca5c90/7729] mp4 stream: | | | | + elst size 28 offset 256
02-15 13:53:12.438 30486-30505/org.videolan.java_sample D/VLC: [0000007fa8ca5c90/7729] mp4 stream: | | | + mdia size 147897 offset 284
02-15 13:53:12.438 30486-30505/org.videolan.java_sample D/VLC: [0000007fa8ca5c90/7729] mp4 stream: | | | | + mdhd size 32 offset 292
02-15 13:53:12.438 30486-30505/org.videolan.java_sample D/VLC: [0000007fa8ca5c90/7729] mp4 stream: | | | | + hdlr size 58 offset 324
02-15 13:53:12.438 30486-30505/org.videolan.java_sample D/VLC: [0000007fa8ca5c90/7729] mp4 stream: | | | | + minf size 147799 offset 382
02-15 13:53:12.438 30486-30505/org.videolan.java_sample D/VLC: [0000007fa8ca5c90/7729] mp4 stream: | | | | | + smhd size 16 offset 390
02-15 13:53:12.438 30486-30505/org.videolan.java_sample D/VLC: [0000007fa8ca5c90/7729] mp4 stream: | | | | | + dinf size 36 offset 406
02-15 13:53:12.438 30486-30505/org.videolan.java_sample D/VLC: [0000007fa8ca5c90/7729] mp4 stream: | | | | | | + dref size 28 offset 414
02-15 13:53:12.439 30486-30505/org.videolan.java_sample D/VLC: [0000007fa8ca5c90/7729] mp4 stream: | | | | | | | + url size 12 offset 430
02-15 13:53:12.439 30486-30505/org.videolan.java_sample D/VLC: [0000007fa8ca5c90/7729] mp4 stream: | | | | | + stbl size 147739 offset 442
02-15 13:53:12.439 30486-30505/org.videolan.java_sample D/VLC: [0000007fa8ca5c90/7729] mp4 stream: | | | | | | + stsd size 103 offset 450
02-15 13:53:12.439 30486-30505/org.videolan.java_sample D/VLC: [0000007fa8ca5c90/7729] mp4 stream: | | | | | | | + mp4a size 87 offset 466
02-15 13:53:12.439 30486-30505/org.videolan.java_sample D/VLC: [0000007fa8ca5c90/7729] mp4 stream: | | | | | | | | + esds size 51 offset 502
02-15 13:53:12.439 30486-30505/org.videolan.java_sample D/VLC: [0000007fa8ca5c90/7729] mp4 stream: | | | | | | + stts size 24 offset 553
02-15 13:53:12.439 30486-30505/org.videolan.java_sample D/VLC: [0000007fa8ca5c90/7729] mp4 stream: | | | | | | + stsc size 33616 offset 577
02-15 13:53:12.439 30486-30505/org.videolan.java_sample D/VLC: [0000007fa8ca5c90/7729] mp4 stream: | | | | | | + stsz size 102772 offset 34193
02-15 13:53:12.439 30486-30505/org.videolan.java_sample D/VLC: [0000007fa8ca5c90/7729] mp4 stream: | | | | | | + stco size 11216 offset 136965
02-15 13:53:12.439 30486-30505/org.videolan.java_sample D/VLC: [0000007fa8ca5c90/7729] mp4 stream: | | + trak size 111116 offset 148181
02-15 13:53:12.439 30486-30505/org.videolan.java_sample D/VLC: [0000007fa8ca5c90/7729] mp4 stream: | | | + tkhd size 92 offset 148189
02-15 13:53:12.439 30486-30505/org.videolan.java_sample D/VLC: [0000007fa8ca5c90/7729] mp4 stream: | | | + edts size 36 offset 148281
02-15 13:53:12.439 30486-30505/org.videolan.java_sample D/VLC: [0000007fa8ca5c90/7729] mp4 stream: | | | | + elst size 28 offset 148289
02-15 13:53:12.439 30486-30505/org.videolan.java_sample D/VLC: [0000007fa8ca5c90/7729] mp4 stream: | | | + mdia size 110980 offset 148317
02-15 13:53:12.440 30486-30505/org.videolan.java_sample D/VLC: [0000007fa8ca5c90/7729] mp4 stream: | | | | + mdhd size 32 offset 148325
02-15 13:53:12.440 30486-30505/org.videolan.java_sample D/VLC: [0000007fa8ca5c90/7729] mp4 stream: | | | | + hdlr size 58 offset 148357
02-15 13:53:12.440 30486-30505/org.videolan.java_sample D/VLC: [0000007fa8ca5c90/7729] mp4 stream: | | | | + minf size 110882 offset 148415
02-15 13:53:12.440 30486-30505/org.videolan.java_sample D/VLC: [0000007fa8ca5c90/7729] mp4 stream: | | | | | + vmhd size 20 offset 148423
02-15 13:53:12.440 30486-30505/org.videolan.java_sample D/VLC: [0000007fa8ca5c90/7729] mp4 stream: | | | | | + dinf size 36 offset 148443
02-15 13:53:12.440 30486-30505/org.videolan.java_sample D/VLC: [0000007fa8ca5c90/7729] mp4 stream: | | | | | | + dref size 28 offset 148451
02-15 13:53:12.440 30486-30505/org.videolan.java_sample D/VLC: [0000007fa8ca5c90/7729] mp4 stream: | | | | | | | + url size 12 offset 148467
02-15 13:53:12.440 30486-30505/org.videolan.java_sample D/VLC: [0000007fa8ca5c90/7729] mp4 stream: | | | | | + stbl size 110818 offset 148479
02-15 13:53:12.440 30486-30505/org.videolan.java_sample D/VLC: [0000007fa8ca5c90/7729] mp4 stream: | | | | | | + stsd size 178 offset 148487
02-15 13:53:12.440 30486-30505/org.videolan.java_sample D/VLC: [0000007fa8ca5c90/7729] mp4 stream: | | | | | | | + avc1 size 162 offset 148503
02-15 13:53:12.440 30486-30505/org.videolan.java_sample D/VLC: [0000007fa8ca5c90/7729] mp4 stream: | | | | | | | | + avcC size 48 offset 148589
02-15 13:53:12.440 30486-30505/org.videolan.java_sample D/VLC: [0000007fa8ca5c90/7729] mp4 stream: | | | | | | | | + uuid size 28 offset 148637
02-15 13:53:12.440 30486-30505/org.videolan.java_sample D/VLC: [0000007fa8ca5c90/7729] mp4 stream: | | | | | | + stts size 32 offset 148665
02-15 13:53:12.440 30486-30505/org.videolan.java_sample D/VLC: [0000007fa8ca5c90/7729] mp4 stream: | | | | | | + stss size 780 offset 148697
02-15 13:53:12.440 30486-30505/org.videolan.java_sample D/VLC: [0000007fa8ca5c90/7729] mp4 stream: | | | | | | + sdtp size 14328 offset 149477
02-15 13:53:12.440 30486-30505/org.videolan.java_sample D/VLC: [0000007fa8ca5c90/7729] mp4 stream: | | | | | | + stsc size 28648 offset 163805
02-15 13:53:12.440 30486-30505/org.videolan.java_sample D/VLC: [0000007fa8ca5c90/7729] mp4 stream: | | | | | | + stsz size 57284 offset 192453
02-15 13:53:12.440 30486-30505/org.videolan.java_sample D/VLC: [0000007fa8ca5c90/7729] mp4 stream: | | | | | | + stco size 9560 offset 249737
02-15 13:53:12.441 30486-30505/org.videolan.java_sample D/VLC: [0000007fa8ca5c90/7729] mp4 stream: | | + udta size 2428 offset 259297
02-15 13:53:12.441 30486-30505/org.videolan.java_sample D/VLC: [0000007fa8ca5c90/7729] mp4 stream: | | | + meta size 2420 offset 259305
02-15 13:53:12.441 30486-30505/org.videolan.java_sample D/VLC: [0000007fa8ca5c90/7729] mp4 stream: | | | | + hdlr size 32 offset 259317
02-15 13:53:12.441 30486-30505/org.videolan.java_sample D/VLC: [0000007fa8ca5c90/7729] mp4 stream: | | | | + ilst size 406 offset 259349
02-15 13:53:12.441 30486-30505/org.videolan.java_sample D/VLC: [0000007fa8ca5c90/7729] mp4 stream: | | | | | + cprt size 73 offset 259357
02-15 13:53:12.441 30486-30505/org.videolan.java_sample D/VLC: [0000007fa8ca5c90/7729] mp4 stream: | | | | | + cprt size 73 offset 259430
02-15 13:53:12.441 30486-30505/org.videolan.java_sample D/VLC: [0000007fa8ca5c90/7729] mp4 stream: | | | | | + cnam size 38 offset 259503
02-15 13:53:12.441 30486-30505/org.videolan.java_sample D/VLC: [0000007fa8ca5c90/7729] mp4 stream: | | | | | | + data size 30 offset 259511
02-15 13:53:12.441 30486-30505/org.videolan.java_sample D/VLC: [0000007fa8ca5c90/7729] mp4 stream: | | | | | + cnam size 38 offset 259541
02-15 13:53:12.441 30486-30505/org.videolan.java_sample D/VLC: [0000007fa8ca5c90/7729] mp4 stream: | | | | | | + data size 30 offset 259549
02-15 13:53:12.441 30486-30509/org.videolan.java_sample D/VLC: [0000007fa8ca5990/772d] connmgr stream: resolving download.blender.org ...
02-15 13:53:12.441 30486-30505/org.videolan.java_sample D/VLC: [0000007fa8ca5c90/7729] mp4 stream: | | | | | + cART size 45 offset 259579
02-15 13:53:12.441 30486-30505/org.videolan.java_sample D/VLC: [0000007fa8ca5c90/7729] mp4 stream: | | | | | | + data size 37 offset 259587
02-15 13:53:12.441 30486-30505/org.videolan.java_sample D/VLC: [0000007fa8ca5c90/7729] mp4 stream: | | | | | + cART size 45 offset 259624
02-15 13:53:12.441 30486-30505/org.videolan.java_sample D/VLC: [0000007fa8ca5c90/7729] mp4 stream: | | | | | | + data size 37 offset 259632
02-15 13:53:12.441 30486-30505/org.videolan.java_sample D/VLC: [0000007fa8ca5c90/7729] mp4 stream: | | | | | + cwrt size 58 offset 259669
02-15 13:53:12.441 30486-30505/org.videolan.java_sample D/VLC: [0000007fa8ca5c90/7729] mp4 stream: | | | | | | + data size 50 offset 259677
02-15 13:53:12.441 30486-30505/org.videolan.java_sample D/VLC: [0000007fa8ca5c90/7729] mp4 stream: | | | | | + cday size 28 offset 259727
02-15 13:53:12.441 30486-30505/org.videolan.java_sample D/VLC: [0000007fa8ca5c90/7729] mp4 stream: | | | | | | + data size 20 offset 259735
02-15 13:53:12.441 30486-30505/org.videolan.java_sample D/VLC: [0000007fa8ca5c90/7729] mp4 stream: | | | | + free size 1970 offset 259755
02-15 13:53:12.442 30486-30505/org.videolan.java_sample D/VLC: [0000007fa8ca5c90/7729] mp4 stream: | + free size 8 offset 261725
02-15 13:53:12.442 30486-30505/org.videolan.java_sample D/VLC: [0000007fa8ca5c90/7729] mp4 stream: | + free size 8 offset 261733
02-15 13:53:12.442 30486-30505/org.videolan.java_sample D/VLC: [0000007fa8ca5c90/7729] mp4 stream: | + mdat size 121022176 offset 261741
02-15 13:53:12.442 30486-30505/org.videolan.java_sample D/VLC: [0000007fa8c49bd0/7729] mp4 demux: unrecognized major media specification (M4V ).
02-15 13:53:12.442 30486-30505/org.videolan.java_sample D/VLC: [0000007fa8c49bd0/7729] mp4 demux: found 2 tracks
02-15 13:53:12.442 30486-30505/org.videolan.java_sample W/VLC: [0000007fa8c49bd0/7729] mp4 demux: elst box found
02-15 13:53:12.442 30486-30505/org.videolan.java_sample D/VLC: [0000007fa8c49bd0/7729] mp4 demux: - [0] duration=596461ms media time=0ms) rate=1.0
02-15 13:53:12.443 30486-30505/org.videolan.java_sample D/VLC: [0000007fa8c49bd0/7729] mp4 demux: track[Id 0x1] read 2800 chunk
02-15 13:53:12.444 30486-30505/org.videolan.java_sample W/VLC: [0000007fa8c49bd0/7729] mp4 demux: STTS table of 1 entries
02-15 13:53:12.444 30486-30509/org.videolan.java_sample D/VLC: [0000007fa8ca5990/772d] connmgr stream: outgoing request:
GET /peach/bigbuckbunny_movies/BigBuckBunny_640x360.m4v HTTP/1.1
Host: download.blender.org
Accept: */*
Accept-Language: en_US
User-Agent: VLC/3.0.0-git LibVLC/3.0.0-git
If-Match: "2816293834"
Range: bytes=121283917-
02-15 13:53:12.450 30486-30505/org.videolan.java_sample D/VLC: [0000007fa8c49bd0/7729] mp4 demux: track[Id 0x1] read 25688 samples length:596s
02-15 13:53:12.450 30486-30505/org.videolan.java_sample D/VLC: [0000007fa6fb0290/7729] core input: selecting program id=0
02-15 13:53:12.451 30486-30505/org.videolan.java_sample D/VLC: [0000007fa8c49bd0/7729] mp4 demux: adding track[Id 0x1] audio (enable) language eng
02-15 13:53:12.451 30486-30505/org.videolan.java_sample W/VLC: [0000007fa8c49bd0/7729] mp4 demux: elst box found
02-15 13:53:12.451 30486-30505/org.videolan.java_sample D/VLC: [0000007fa8c49bd0/7729] mp4 demux: - [0] duration=596461ms media time=0ms) rate=1.0
02-15 13:53:12.452 30486-30505/org.videolan.java_sample D/VLC: [0000007fa8c49bd0/7729] mp4 demux: track[Id 0x2] read 2386 chunk
02-15 13:53:12.452 30486-30505/org.videolan.java_sample W/VLC: [0000007fa8c49bd0/7729] mp4 demux: STTS table of 2 entries
02-15 13:53:12.456 30486-30505/org.videolan.java_sample D/VLC: [0000007fa8c49bd0/7729] mp4 demux: track[Id 0x2] read 14316 samples length:596s
02-15 13:53:12.456 30486-30505/org.videolan.java_sample D/VLC: [0000007fa8c49bd0/7729] mp4 demux: adding track[Id 0x2] video (enable) language eng
02-15 13:53:12.457 30486-30505/org.videolan.java_sample D/VLC: [0000007fa8c49bd0/7729] core demux: using demux module "mp4"
02-15 13:53:12.457 30486-30505/org.videolan.java_sample D/VLC: [0000007f92f0e790/7729] core decoder: looking for audio decoder module matching "mediacodec_ndk,all": 17 candidates
02-15 13:53:12.457 30486-30505/org.videolan.java_sample D/VLC: [0000007f92f0e790/7729] avcodec decoder: using ffmpeg Lavc57.100.104
02-15 13:53:12.457 30486-30505/org.videolan.java_sample D/VLC: [0000007f92f0e790/7729] avcodec decoder: CPU flags: 0x00000068
02-15 13:53:12.480 30486-30505/org.videolan.java_sample D/VLC: [0000007f92f0e790/7729] avcodec decoder: codec (aac) started
02-15 13:53:12.480 30486-30505/org.videolan.java_sample D/VLC: [0000007f92f0e790/7729] core decoder: using audio decoder module "avcodec"
02-15 13:53:12.480 30486-30505/org.videolan.java_sample D/VLC: [0000007f92f0eb10/7729] core decoder: looking for video decoder module matching "mediacodec_ndk,all": 11 candidates
02-15 13:53:12.491 30486-30505/org.videolan.java_sample W/AudioCapabilities: Unsupported mime audio/mpeg-L1
02-15 13:53:12.492 30486-30505/org.videolan.java_sample W/AudioCapabilities: Unsupported mime audio/mpeg-L2
02-15 13:53:12.496 30486-30505/org.videolan.java_sample W/AudioCapabilities: Unsupported mime audio/x-ms-wma
02-15 13:53:12.497 30486-30505/org.videolan.java_sample W/AudioCapabilities: Unsupported mime audio/x-ima
02-15 13:53:12.499 30486-30505/org.videolan.java_sample W/AudioCapabilities: Unsupported mime audio/evrc
02-15 13:53:12.502 30486-30505/org.videolan.java_sample W/AudioCapabilities: Unsupported mime audio/qcelp
02-15 13:53:12.508 30486-30505/org.videolan.java_sample W/VideoCapabilities: Unrecognized profile 2130706433 for video/avc
02-15 13:53:12.518 30486-30505/org.videolan.java_sample W/Utils: could not parse long range '175-174'
02-15 13:53:12.523 30486-30505/org.videolan.java_sample W/AudioCapabilities: Unsupported mime audio/qcelp
02-15 13:53:12.524 30486-30505/org.videolan.java_sample W/AudioCapabilities: Unsupported mime audio/evrc
02-15 13:53:12.536 30486-30505/org.videolan.java_sample W/VideoCapabilities: Unsupported mime video/wvc1
02-15 13:53:12.538 30486-30505/org.videolan.java_sample W/VideoCapabilities: Unsupported mime video/x-ms-wmv
02-15 13:53:12.559 30486-30505/org.videolan.java_sample W/VideoCapabilities: Unrecognized profile/level 1/32 for video/mp4v-es
02-15 13:53:12.559 30486-30505/org.videolan.java_sample W/VideoCapabilities: Unrecognized profile/level 32768/2 for video/mp4v-es
02-15 13:53:12.559 30486-30505/org.videolan.java_sample W/VideoCapabilities: Unrecognized profile/level 32768/64 for video/mp4v-es
02-15 13:53:12.562 30486-30505/org.videolan.java_sample W/VideoCapabilities: Unsupported mime video/wvc1
02-15 13:53:12.564 30486-30505/org.videolan.java_sample W/VideoCapabilities: Unsupported mime video/x-ms-wmv
02-15 13:53:12.567 30486-30505/org.videolan.java_sample W/VideoCapabilities: Unsupported mime video/x-ms-wmv7
02-15 13:53:12.570 30486-30505/org.videolan.java_sample W/VideoCapabilities: Unsupported mime video/x-ms-wmv8
02-15 13:53:12.573 30486-30505/org.videolan.java_sample W/VideoCapabilities: Unsupported mime video/mp43
02-15 13:53:12.615 30486-30505/org.videolan.java_sample I/VideoCapabilities: Unsupported profile 4 for video/mp4v-es
02-15 13:53:12.655 30486-30505/org.videolan.java_sample W/VLC: [0000007f92f0eb10/7729] mediacodec decoder: Exception occurred in MediaCodecInfo.getCapabilitiesForType
02-15 13:53:12.655 30486-30505/org.videolan.java_sample W/VLC: [0000007f92f0eb10/7729] mediacodec decoder: Exception occurred in MediaCodecInfo.getCapabilitiesForType
02-15 13:53:12.655 30486-30505/org.videolan.java_sample W/VLC: [0000007f92f0eb10/7729] mediacodec decoder: Exception occurred in MediaCodecInfo.getCapabilitiesForType
02-15 13:53:12.655 30486-30505/org.videolan.java_sample W/VLC: [0000007f92f0eb10/7729] mediacodec decoder: Exception occurred in MediaCodecInfo.getCapabilitiesForType
02-15 13:53:12.655 30486-30505/org.videolan.java_sample W/VLC: [0000007f92f0eb10/7729] mediacodec decoder: Exception occurred in MediaCodecInfo.getCapabilitiesForType
02-15 13:53:12.656 30486-30505/org.videolan.java_sample W/VLC: [0000007f92f0eb10/7729] mediacodec decoder: Exception occurred in MediaCodecInfo.getCapabilitiesForType
02-15 13:53:12.656 30486-30505/org.videolan.java_sample W/VLC: [0000007f92f0eb10/7729] mediacodec decoder: Exception occurred in MediaCodecInfo.getCapabilitiesForType
02-15 13:53:12.657 30486-30505/org.videolan.java_sample D/VLC: [0000007f92f0eb10/7729] mediacodec decoder: Number of profile levels: 3
02-15 13:53:12.657 30486-30505/org.videolan.java_sample D/VLC: [0000007f92f0eb10/7729] mediacodec decoder: using OMX.qcom.video.decoder.avc
02-15 13:53:12.658 30486-30505/org.videolan.java_sample D/VLC: [0000007f92f0ee90/7729] core spu text: looking for text renderer module matching "any": 1 candidates
02-15 13:53:12.658 30486-30505/org.videolan.java_sample D/VLC: [0000007fa8ca6e90/7729] core stream: creating access: file:///system/etc/fonts.xml
02-15 13:53:12.659 30486-30505/org.videolan.java_sample D/VLC: [0000007fa8ca6e90/7729] core stream: (path: /system/etc/fonts.xml)
02-15 13:53:12.659 30486-30505/org.videolan.java_sample D/VLC: [0000007fa8ca6e90/7729] core stream: looking for access module matching "file": 22 candidates
02-15 13:53:12.659 30486-30505/org.videolan.java_sample D/VLC: [0000007fa8ca6e90/7729] core stream: using access module "filesystem"
02-15 13:53:12.659 30486-30505/org.videolan.java_sample D/VLC: [0000007fa8ca7610/7729] core stream: looking for stream_filter module matching "prefetch,cache_read": 26 candidates
02-15 13:53:12.659 30486-30505/org.videolan.java_sample D/VLC: [0000007fa8ca7610/7729] cache_read stream: Using stream method for AStream*
02-15 13:53:12.659 30486-30505/org.videolan.java_sample D/VLC: [0000007fa8ca7610/7729] cache_read stream: starting pre-buffering
02-15 13:53:12.659 30486-30505/org.videolan.java_sample D/VLC: [0000007fa8ca7610/7729] cache_read stream: received first data after 0 ms
02-15 13:53:12.659 30486-30505/org.videolan.java_sample D/VLC: [0000007fa8ca7610/7729] cache_read stream: pre-buffering done 1024 bytes in 0s - 5586 KiB/s
02-15 13:53:12.659 30486-30505/org.videolan.java_sample D/VLC: [0000007fa8ca7610/7729] core stream: using stream_filter module "cache_read"
02-15 13:53:12.659 30486-30505/org.videolan.java_sample D/VLC: [0000007fa8ca7790/7729] core stream: looking for stream_filter module matching "any": 26 candidates
02-15 13:53:12.660 30486-30505/org.videolan.java_sample D/VLC: [0000007fa8ca7790/7729] lua stream: Trying Lua scripts in /data/user/0/org.videolan.java_sample/app_vlc/.share/lua/playlist
02-15 13:53:12.660 30486-30505/org.videolan.java_sample D/VLC: [0000007fa8ca7790/7729] lua stream: Trying Lua scripts in /system/usr/share/lua/playlist
02-15 13:53:12.660 30486-30505/org.videolan.java_sample D/VLC: [0000007fa8ca7790/7729] core stream: no stream_filter modules matched
02-15 13:53:12.660 30486-30505/org.videolan.java_sample D/VLC: [0000007f92ed8a90/7729] core xml reader: looking for xml reader module matching "any": 1 candidates
02-15 13:53:12.660 30486-30505/org.videolan.java_sample D/VLC: [0000007f92ed8a90/7729] core xml reader: using xml reader module "xml"
02-15 13:53:12.671 30486-30505/org.videolan.java_sample D/VLC: [0000007fa8ca7610/7729] core stream: removing module "cache_read"
02-15 13:53:12.671 30486-30505/org.videolan.java_sample D/VLC: [0000007fa8ca6e90/7729] core stream: removing module "filesystem"
02-15 13:53:12.672 30486-30505/org.videolan.java_sample D/VLC: [0000007f92f0ee90/7729] core spu text: using text renderer module "freetype"
02-15 13:53:12.672 30486-30505/org.videolan.java_sample D/VLC: [0000007f92f0f210/7729] core scale: looking for video converter module matching "any": 14 candidates
02-15 13:53:12.673 30486-30505/org.videolan.java_sample D/VLC: [0000007f92f0f210/7729] swscale scale: 32x32 (32x32) chroma: YUVA -> 16x16 (16x16) chroma: RGBA with scaling using Bicubic (good quality)
02-15 13:53:12.673 30486-30505/org.videolan.java_sample D/VLC: [0000007f92f0f210/7729] core scale: using video converter module "swscale"
02-15 13:53:12.673 30486-30505/org.videolan.java_sample D/VLC: [0000007f92f0f590/7729] core scale: looking for video converter module matching "any": 14 candidates
02-15 13:53:12.673 30486-30505/org.videolan.java_sample D/VLC: [0000007f92f0f590/7729] yuvp scale: YUVP to YUVA converter
02-15 13:53:12.673 30486-30505/org.videolan.java_sample D/VLC: [0000007f92f0f590/7729] core scale: using video converter module "yuvp"
02-15 13:53:12.673 30486-30505/org.videolan.java_sample D/VLC: [0000007fa8c34090/7729] core video output: Deinterlacing available
02-15 13:53:12.673 30486-30505/org.videolan.java_sample D/VLC: [0000007fa8c34090/7729] core video output: deinterlace -1, mode auto, is_needed 0
02-15 13:53:12.673 30486-30505/org.videolan.java_sample D/VLC: [0000007f92f74010/7729] core window: looking for vout window module matching "any": 1 candidates
02-15 13:53:12.674 30486-30505/org.videolan.java_sample D/VLC: [0000007f92f74010/7729] mediacodec window: InitJNIFields success
02-15 13:53:12.674 30486-30505/org.videolan.java_sample D/VLC: [0000007f92f74010/7729] core window: resized to 2048x1536
02-15 13:53:12.675 30486-30505/org.videolan.java_sample D/VLC: [0000007f92f74010/7729] core window: using vout window module "android_window"
02-15 13:53:12.676 30486-30512/org.videolan.java_sample D/VLC: [0000007fa8c34090/7730] core video output: Opening vout display wrapper
02-15 13:53:12.676 30486-30512/org.videolan.java_sample D/VLC: [0000007f9307f390/7730] core vout display: looking for vout display module matching "any": 5 candidates
02-15 13:53:12.676 30486-30512/org.videolan.java_sample E/VLC: [0000007f92f74010/7730] android_window window: request 1 not implemented
02-15 13:53:12.676 30486-30512/org.videolan.java_sample D/VLC: [0000007f9307f390/7730] core vout display: VoutDisplayEvent 'resize' 2048x1536
02-15 13:53:12.676 30486-30512/org.videolan.java_sample W/VLC: [0000007f9307f390/7730] android_display vout display: Could not initialize NativeWindow Priv API.
02-15 13:53:12.677 30486-30512/org.videolan.java_sample D/VLC: [0000007f9307f390/7730] android_display vout display: using opaque
02-15 13:53:12.677 30486-30512/org.videolan.java_sample E/VLC: [0000007f9307f390/7730] android_display vout display: can't get Subtitles Surface
02-15 13:53:12.677 30486-30512/org.videolan.java_sample W/VLC: [0000007f9307f390/7730] android_display vout display: cannot blend subtitles with an opaque surface, trying next vout
02-15 13:53:12.677 30486-30512/org.videolan.java_sample E/VLC: [0000007f92f74010/7730] android_window window: request 1 not implemented
02-15 13:53:12.677 30486-30512/org.videolan.java_sample D/VLC: [0000007f9307f390/7730] core vout display: VoutDisplayEvent 'resize' 2048x1536
02-15 13:53:12.677 30486-30512/org.videolan.java_sample D/VLC: [0000007fa6fb6e10/7730] core gl: looking for opengl es2 module matching "any": 1 candidates
02-15 13:53:12.677 30486-30512/org.videolan.java_sample D/VLC: [0000007fa6fb6e10/7730] egl_android gl: EGL version 1.4 Android META-EGL by Android
02-15 13:53:12.678 30486-30512/org.videolan.java_sample D/VLC: [0000007fa6fb6e10/7730] egl_android gl: extensions: EGL_KHR_get_all_proc_addresses EGL_ANDROID_presentation_time EGL_KHR_swap_buffers_with_damage EGL_ANDROID_create_native_client_buffer EGL_ANDROID_front_buffer_auto_refresh EGL_KHR_image EGL_KHR_image_base EGL_KHR_lock_surface EGL_KHR_gl_texture_2D_image EGL_KHR_gl_texture_3D_image EGL_KHR_gl_texture_cubemap_image EGL_KHR_gl_renderbuffer_image EGL_KHR_reusable_sync EGL_KHR_fence_sync EGL_KHR_create_context EGL_KHR_surfaceless_context EGL_EXT_create_context_robustness EGL_ANDROID_image_native_buffer EGL_KHR_wait_sync EGL_ANDROID_recordable EGL_KHR_partial_update EGL_KHR_create_context_no_error EGL_KHR_mutable_render_buffer EGL_EXT_yuv_surface EGL_EXT_protected_content
02-15 13:53:12.680 30486-30512/org.videolan.java_sample E/libEGL: eglCreateWindowSurface: native_window_api_connect (win=0x7f9303a010) failed (0xffffffea) (already connected to another API?)
02-15 13:53:12.680 30486-30512/org.videolan.java_sample E/libEGL: eglCreateWindowSurface:474 error 3003 (EGL_BAD_ALLOC)
02-15 13:53:12.680 30486-30512/org.videolan.java_sample E/VLC: [0000007fa6fb6e10/7730] egl_android gl: cannot create EGL window surface
02-15 13:53:12.680 30486-30512/org.videolan.java_sample D/VLC: [0000007fa6fb6e10/7730] core gl: no opengl es2 modules matched
02-15 13:53:12.680 30486-30512/org.videolan.java_sample D/VLC: [0000007f9307f390/7730] core vout display: no vout display modules matched
02-15 13:53:12.680 30486-30505/org.videolan.java_sample E/VLC: [0000007fa8c34090/7729] core video output: video output creation failed
02-15 13:53:12.681 30486-30505/org.videolan.java_sample D/VLC: [0000007f92f0ee90/7729] core spu text: removing module "freetype"
02-15 13:53:12.682 30486-30505/org.videolan.java_sample D/VLC: [0000007f92f0f590/7729] core scale: removing module "yuvp"
02-15 13:53:12.682 30486-30505/org.videolan.java_sample D/VLC: [0000007f92f0f210/7729] core scale: removing module "swscale"
02-15 13:53:12.683 30486-30505/org.videolan.java_sample E/VLC: [0000007f92f0eb10/7729] core decoder: failed to create video output
02-15 13:53:12.683 30486-30505/org.videolan.java_sample E/VLC: [0000007f92f0eb10/7729] mediacodec decoder: Opaque Vout request failed
02-15 13:53:12.683 30486-30505/org.videolan.java_sample D/VLC: [0000007f92f0eb10/7729] mediacodec decoder: MediaCodec via NDK closed
02-15 13:53:12.683 30486-30505/org.videolan.java_sample D/VLC: [0000007f92f0eb10/7729] avcodec decoder: using ffmpeg Lavc57.100.104
02-15 13:53:12.683 30486-30505/org.videolan.java_sample D/VLC: [0000007f92f0eb10/7729] avcodec decoder: CPU flags: 0x00000068
02-15 13:53:12.684 30486-30505/org.videolan.java_sample D/VLC: [0000007f92f0eb10/7729] avcodec decoder: allowing 6 thread(s) for decoding
02-15 13:53:12.687 30486-30505/org.videolan.java_sample D/VLC: [0000007f92f0eb10/7729] avcodec decoder: codec (h264) started
02-15 13:53:12.688 30486-30505/org.videolan.java_sample D/VLC: [0000007f92f0eb10/7729] avcodec decoder: using frame thread mode with 6 threads
02-15 13:53:12.688 30486-30505/org.videolan.java_sample D/VLC: [0000007f92f0eb10/7729] core decoder: using video decoder module "avcodec"
02-15 13:53:12.688 30486-30505/org.videolan.java_sample D/VLC: [0000007fa8c8e9f0/7729] core demux meta: looking for meta reader module matching "any": 2 candidates
02-15 13:53:12.688 30486-30505/org.videolan.java_sample D/VLC: [0000007fa8c8e9f0/7729] lua demux meta: Trying Lua scripts in /data/user/0/org.videolan.java_sample/app_vlc/.share/lua/meta/reader
02-15 13:53:12.688 30486-30505/org.videolan.java_sample D/VLC: [0000007fa8c8e9f0/7729] lua demux meta: Trying Lua scripts in /system/usr/share/lua/meta/reader
02-15 13:53:12.688 30486-30505/org.videolan.java_sample D/VLC: [0000007fa8c8e9f0/7729] core demux meta: no meta reader modules matched
02-15 13:53:12.688 30486-30505/org.videolan.java_sample D/VLC: [0000007fa6fb0290/7729] core input: `http://download.blender.org/peach/bigbuckbunny_movies/BigBuckBunny_640x360.m4v' successfully opened
02-15 13:53:12.689 30486-30505/org.videolan.java_sample D/VLC: [0000007fa8c49bd0/7729] mp4 demux: elst (0) gives 0ms (movie)-> 0ms (track)
02-15 13:53:12.689 30486-30505/org.videolan.java_sample D/VLC: [0000007fa8c49bd0/7729] mp4 demux: elst (0) gives 0ms (movie)-> 0ms (track)
02-15 13:53:12.689 30486-30505/org.videolan.java_sample D/VLC: [0000007fa8c49bd0/7729] mp4 demux: track[Id 0x2] using Sync Sample Box (stss)
02-15 13:53:12.689 30486-30505/org.videolan.java_sample D/VLC: [0000007fa8c49bd0/7729] mp4 demux: stss gives 0 --> 0 (sample number)
02-15 13:53:12.689 30486-30505/org.videolan.java_sample D/VLC: [0000007fa6fb0290/7729] core input: Buffering 0%
02-15 13:53:12.689 30486-30511/org.videolan.java_sample D/VLC: [0000007fb3899510/772f] core generic: reusing audio output
02-15 13:53:12.690 30486-30486/org.videolan.java_sample W/JavaActivity: onLayoutChange()
02-15 13:53:12.690 30486-30511/org.videolan.java_sample D/VLC: [0000007fa6fea990/772f] core audio output: VLC is looking for: 'f32l' 44100 Hz Stereo frame=1 samples/8 bytes
02-15 13:53:12.699 30486-30511/org.videolan.java_sample D/AudioTrack: Client defaulted notificationFrames to 3848 for frameCount 7696
02-15 13:53:12.700 30486-30511/org.videolan.java_sample D/VLC: [0000007fa6fea990/772f] android_audiotrack audio output: using WRITE_BYTEARRAYV23
02-15 13:53:12.701 30486-30511/org.videolan.java_sample I/AudioTrack: updateAudioTranstionLength FadeIn[0] FadeOut[0] FadeInRing[0]
02-15 13:53:12.702 30486-30511/org.videolan.java_sample D/VLC: [0000007fa6fea990/772f] core audio output: VLC will output: 's16l' 48000 Hz Stereo frame=1 samples/4 bytes
02-15 13:53:12.702 30486-30511/org.videolan.java_sample D/VLC: [0000007fa6fea990/772f] core audio output: output 's16l' 48000 Hz Stereo frame=1 samples/4 bytes
02-15 13:53:12.702 30486-30511/org.videolan.java_sample D/VLC: [0000007f92ed8990/772f] core volume: looking for audio volume module matching "any": 2 candidates
02-15 13:53:12.702 30486-30511/org.videolan.java_sample D/VLC: [0000007f92ed8990/772f] core volume: using audio volume module "integer_mixer"
02-15 13:53:12.702 30486-30511/org.videolan.java_sample D/VLC: [0000007fa6fea990/772f] core audio output: input 'f32l' 44100 Hz Stereo frame=1 samples/8 bytes
02-15 13:53:12.702 30486-30511/org.videolan.java_sample D/VLC: [0000007f92f10010/772f] core audio filter: looking for audio filter module matching "scaletempo": 15 candidates
02-15 13:53:12.702 30486-30511/org.videolan.java_sample D/VLC: [0000007f92f10010/772f] scaletempo audio filter: format: 44100 rate, 2 nch, 4 bps, fl32
02-15 13:53:12.702 30486-30511/org.videolan.java_sample D/VLC: [0000007f92f10010/772f] scaletempo audio filter: params: 30 stride, 0.200 overlap, 14 search
02-15 13:53:12.702 30486-30511/org.videolan.java_sample D/VLC: [0000007f92f10010/772f] scaletempo audio filter: 1.000 scale, 1323.000 stride_in, 1323 stride_out, 1059 standing, 264 overlap, 617 search, 2204 queue, fl32 mode
02-15 13:53:12.703 30486-30511/org.videolan.java_sample D/VLC: [0000007f92f10390/772f] core generic: looking for audio resampler module matching "any": 2 candidates
02-15 13:53:12.703 30486-30511/org.videolan.java_sample D/VLC: [0000007f92f10390/772f] core generic: using audio resampler module "ugly"
02-15 13:53:12.703 30486-30511/org.videolan.java_sample D/VLC: [0000007f92f10010/772f] core audio filter: using audio filter module "scaletempo"
02-15 13:53:12.703 30486-30511/org.videolan.java_sample D/VLC: [0000007fa6fea990/772f] core audio output: conversion: 'f32l'->'f32l' 44100 Hz->44100 Hz Stereo->Stereo
02-15 13:53:12.703 30486-30511/org.videolan.java_sample D/VLC: [0000007fa6fea990/772f] core audio output: conversion pipeline complete
02-15 13:53:12.703 30486-30511/org.videolan.java_sample D/VLC: [0000007fa6fea990/772f] core audio output: conversion: 'f32l'->'s16l' 44100 Hz->44100 Hz Stereo->Stereo
02-15 13:53:12.703 30486-30511/org.videolan.java_sample D/VLC: [0000007f92f10710/772f] core audio converter: looking for audio converter module matching "any": 7 candidates
02-15 13:53:12.703 30486-30511/org.videolan.java_sample D/VLC: [0000007f92f10710/772f] audio_format audio converter: f32l->s16l, bits per sample: 32->16
02-15 13:53:12.703 30486-30511/org.videolan.java_sample D/VLC: [0000007f92f10710/772f] core audio converter: using audio converter module "audio_format"
02-15 13:53:12.703 30486-30511/org.videolan.java_sample D/VLC: [0000007fa6fea990/772f] core audio output: conversion pipeline complete
02-15 13:53:12.703 30486-30511/org.videolan.java_sample D/VLC: [0000007f92f10a90/772f] core audio resampler: looking for audio resampler module matching "any": 2 candidates
02-15 13:53:12.703 30486-30511/org.videolan.java_sample D/VLC: [0000007f92f10a90/772f] core audio resampler: using audio resampler module "ugly"
02-15 13:53:12.820 30486-30509/org.videolan.java_sample D/VLC: [0000007fa8ca5990/772d] connmgr stream: incoming response:
HTTP/1.1 206 Partial Content
Content-Type: application/octet-stream
Accept-Ranges: bytes
ETag: "2816293834"
Last-Modified: Sat, 07 Jun 2008 14:50:00 GMT
Content-Range: bytes 121283917-121283918/121283919
Content-Length: 2
Date: Thu, 15 Feb 2018 21:53:10 GMT
Server: lighttpd/1.4.48
02-15 13:53:12.822 30486-30509/org.videolan.java_sample D/VLC: [0000007fa8ca5990/772d] connmgr stream: resolving download.blender.org ...
02-15 13:53:12.825 30486-30509/org.videolan.java_sample D/VLC: [0000007fa8ca5990/772d] connmgr stream: outgoing request:
GET /peach/bigbuckbunny_movies/BigBuckBunny_640x360.m4v HTTP/1.1
Host: download.blender.org
Accept: */*
Accept-Language: en_US
User-Agent: VLC/3.0.0-git LibVLC/3.0.0-git
If-Match: "2816293834"
Range: bytes=268112-
02-15 13:53:13.163 30486-30509/org.videolan.java_sample D/VLC: [0000007fa8ca5990/772d] connmgr stream: incoming response:
HTTP/1.1 206 Partial Content
Content-Type: application/octet-stream
Accept-Ranges: bytes
ETag: "2816293834"
Last-Modified: Sat, 07 Jun 2008 14:50:00 GMT
Content-Range: bytes 268112-121283918/121283919
Content-Length: 121015807
Date: Thu, 15 Feb 2018 21:53:10 GMT
Server: lighttpd/1.4.48
02-15 13:53:13.167 30486-30513/org.videolan.java_sample D/VLC: [0000007f92f0eb10/7731] avcodec decoder: available software decoder output format 0 (yuv420p)
02-15 13:53:13.169 30486-30513/org.videolan.java_sample D/VLC: [0000007f92f11890/7731] core spu text: looking for text renderer module matching "any": 1 candidates
02-15 13:53:13.169 30486-30513/org.videolan.java_sample D/VLC: [0000007f8d7de390/7731] core stream: creating access: file:///system/etc/fonts.xml
02-15 13:53:13.169 30486-30513/org.videolan.java_sample D/VLC: [0000007f8d7de390/7731] core stream: (path: /system/etc/fonts.xml)
02-15 13:53:13.169 30486-30513/org.videolan.java_sample D/VLC: [0000007f8d7de390/7731] core stream: looking for access module matching "file": 22 candidates
02-15 13:53:13.169 30486-30513/org.videolan.java_sample D/VLC: [0000007f8d7de390/7731] core stream: using access module "filesystem"
02-15 13:53:13.169 30486-30513/org.videolan.java_sample D/VLC: [0000007f8d7de510/7731] core stream: looking for stream_filter module matching "prefetch,cache_read": 26 candidates
02-15 13:53:13.170 30486-30513/org.videolan.java_sample D/VLC: [0000007f8d7de510/7731] cache_read stream: Using stream method for AStream*
02-15 13:53:13.170 30486-30513/org.videolan.java_sample D/VLC: [0000007f8d7de510/7731] cache_read stream: starting pre-buffering
02-15 13:53:13.170 30486-30513/org.videolan.java_sample D/VLC: [0000007f8d7de510/7731] cache_read stream: received first data after 0 ms
02-15 13:53:13.170 30486-30513/org.videolan.java_sample D/VLC: [0000007f8d7de510/7731] cache_read stream: pre-buffering done 1024 bytes in 0s - 5494 KiB/s
02-15 13:53:13.170 30486-30513/org.videolan.java_sample D/VLC: [0000007f8d7de510/7731] core stream: using stream_filter module "cache_read"
02-15 13:53:13.170 30486-30513/org.videolan.java_sample D/VLC: [0000007f8d7de690/7731] core stream: looking for stream_filter module matching "any": 26 candidates
02-15 13:53:13.171 30486-30513/org.videolan.java_sample D/VLC: [0000007f8d7de690/7731] lua stream: Trying Lua scripts in /data/user/0/org.videolan.java_sample/app_vlc/.share/lua/playlist
02-15 13:53:13.171 30486-30513/org.videolan.java_sample D/VLC: [0000007f8d7de690/7731] lua stream: Trying Lua scripts in /system/usr/share/lua/playlist
02-15 13:53:13.171 30486-30513/org.videolan.java_sample D/VLC: [0000007f8d7de690/7731] core stream: no stream_filter modules matched
02-15 13:53:13.171 30486-30513/org.videolan.java_sample D/VLC: [0000007f92f76b90/7731] core xml reader: looking for xml reader module matching "any": 1 candidates
02-15 13:53:13.171 30486-30513/org.videolan.java_sample D/VLC: [0000007f92f76b90/7731] core xml reader: using xml reader module "xml"
02-15 13:53:13.185 30486-30513/org.videolan.java_sample D/VLC: [0000007f8d7de510/7731] core stream: removing module "cache_read"
02-15 13:53:13.185 30486-30513/org.videolan.java_sample D/VLC: [0000007f8d7de390/7731] core stream: removing module "filesystem"
02-15 13:53:13.186 30486-30513/org.videolan.java_sample D/VLC: [0000007f92f11890/7731] core spu text: using text renderer module "freetype"
02-15 13:53:13.186 30486-30513/org.videolan.java_sample D/VLC: [0000007f92f11c10/7731] core scale: looking for video converter module matching "any": 14 candidates
02-15 13:53:13.187 30486-30513/org.videolan.java_sample D/VLC: [0000007f92f11c10/7731] swscale scale: 32x32 (32x32) chroma: YUVA -> 16x16 (16x16) chroma: RGBA with scaling using Bicubic (good quality)
02-15 13:53:13.187 30486-30513/org.videolan.java_sample D/VLC: [0000007f92f11c10/7731] core scale: using video converter module "swscale"
02-15 13:53:13.187 30486-30513/org.videolan.java_sample D/VLC: [0000007f92f11f90/7731] core scale: looking for video converter module matching "any": 14 candidates
02-15 13:53:13.188 30486-30513/org.videolan.java_sample D/VLC: [0000007f92f11f90/7731] yuvp scale: YUVP to YUVA converter
02-15 13:53:13.188 30486-30513/org.videolan.java_sample D/VLC: [0000007f92f11f90/7731] core scale: using video converter module "yuvp"
02-15 13:53:13.188 30486-30513/org.videolan.java_sample D/VLC: [0000007fa8c36890/7731] core video output: Deinterlacing available
02-15 13:53:13.188 30486-30513/org.videolan.java_sample D/VLC: [0000007fa8c36890/7731] core video output: deinterlace -1, mode auto, is_needed 0
02-15 13:53:13.188 30486-30513/org.videolan.java_sample D/VLC: [0000007fa8c4bd90/7731] core window: looking for vout window module matching "any": 1 candidates
02-15 13:53:13.189 30486-30513/org.videolan.java_sample D/VLC: [0000007fa8c4bd90/7731] mediacodec window: InitJNIFields success
02-15 13:53:13.189 30486-30513/org.videolan.java_sample D/VLC: [0000007fa8c4bd90/7731] core window: resized to 2048x1536
02-15 13:53:13.191 30486-30513/org.videolan.java_sample D/VLC: [0000007fa8c4bd90/7731] core window: using vout window module "android_window"
02-15 13:53:13.192 30486-30523/org.videolan.java_sample D/VLC: [0000007fa8c36890/773b] core video output: Opening vout display wrapper
02-15 13:53:13.192 30486-30523/org.videolan.java_sample D/VLC: [0000007f9307f390/773b] core vout display: looking for vout display module matching "any": 5 candidates
02-15 13:53:13.192 30486-30523/org.videolan.java_sample E/VLC: [0000007fa8c4bd90/773b] android_window window: request 1 not implemented
02-15 13:53:13.192 30486-30523/org.videolan.java_sample D/VLC: [0000007f9307f390/773b] core vout display: VoutDisplayEvent 'resize' 2048x1536
02-15 13:53:13.192 30486-30523/org.videolan.java_sample D/VLC: [0000007f930d9810/773b] core gl: looking for opengl es2 module matching "any": 1 candidates
02-15 13:53:13.193 30486-30523/org.videolan.java_sample D/VLC: [0000007f930d9810/773b] egl_android gl: EGL version 1.4 Android META-EGL by Android
02-15 13:53:13.193 30486-30523/org.videolan.java_sample D/VLC: [0000007f930d9810/773b] egl_android gl: extensions: EGL_KHR_get_all_proc_addresses EGL_ANDROID_presentation_time EGL_KHR_swap_buffers_with_damage EGL_ANDROID_create_native_client_buffer EGL_ANDROID_front_buffer_auto_refresh EGL_KHR_image EGL_KHR_image_base EGL_KHR_lock_surface EGL_KHR_gl_texture_2D_image EGL_KHR_gl_texture_3D_image EGL_KHR_gl_texture_cubemap_image EGL_KHR_gl_renderbuffer_image EGL_KHR_reusable_sync EGL_KHR_fence_sync EGL_KHR_create_context EGL_KHR_surfaceless_context EGL_EXT_create_context_robustness EGL_ANDROID_image_native_buffer EGL_KHR_wait_sync EGL_ANDROID_recordable EGL_KHR_partial_update EGL_KHR_create_context_no_error EGL_KHR_mutable_render_buffer EGL_EXT_yuv_surface EGL_EXT_protected_content
02-15 13:53:13.195 30486-30523/org.videolan.java_sample E/libEGL: eglCreateWindowSurface: native_window_api_connect (win=0x7f9303a010) failed (0xffffffea) (already connected to another API?)
02-15 13:53:13.196 30486-30523/org.videolan.java_sample E/libEGL: eglCreateWindowSurface:474 error 3003 (EGL_BAD_ALLOC)
02-15 13:53:13.196 30486-30523/org.videolan.java_sample E/VLC: [0000007f930d9810/773b] egl_android gl: cannot create EGL window surface
02-15 13:53:13.196 30486-30523/org.videolan.java_sample D/VLC: [0000007f930d9810/773b] core gl: no opengl es2 modules matched
02-15 13:53:13.196 30486-30523/org.videolan.java_sample E/VLC: [0000007fa8c4bd90/773b] android_window window: request 1 not implemented
02-15 13:53:13.196 30486-30523/org.videolan.java_sample D/VLC: [0000007f9307f390/773b] core vout display: VoutDisplayEvent 'resize' 2048x1536
02-15 13:53:13.196 30486-30523/org.videolan.java_sample W/VLC: [0000007f9307f390/773b] android_display vout display: Could not initialize NativeWindow Priv API.
02-15 13:53:13.196 30486-30523/org.videolan.java_sample D/VLC: [0000007f9307f390/773b] android_display vout display: using ANW
02-15 13:53:13.196 30486-30523/org.videolan.java_sample E/VLC: [0000007f9307f390/773b] android_display vout display: can't get Subtitles Surface
02-15 13:53:13.196 30486-30523/org.videolan.java_sample D/VLC: [0000007f9307f390/773b] core vout display: using vout display module "android_display"
02-15 13:53:13.196 30486-30523/org.videolan.java_sample D/VLC: [0000007f9307f390/773b] core vout display: A filter to adapt decoder I420 to display RV16 is needed
02-15 13:53:13.197 30486-30523/org.videolan.java_sample D/VLC: [0000007f93054390/773b] core filter: looking for video converter module matching "any": 14 candidates
02-15 13:53:13.198 30486-30523/org.videolan.java_sample D/VLC: [0000007f93054390/773b] swscale filter: 640x359 (640x386) chroma: I420 -> 640x359 (640x386) chroma: RV16 with scaling using Bicubic (good quality)
02-15 13:53:13.198 30486-30523/org.videolan.java_sample D/VLC: [0000007f93054390/773b] core filter: using video converter module "swscale"
02-15 13:53:13.198 30486-30523/org.videolan.java_sample D/VLC: [0000007f9307f390/773b] core vout display: Filter 'Swscale' (0x7f93054390) appended to chain
02-15 13:53:13.198 30486-30523/org.videolan.java_sample D/VLC: [0000007f9307f390/773b] android_display vout display: PoolAlloc: request 3 frames
02-15 13:53:13.198 30486-30523/org.videolan.java_sample D/VLC: [0000007f9307f390/773b] android_display vout display: PoolAlloc: got 1 frames
02-15 13:53:13.199 30486-30523/org.videolan.java_sample D/VLC: [0000007fa8c36890/773b] core video output: original format sz 640x386, of (0,0), vsz 640x359, 4cc I420, sar 1:1, msk r0x0 g0x0 b0x0
02-15 13:53:13.199 30486-30523/org.videolan.java_sample E/VLC: [0000007fa8c4bd90/773b] android_window window: request 0 not implemented
02-15 13:53:13.199 30486-30523/org.videolan.java_sample E/VLC: [0000007fa8c4bd90/773b] android_window window: request 0 not implemented
02-15 13:53:13.199 30486-30523/org.videolan.java_sample D/VLC: [0000007f9307f390/773b] android_display vout display: change display size: 2048x1536
02-15 13:53:13.199 30486-30523/org.videolan.java_sample D/VLC: [0000007f9307f390/773b] android_display vout display: change source crop/aspect
02-15 13:53:13.199 30486-30523/org.videolan.java_sample E/VLC: [0000007fa8c4bd90/773b] android_window window: request 1 not implemented
02-15 13:53:13.199 30486-30513/org.videolan.java_sample D/VLC: [0000007f92f11890/7731] core spu text: removing module "freetype"
02-15 13:53:13.200 30486-30513/org.videolan.java_sample D/VLC: [0000007f92f11890/7731] core spu text: looking for text renderer module matching "any": 1 candidates
02-15 13:53:13.200 30486-30513/org.videolan.java_sample D/VLC: [0000007f8d7de390/7731] core stream: creating access: file:///system/etc/fonts.xml
02-15 13:53:13.200 30486-30513/org.videolan.java_sample D/VLC: [0000007f8d7de390/7731] core stream: (path: /system/etc/fonts.xml)
02-15 13:53:13.200 30486-30513/org.videolan.java_sample D/VLC: [0000007f8d7de390/7731] core stream: looking for access module matching "file": 22 candidates
02-15 13:53:13.201 30486-30513/org.videolan.java_sample D/VLC: [0000007f8d7de390/7731] core stream: using access module "filesystem"
02-15 13:53:13.201 30486-30513/org.videolan.java_sample D/VLC: [0000007f8d7de690/7731] core stream: looking for stream_filter module matching "prefetch,cache_read": 26 candidates
02-15 13:53:13.201 30486-30513/org.videolan.java_sample D/VLC: [0000007f8d7de690/7731] cache_read stream: Using stream method for AStream*
02-15 13:53:13.201 30486-30513/org.videolan.java_sample D/VLC: [0000007f8d7de690/7731] cache_read stream: starting pre-buffering
02-15 13:53:13.201 30486-30513/org.videolan.java_sample D/VLC: [0000007f8d7de690/7731] cache_read stream: received first data after 0 ms
02-15 13:53:13.201 30486-30513/org.videolan.java_sample D/VLC: [0000007f8d7de690/7731] cache_read stream: pre-buffering done 1024 bytes in 0s - 10309 KiB/s
02-15 13:53:13.201 30486-30513/org.videolan.java_sample D/VLC: [0000007f8d7de690/7731] core stream: using stream_filter module "cache_read"
02-15 13:53:13.201 30486-30513/org.videolan.java_sample D/VLC: [0000007f8d7de810/7731] core stream: looking for stream_filter module matching "any": 26 candidates
02-15 13:53:13.201 30486-30513/org.videolan.java_sample D/VLC: [0000007f8d7de810/7731] lua stream: Trying Lua scripts in /data/user/0/org.videolan.java_sample/app_vlc/.share/lua/playlist
02-15 13:53:13.201 30486-30513/org.videolan.java_sample D/VLC: [0000007f8d7de810/7731] lua stream: Trying Lua scripts in /system/usr/share/lua/playlist
02-15 13:53:13.201 30486-30513/org.videolan.java_sample D/VLC: [0000007f8d7de810/7731] core stream: no stream_filter modules matched
02-15 13:53:13.201 30486-30513/org.videolan.java_sample D/VLC: [0000007f8d7fa390/7731] core xml reader: looking for xml reader module matching "any": 1 candidates
02-15 13:53:13.201 30486-30513/org.videolan.java_sample D/VLC: [0000007f8d7fa390/7731] core xml reader: using xml reader module "xml"
02-15 13:53:13.212 30486-30513/org.videolan.java_sample D/VLC: [0000007f8d7de690/7731] core stream: removing module "cache_read"
02-15 13:53:13.212 30486-30513/org.videolan.java_sample D/VLC: [0000007f8d7de390/7731] core stream: removing module "filesystem"
02-15 13:53:13.213 30486-30513/org.videolan.java_sample D/VLC: [0000007f92f11890/7731] core spu text: using text renderer module "freetype"
02-15 13:53:13.227 30486-30519/org.videolan.java_sample D/VLC: [0000007f92f0eb10/7737] core decoder: Received first picture
02-15 13:53:13.234 30486-30523/org.videolan.java_sample W/VLC: [0000007f93054390/773b] swscale filter: can't get output picture
02-15 13:53:13.237 30486-30486/org.videolan.java_sample D/SurfaceView: Relayout returned: oldFrame=[0,0][2048,1536] newFrame=[0,194][2048,1430] result=0x21 surface={Surface(name=null)/@0xf52ae51 isValid=true 547927338496}
02-15 13:53:13.251 30486-30486/org.videolan.java_sample W/JavaActivity: onLayoutChange()
02-15 13:53:13.260 30486-30486/org.videolan.java_sample W/JavaActivity: onLayoutChange()
02-15 13:53:13.318 30486-30505/org.videolan.java_sample D/VLC: [0000007fa6fb0290/7729] core input: Buffering 16%
02-15 13:53:13.629 30486-30505/org.videolan.java_sample D/VLC: [0000007fa6fb0290/7729] core input: Buffering 33%
02-15 13:53:13.629 30486-30505/org.videolan.java_sample D/VLC: [0000007fa6fb0290/7729] core input: Buffering 50%
02-15 13:53:13.786 30486-30505/org.videolan.java_sample D/VLC: [0000007fa6fb0290/7729] core input: Buffering 66%
02-15 13:53:13.786 30486-30505/org.videolan.java_sample D/VLC: [0000007fa6fb0290/7729] core input: Buffering 83%
02-15 13:53:13.818 30486-30505/org.videolan.java_sample D/VLC: [0000007fa6fb0290/7729] core input: Buffering 100%
02-15 13:53:13.819 30486-30505/org.videolan.java_sample D/VLC: [0000007fa6fb0290/7729] core input: Stream buffering done (1750 ms in 1129 ms)
02-15 13:53:13.819 30486-30505/org.videolan.java_sample D/VLC: [0000007fa6fb0290/7729] core input: Decoder wait done in 0 ms
02-15 13:53:13.819 30486-30521/org.videolan.java_sample W/AudioTrack: releaseBuffer() track 0x7f92f0fc00 disabled due to previous underrun, restarting
02-15 13:53:13.821 30486-30523/org.videolan.java_sample W/VLC: [0000007f93054390/773b] swscale filter: can't get output picture
02-15 13:53:13.972 30486-30523/org.videolan.java_sample W/VLC: [0000007f93054390/773b] swscale filter: can't get output picture
02-15 13:53:13.972 30486-30523/org.videolan.java_sample D/VLC: [0000007fa8c36890/773b] core video output: picture might be displayed late (missing 18 ms)
02-15 13:53:13.973 30486-30523/org.videolan.java_sample W/VLC: [0000007f93054390/773b] swscale filter: can't get output picture
02-15 13:53:13.974 30486-30523/org.videolan.java_sample W/VLC: [0000007f93054390/773b] swscale filter: can't get output picture
02-15 13:53:14.075 30486-30523/org.videolan.java_sample W/VLC: [0000007f93054390/773b] swscale filter: can't get output picture
02-15 13:53:14.076 30486-30523/org.videolan.java_sample W/VLC: [0000007f93054390/773b] swscale filter: can't get output picture
02-15 13:53:14.177 30486-30523/org.videolan.java_sample W/VLC: [0000007f93054390/773b] swscale filter: can't get output picture
02-15 13:53:14.177 30486-30523/org.videolan.java_sample D/VLC: [0000007fa8c36890/773b] core video output: picture might be displayed late (missing 15 ms)
02-15 13:53:14.178 30486-30523/org.videolan.java_sample W/VLC: [0000007f93054390/773b] swscale filter: can't get output picture
02-15 13:53:14.282 30486-30523/org.videolan.java_sample W/VLC: [0000007f93054390/773b] swscale filter: can't get output picture
02-15 13:53:14.282 30486-30523/org.videolan.java_sample D/VLC: [0000007f9307f390/773b] core vout display: auto hiding mouse cursor
02-15 13:53:14.282 30486-30523/org.videolan.java_sample E/VLC: [0000007fa8c4bd90/773b] android_window window: request 3 not implemented
02-15 13:53:14.282 30486-30523/org.videolan.java_sample W/VLC: [0000007fa8c36890/773b] core video output: picture is too late to be displayed (missing 36 ms)
02-15 13:53:14.282 30486-30523/org.videolan.java_sample W/VLC: [0000007f93054390/773b] swscale filter: can't get output picture
02-15 13:53:14.386 30486-30523/org.videolan.java_sample W/VLC: [0000007f93054390/773b] swscale filter: can't get output picture
02-15 13:53:14.386 30486-30523/org.videolan.java_sample D/VLC: [0000007fa8c36890/773b] core video output: picture might be displayed late (missing 15 ms)
02-15 13:53:14.386 30486-30523/org.videolan.java_sample W/VLC: [0000007f93054390/773b] swscale filter: can't get output picture
02-15 13:53:14.488 30486-30523/org.videolan.java_sample W/VLC: [0000007f93054390/773b] swscale filter: can't get output picture
02-15 13:53:14.488 30486-30523/org.videolan.java_sample W/VLC: [0000007fa8c36890/773b] core video output: picture is too late to be displayed (missing 34 ms)
02-15 13:53:14.489 30486-30523/org.videolan.java_sample W/VLC: [0000007f93054390/773b] swscale filter: can't get output picture
02-15 13:53:14.593 30486-30523/org.videolan.java_sample W/VLC: [0000007f93054390/773b] swscale filter: can't get output picture
02-15 13:53:14.594 30486-30523/org.videolan.java_sample D/VLC: [0000007fa8c36890/773b] core video output: picture might be displayed late (missing 15 ms)
02-15 13:53:14.595 30486-30523/org.videolan.java_sample W/VLC: [0000007f93054390/773b] swscale filter: can't get output picture
02-15 13:53:14.697 30486-30523/org.videolan.java_sample W/VLC: [0000007f93054390/773b] swscale filter: can't get output picture
02-15 13:53:14.698 30486-30523/org.videolan.java_sample W/VLC: [0000007fa8c36890/773b] core video output: picture is too late to be displayed (missing 35 ms)
02-15 13:53:14.698 30486-30523/org.videolan.java_sample W/VLC: [0000007f93054390/773b] swscale filter: can't get output picture
02-15 13:53:14.804 30486-30523/org.videolan.java_sample W/VLC: [0000007f93054390/773b] swscale filter: can't get output picture
02-15 13:53:14.804 30486-30523/org.videolan.java_sample D/VLC: [0000007fa8c36890/773b] core video output: picture might be displayed late (missing 16 ms)
02-15 13:53:14.804 30486-30523/org.videolan.java_sample W/VLC: [0000007f93054390/773b] swscale filter: can't get output picture
02-15 13:53:14.806 30486-30523/org.videolan.java_sample W/VLC: [0000007f93054390/773b] swscale filter: can't get output picture
02-15 13:53:14.908 30486-30523/org.videolan.java_sample W/VLC: [0000007f93054390/773b] swscale filter: can't get output picture
02-15 13:53:14.909 30486-30523/org.videolan.java_sample W/VLC: [0000007f93054390/773b] swscale filter: can't get output picture
02-15 13:53:15.013 30486-30523/org.videolan.java_sample W/VLC: [0000007f93054390/773b] swscale filter: can't get output picture
02-15 13:53:15.013 30486-30523/org.videolan.java_sample D/VLC: [0000007fa8c36890/773b] core video output: picture might be displayed late (missing 17 ms)
02-15 13:53:15.015 30486-30523/org.videolan.java_sample W/VLC: [0000007f93054390/773b] swscale filter: can't get output picture
02-15 13:53:15.020 30486-30523/org.videolan.java_sample W/VLC: [0000007f93054390/773b] swscale filter: can't get output picture
02-15 13:53:15.122 30486-30523/org.videolan.java_sample W/VLC: [0000007f93054390/773b] swscale filter: can't get output picture
02-15 13:53:15.122 30486-30523/org.videolan.java_sample D/VLC: [0000007fa8c36890/773b] core video output: picture might be displayed late (missing 1 ms)
02-15 13:53:15.123 30486-30523/org.videolan.java_sample W/VLC: [0000007f93054390/773b] swscale filter: can't get output picture
02-15 13:53:15.226 30486-30523/org.videolan.java_sample W/VLC: [0000007f93054390/773b] swscale filter: can't get output picture
02-15 13:53:15.227 30486-30523/org.videolan.java_sample W/VLC: [0000007fa8c36890/773b] core video output: picture is too late to be displayed (missing 22 ms)
02-15 13:53:15.233 30486-30523/org.videolan.java_sample W/VLC: [0000007f93054390/773b] swscale filter: can't get output picture
02-15 13:53:15.334 30486-30523/org.videolan.java_sample W/VLC: [0000007f93054390/773b] swscale filter: can't get output picture
02-15 13:53:15.334 30486-30523/org.videolan.java_sample D/VLC: [0000007fa8c36890/773b] core video output: picture might be displayed late (missing 5 ms)
02-15 13:53:15.337 30486-30523/org.videolan.java_sample W/VLC: [0000007f93054390/773b] swscale filter: can't get output picture
02-15 13:53:15.439 30486-30523/org.videolan.java_sample W/VLC: [0000007f93054390/773b] swscale filter: can't get output picture
02-15 13:53:15.439 30486-30523/org.videolan.java_sample W/VLC: [0000007fa8c36890/773b] core video output: picture is too late to be displayed (missing 26 ms)
02-15 13:53:15.440 30486-30523/org.videolan.java_sample W/VLC: [0000007f93054390/773b] swscale filter: can't get output picture
02-15 13:53:15.546 30486-30523/org.videolan.java_sample W/VLC: [0000007f93054390/773b] swscale filter: can't get output picture
02-15 13:53:15.546 30486-30523/org.videolan.java_sample D/VLC: [0000007fa8c36890/773b] core video output: picture might be displayed late (missing 9 ms)
02-15 13:53:15.547 30486-30523/org.videolan.java_sample W/VLC: [0000007f93054390/773b] swscale filter: can't get output picture
02-15 13:53:15.650 30486-30523/org.videolan.java_sample W/VLC: [0000007f93054390/773b] swscale filter: can't get output picture
02-15 13:53:15.650 30486-30523/org.videolan.java_sample W/VLC: [0000007fa8c36890/773b] core video output: picture is too late to be displayed (missing 29 ms)
02-15 13:53:15.651 30486-30523/org.videolan.java_sample W/VLC: [0000007f93054390/773b] swscale filter: can't get output picture
02-15 13:53:15.753 30486-30523/org.videolan.java_sample W/VLC: [0000007f93054390/773b] swscale filter: can't get output picture
02-15 13:53:15.758 30486-30523/org.videolan.java_sample D/VLC: [0000007fa8c36890/773b] core video output: picture might be displayed late (missing 12 ms)
02-15 13:53:15.758 30486-30523/org.videolan.java_sample W/VLC: [0000007f93054390/773b] swscale filter: can't get output picture
02-15 13:53:15.861 30486-30523/org.videolan.java_sample W/VLC: [0000007f93054390/773b] swscale filter: can't get output picture
02-15 13:53:15.863 30486-30523/org.videolan.java_sample W/VLC: [0000007fa8c36890/773b] core video output: picture is too late to be displayed (missing 34 ms)
02-15 13:53:15.866 30486-30523/org.videolan.java_sample W/VLC: [0000007f93054390/773b] swscale filter: can't get output picture
02-15 13:53:15.968 30486-30523/org.videolan.java_sample W/VLC: [0000007f93054390/773b] swscale filter: can't get output picture
I tested this on Samsung Galaxy S2(SM-D818W)