video output has some problems:failed to create video output

VLC for Android and Chrome OS specific usage questions
sjlgwsunjun
New Cone
New Cone
Posts: 4
Joined: 03 Feb 2015 04:16

video output has some problems:failed to create video output

Postby sjlgwsunjun » 03 Feb 2015 04:51

Hi,
I am a new developer for vlc,this is a great project!
I modified some dash code, to adapt to my app.
But when i use vlc playing the video,it has some problems。
I use

Code: Select all

VLCInstance.getLibVlcInstance()
to get a instance of vlc,and set some parameters:

Code: Select all

libvlc.setHardwareAcceleration(LibVLC.HW_ACCELERATION_FULL); libvlc.setSubtitlesEncoding(""); libvlc.setAout(LibVLC.AOUT_OPENSLES); libvlc.setTimeStretching(true); libvlc.setChroma("RV32"); libvlc.setVerboseMode(true); libvlc.restart(mContext); holder.setFormat(PixelFormat.RGBX_8888);
then i use

Code: Select all

libvlc.playMRL(LibVLC.PathToURI(media))
to playthe video,but the screen always black,and the log show some errors:
E/VLC(20109): core video output: video output creation failed
E/VLC(20109): core decoder: failed to create video output

The vlc version is revision 2.2.0-git-2106-g18e445a,And the complete log are as follows:

Code: Select all

02-03 09:48:41.177: D/VLC/JNI/main(20109): JNI interface loaded. 02-03 09:48:41.187: D/VLC/LibVLC(20109): HWDec enabled: device working with: mediacodec,iomx,all 02-03 09:48:41.187: V/VLC/LibVLC(20109): Initializing LibVLC 02-03 09:48:41.187: I/VLC/LibVLC/Util(20109): machine = arm, 32bits 02-03 09:48:41.187: I/VLC/LibVLC/Util(20109): arch = v7 02-03 09:48:41.187: I/VLC/LibVLC/Util(20109): fpu = true 02-03 09:48:41.207: D/VLC/JNI/main(20109): Using deblocking level 3 02-03 09:48:41.207: D/VLC/JNI/main(20109): Chroma set to "" 02-03 09:48:41.207: D/VLC/JNI/main(20109): Subtitle encoding set to "" 02-03 09:48:41.227: I/VLC/JNI/main(20109): LibVLC initialized: 0x60c90f90 02-03 09:48:41.227: D/VLC(20109): core libvlc: VLC media player - 3.0.0-git Vetinari 02-03 09:48:41.227: D/VLC(20109): core libvlc: Copyright © 1996-2014 the VideoLAN team 02-03 09:48:41.227: D/VLC(20109): core libvlc: revision 2.2.0-git-2106-g18e445a 02-03 09:48:41.227: D/VLC(20109): core libvlc: configured with ../configure '--host=arm-linux-androideabi' '--build=x86_64-unknown-linux' '--enable-neon' '--disable-nls' '--enable-live555' '--enable-realrtsp' '--enable-avformat' '--enable-swscale' '--enable-avcodec' '--enable-opus' '--enable-opensles' '--enable-android-surface' '--enable-mkv' '--enable-taglib' '--enable-dvbpsi' '--disable-vlc' '--disable-shared' '--disable-update-check' '--disable-vlm' '--disable-dbus' '--disable-lua' '--disable-vcd' '--disable-v4l2' '--disable-gnomevfs' '--enable-dvdread' '--enable-dvdnav' '--disable-bluray' '--disable-linsys' '--disable-decklink' '--disable-libva' '--disable-dv1394' '--disable-mod' '--disable-sid' '--disable-gme' '--disable-tremor' '--enable-mad' '--disable-dca' '--disable-sdl-image' '--enable-zvbi' '--disable-fluidsynth' '--disable-jack' '--disable-pulse' '--disable-alsa' '--disable-samplerate' '--disable-sdl' '--disable-xcb' '--disable-atmo' '--disable-qt' '--disable-skins2' '--disable-mtp' '--disable-notify' '--enable-libass' '--disabl 02-03 09:48:41.227: D/VLC/LibVLC(20109): HWDec enabled: device working with: mediacodec,iomx,all 02-03 09:48:41.237: D/VLC(20109): core generic: creating audio output 02-03 09:48:41.237: D/VLC(20109): core audio output: looking for audio output module matching "opensles": 4 candidates 02-03 09:48:41.257: D/VLC(20109): core audio output: using audio output module "opensles_android" 02-03 09:48:41.257: D/VLC(20109): core generic: keeping audio output 02-03 09:48:41.257: D/VLC(20109): core input: Creating an input for 'http://localhost:4009/service_1/www.huawei.com/mbms/292/mpd_292.mpd' 02-03 09:48:41.257: D/VLC(20109): core input: using timeshift granularity of 50 MiB, in path '/tmp' 02-03 09:48:41.257: D/VLC(20109): core input: `http://localhost:4009/service_1/www.huawei.com/mbms/292/mpd_292.mpd' gives access `http' demux `' path `localhost:4009/service_1/www.huawei.com/mbms/292/mpd_292.mpd' 02-03 09:48:41.257: D/VLC(20109): core input: specified demux `any' 02-03 09:48:41.257: D/VLC(20109): core input: creating demux: access='http' demux='any' location='localhost:4009/service_1/www.huawei.com/mbms/292/mpd_292.mpd' file='(null)' 02-03 09:48:41.257: D/VLC(20109): core demux: looking for access_demux module matching "http": 7 candidates 02-03 09:48:41.257: D/VLC(20109): core demux: no access_demux modules matched 02-03 09:48:41.257: D/VLC(20109): core input: creating access 'http' location='localhost:4009/service_1/www.huawei.com/mbms/292/mpd_292.mpd', path='(null)' 02-03 09:48:41.267: D/VLC(20109): core access: looking for access module matching "http": 16 candidates 02-03 09:48:41.267: D/VLC(20109): http access: querying proxy for http://localhost:4009/service_1/www.huawei.com/mbms/292/mpd_292.mpd 02-03 09:48:41.267: D/VLC(20109): http access: no proxy 02-03 09:48:41.267: D/VLC(20109): http access: http: server='localhost' port=4009 file='/service_1/www.huawei.com/mbms/292/mpd_292.mpd' 02-03 09:48:41.267: D/VLC(20109): core access: net: connecting to localhost port 4009 02-03 09:48:41.267: D/VLC(20109): core access: connection succeeded (socket = 62) 02-03 09:48:41.267: D/VLC(20109): http access: protocol 'HTTP' answer code 206 02-03 09:48:41.267: D/VLC(20109): http access: this frame size=1692 02-03 09:48:41.267: D/VLC(20109): http access: Content-Type: application/dash+xml 02-03 09:48:41.267: D/VLC(20109): http access: stream size=1692,pos=0,remaining=1692 02-03 09:48:41.267: D/VLC(20109): http access: Connection: Keep-Alive 02-03 09:48:41.277: D/VLC(20109): core access: using access module "http" 02-03 09:48:41.277: D/VLC(20109): core stream: Using stream method for AStream* 02-03 09:48:41.277: D/VLC(20109): core stream: starting pre-buffering 02-03 09:48:41.277: D/VLC(20109): core stream: received first data after 1 ms 02-03 09:48:41.277: D/VLC(20109): core stream: pre-buffering done 1024 bytes in 0s - 562 KiB/s 02-03 09:48:41.277: D/VLC(20109): core stream: looking for stream_filter module matching "any": 9 candidates 02-03 09:48:41.277: D/VLC(20109): core stream: no stream_filter modules matched 02-03 09:48:41.277: D/VLC(20109): core stream: looking for stream_filter module matching "record": 9 candidates 02-03 09:48:41.277: D/VLC(20109): core stream: using stream_filter module "record" 02-03 09:48:41.277: D/VLC(20109): core input: creating demux: access='http' demux='any' location='localhost:4009/service_1/www.huawei.com/mbms/292/mpd_292.mpd' file='(null)' 02-03 09:48:41.277: D/VLC(20109): core demux: looking for demux module matching "any": 58 candidates 02-03 09:48:41.277: D/VLC(20109): core xml: looking for xml module matching "any": 1 candidates 02-03 09:48:41.277: D/VLC(20109): core xml: using xml module "xml" 02-03 09:48:41.277: D/VLC(20109): core xml reader: looking for xml reader module matching "any": 1 candidates 02-03 09:48:41.277: D/VLC(20109): core xml reader: using xml reader module "xml" 02-03 09:48:41.287: D/VLC(20109): dash stream: MPD profile=urn:mpeg:dash:profile:isoff-live:2011 mediaPresentationDuration=0 minBufferTime=1 02-03 09:48:41.287: D/VLC(20109): dash stream: BaseUrl=http://localhost:4009/service_1/www.huawei.com/mbms/292/ 02-03 09:48:41.287: D/VLC(20109): dash stream: Period 02-03 09:48:41.287: D/VLC(20109): dash stream: AdaptationSet 02-03 09:48:41.287: D/VLC(20109): dash stream: Representation 02-03 09:48:41.287: D/VLC(20109): dash stream: InitSegmentTemplate url=http://localhost:4009/service_1/www.huawei.com/mbms/292/$RepresentationID$_init.m4i 02-03 09:48:41.287: D/VLC(20109): dash stream: SegmentTemplate url=http://localhost:4009/service_1/www.huawei.com/mbms/292/$RepresentationID$_Segment-$Number$.m4v 02-03 09:48:41.287: D/VLC(20109): dash demux: opening mpd file (localhost:4009/service_1/www.huawei.com/mbms/292/mpd_292.mpd) 02-03 09:48:41.287: D/VLC(20109): core stream: creating demux: access='' demux='mp4' location='' file='(null)' 02-03 09:48:41.287: D/VLC(20109): core xml: removing module "xml" 02-03 09:48:41.287: D/VLC(20109): core demux: using demux module "dash" 02-03 09:48:41.297: D/VLC(20109): core demux meta: looking for meta reader module matching "any": 1 candidates 02-03 09:48:41.297: D/VLC(20109): core demux meta: no meta reader modules matched 02-03 09:48:41.297: D/VLC(20109): core input: `http://localhost:4009/service_1/www.huawei.com/mbms/292/mpd_292.mpd' successfully opened 02-03 09:48:41.297: D/VLC(20109): dash stream: Retrieving http://localhost:4009/service_1/www.huawei.com/mbms/292/Stream_0_864000_init.m4i 02-03 09:48:41.297: D/VLC(20109): core stream: net: connecting to localhost port 4009 02-03 09:48:41.297: D/VLC(20109): core stream: connection succeeded (socket = 72) 02-03 09:48:41.297: D/VLC(20109): dash stream: send msg method = query(chunk) 02-03 09:48:41.297: D/VLC(20109): core stream: creating access 'http' location='localhost:4009/service_1/www.huawei.com/mbms/292/mpd_292.mpd', path='(null)' 02-03 09:48:41.297: D/VLC(20109): core access: looking for access module matching "http": 16 candidates 02-03 09:48:41.297: D/VLC(20109): http access: querying proxy for http://localhost:4009/service_1/www.huawei.com/mbms/292/mpd_292.mpd 02-03 09:48:41.297: D/VLC(20109): http access: no proxy 02-03 09:48:41.297: D/VLC(20109): http access: http: server='localhost' port=4009 file='/service_1/www.huawei.com/mbms/292/mpd_292.mpd' 02-03 09:48:41.297: D/VLC(20109): core access: net: connecting to localhost port 4009 02-03 09:48:41.307: D/VLC(20109): core demux: looking for demux module matching "mp4": 58 candidates 02-03 09:48:41.307: D/VLC(20109): mkv stream: read box: "mvhd" creation 735545d-13h:40m:12s modification 735545d-13h:40m:12s time scale 1000 duration 0d-00h:00m:00s rate 1.000000 volume 1.000000 next track id 2 02-03 09:48:41.307: D/VLC(20109): mkv stream: read box: "tkhd" creation 735545d-13h:40m:12s modification 735545d-13h:40m:12s duration 0d-00h:16m:40s track ID 1 layer 0 volume 0.000000 rotation 0.000000 scaleX 1.000000 scaleY 1.000000 translateX 0.000000 translateY 0.000000 width 480.000000 height 270.000000. Matrix: 65536 0 0 0 65536 0 0 0 1073741824 02-03 09:48:41.307: D/VLC(20109): mkv stream: read box: "mdhd" creation 735545d-13h:40m:12s modification 735545d-13h:40m:12s time scale 1000 duration 0d-00h:16m:40s language 02-03 09:48:41.307: D/VLC(20109): mkv stream: read box: "hdlr" handler type: "vide" name: "Video" 02-03 09:48:41.307: D/VLC(20109): mkv stream: read box: "vmhd" graphics-mode 0 opcolor (0, 0, 0) 02-03 09:48:41.307: D/VLC(20109): mkv stream: read box: "url" url: (null) 02-03 09:48:41.307: D/VLC(20109): mkv stream: read box: "dref" entry-count 1 02-03 09:48:41.307: D/VLC(20109): mkv stream: read box: "stts" entry-count 0 02-03 09:48:41.307: D/VLC(20109): mkv stream: read box: "ctts" entry-count 0 02-03 09:48:41.307: D/VLC(20109): mkv stream: read box: "stsc" entry-count 0 02-03 09:48:41.307: D/VLC(20109): mkv stream: read box: "stsz" sample-size 0 sample-count 0 02-03 09:48:41.307: D/VLC(20109): mkv stream: read box: "co64" entry-count 0 02-03 09:48:41.307: D/VLC(20109): mkv stream: read box: "avcC" version=1 profile=0x42 level=0x1f length size=4 sps=1 pps=1 02-03 09:48:41.307: D/VLC(20109): mkv stream: - sps[0] length=45 02-03 09:48:41.307: D/VLC(20109): mkv stream: - pps[0] length=4 02-03 09:48:41.307: W/VLC(20109): mkv stream: cannot read one box 02-03 09:48:41.307: D/VLC(20109): mkv stream: read box: "vide" in stsd 480x270 depth 24 () 02-03 09:48:41.307: D/VLC(20109): mkv stream: read box: "stsd" entry-count 1 02-03 09:48:41.307: D/VLC(20109): mkv stream: read box: "trex" trackID: 1 02-03 09:48:41.307: D/VLC(20109): mp4 demux: DASH Stream file 02-03 09:48:41.307: D/VLC(20109): mp4 demux: added fragment moov 02-03 09:48:41.307: D/VLC(20109): mkv stream: dumping root Box "root" 02-03 09:48:41.307: D/VLC(20109): mkv stream: | + ftyp size 20 offset 0 02-03 09:48:41.307: D/VLC(20109): mkv stream: | + moov size 684 offset 20 02-03 09:48:41.307: D/VLC(20109): mkv stream: | | + mvhd size 108 offset 28 02-03 09:48:41.307: D/VLC(20109): mkv stream: | | + trak size 528 offset 136 02-03 09:48:41.307: D/VLC(20109): mkv stream: | | | + tkhd size 104 offset 144 02-03 09:48:41.307: D/VLC(20109): mkv stream: | | | + mdia size 416 offset 248 02-03 09:48:41.307: D/VLC(20109): mkv stream: | | | | + mdhd size 44 offset 256 02-03 09:48:41.307: D/VLC(20109): mkv stream: | | | | + hdlr size 38 offset 300 02-03 09:48:41.307: D/VLC(20109): mkv stream: | | | | + minf size 326 offset 338 02-03 09:48:41.307: D/VLC(20109): mkv stream: | | | | | + vmhd size 20 offset 346 02-03 09:48:41.307: D/VLC(20109): core access: connection succeeded (socket = 74) 02-03 09:48:41.307: D/VLC(20109): mkv stream: | | | | | + dinf size 36 offset 366 02-03 09:48:41.307: D/VLC(20109): mkv stream: | | | | | | + dref size 28 offset 374 02-03 09:48:41.307: D/VLC(20109): mkv stream: | | | | | | | + url size 12 offset 390 02-03 09:48:41.307: D/VLC(20109): mkv stream: | | | | | + stbl size 262 offset 402 02-03 09:48:41.307: D/VLC(20109): mkv stream: | | | | | | + stts size 16 offset 410 02-03 09:48:41.307: D/VLC(20109): mkv stream: | | | | | | + ctts size 16 offset 426 02-03 09:48:41.307: D/VLC(20109): mkv stream: | | | | | | + stsc size 16 offset 442 02-03 09:48:41.307: D/VLC(20109): mkv stream: | | | | | | + stsz size 20 offset 458 02-03 09:48:41.307: D/VLC(20109): mkv stream: | | | | | | + stco size 16 offset 478 02-03 09:48:41.307: D/VLC(20109): mkv stream: | | | | | | + stsd size 170 offset 494 02-03 09:48:41.307: D/VLC(20109): mkv stream: | | | | | | | + avc1 size 154 offset 510 02-03 09:48:41.307: D/VLC(20109): mkv stream: | | | | | | | | + avcC size 68 offset 596 02-03 09:48:41.307: D/VLC(20109): mkv stream: | | + mvex size 40 offset 664 02-03 09:48:41.307: D/VLC(20109): mkv stream: | | | + trex size 32 offset 672 02-03 09:48:41.307: D/VLC(20109): mp4 demux: Set experimental DemuxLeaf mode 02-03 09:48:41.307: D/VLC(20109): mp4 demux: found 1 tracks 02-03 09:48:41.307: W/VLC(20109): mp4 demux: no chunk defined 02-03 09:48:41.307: D/VLC(20109): mp4 demux: track[Id 0x1] read 0 chunk 02-03 09:48:41.307: W/VLC(20109): mp4 demux: STTS table of 0 entries 02-03 09:48:41.307: W/VLC(20109): mp4 demux: CTTS table of 0 entries 02-03 09:48:41.307: D/VLC(20109): mp4 demux: track[Id 0x1] read 0 samples length:0s 02-03 09:48:41.307: D/VLC(20109): core input: selecting program id=0 02-03 09:48:41.307: D/VLC(20109): http access: protocol 'HTTP' answer code 206 02-03 09:48:41.307: D/VLC(20109): http access: this frame size=1692 02-03 09:48:41.307: D/VLC(20109): http access: Content-Type: application/dash+xml 02-03 09:48:41.307: D/VLC(20109): http access: stream size=1692,pos=0,remaining=1692 02-03 09:48:41.307: D/VLC(20109): http access: Connection: Keep-Alive 02-03 09:48:41.307: D/VLC(20109): core access: using access module "http" 02-03 09:48:41.307: D/VLC(20109): core stream: Using stream method for AStream* 02-03 09:48:41.307: D/VLC(20109): core stream: starting pre-buffering 02-03 09:48:41.307: D/VLC(20109): core decoder: looking for decoder module matching "mediacodec,iomx,all": 35 candidates 02-03 09:48:41.307: D/VLC(20109): core stream: received first data after 0 ms 02-03 09:48:41.307: D/VLC(20109): core stream: pre-buffering done 1024 bytes in 0s - 1501 KiB/s 02-03 09:48:41.307: D/VLC(20109): core xml: looking for xml module matching "any": 1 candidates 02-03 09:48:41.307: D/VLC(20109): core xml: using xml module "xml" 02-03 09:48:41.307: D/VLC(20109): core xml reader: looking for xml reader module matching "any": 1 candidates 02-03 09:48:41.307: D/VLC(20109): core xml reader: using xml reader module "xml" 02-03 09:48:41.307: D/VLC(20109): dash stream: MPD profile=urn:mpeg:dash:profile:isoff-live:2011 mediaPresentationDuration=0 minBufferTime=1 02-03 09:48:41.307: D/VLC(20109): dash stream: BaseUrl=http://localhost:4009/service_1/www.huawei.com/mbms/292/ 02-03 09:48:41.307: D/VLC(20109): dash stream: Period 02-03 09:48:41.307: D/VLC(20109): dash stream: AdaptationSet 02-03 09:48:41.307: D/VLC(20109): dash stream: Representation 02-03 09:48:41.307: D/VLC(20109): dash stream: InitSegmentTemplate url=http://localhost:4009/service_1/www.huawei.com/mbms/292/$RepresentationID$_init.m4i 02-03 09:48:41.307: D/VLC(20109): dash stream: SegmentTemplate url=http://localhost:4009/service_1/www.huawei.com/mbms/292/$RepresentationID$_Segment-$Number$.m4v 02-03 09:48:41.307: D/VLC(20109): core access: removing module "http" 02-03 09:48:41.307: D/VLC(20109): core xml: removing module "xml" 02-03 09:48:41.307: D/VLC(20109): dash stream: Updated MPD, next update in 29s (2..60) 02-03 09:48:41.307: D/VLC(20109): core input: time is 7071924911429648395 02-03 09:48:41.307: W/VLC(20109): mediacodec decoder: Unable to find the member getInputBuffer in android/media/MediaCodec 02-03 09:48:41.307: W/VLC(20109): mediacodec decoder: Unable to find the member getOutputBuffer in android/media/MediaCodec 02-03 09:48:41.327: D/VLC(20109): mediacodec decoder: Number of profile levels: 0 02-03 09:48:41.337: D/VLC(20109): mediacodec decoder: Number of profile levels: 0 02-03 09:48:41.337: D/VLC(20109): mediacodec decoder: Number of profile levels: 0 02-03 09:48:41.347: D/VLC(20109): mediacodec decoder: Number of profile levels: 0 02-03 09:48:41.347: D/VLC(20109): mediacodec decoder: Number of profile levels: 0 02-03 09:48:41.357: D/VLC(20109): mediacodec decoder: Number of profile levels: 0 02-03 09:48:41.357: D/VLC(20109): mediacodec decoder: Number of profile levels: 0 02-03 09:48:41.367: D/VLC(20109): mediacodec decoder: Number of profile levels: 0 02-03 09:48:41.367: D/VLC(20109): mediacodec decoder: Number of profile levels: 0 02-03 09:48:41.367: D/VLC(20109): mediacodec decoder: Number of profile levels: 0 02-03 09:48:41.377: D/VLC(20109): mediacodec decoder: Number of profile levels: 3 02-03 09:48:41.377: D/VLC(20109): mediacodec decoder: using OMX.qcom.video.decoder.avc 02-03 09:48:41.427: D/VLC(20109): core decoder: using decoder module "mediacodec" 02-03 09:48:41.437: D/VLC(20109): mp4 demux: adding track[Id 0x1] video (enable) language undef 02-03 09:48:41.437: D/VLC(20109): mp4 demux: fragment offset 7101710831749955604, data 0<->0, duration 1000000 @0 02-03 09:48:41.437: D/VLC(20109): core demux: using demux module "mp4" 02-03 09:48:41.437: D/VLC(20109): mp4 demux: track 1 enabled! 02-03 09:48:41.437: D/VLC(20109): mp4 demux: Select track id 1 02-03 09:48:43.247: D/VLC(20109): core input: end time is over 2000,time is 7071924911429650334 02-03 09:48:43.247: D/VLC(20109): dash stream: Retrieving http://localhost:4009/service_1/www.huawei.com/mbms/292/Stream_0_864000_Segment-324240.m4v 02-03 09:48:43.257: D/VLC(20109): mkv stream: read box: "sidx" version 1, flags 0x0, ref_ID 1, timescale 1000, ref_count 1, first subsegmt duration 2000 02-03 09:48:43.257: W/VLC(20109): mkv stream: unknown box type prft (incompletely loaded) 02-03 09:48:43.257: D/VLC(20109): mkv stream: read box: "mfhd" sequence number 324237 02-03 09:48:43.257: D/VLC(20109): mkv stream: read box: "tfhd" version 0 flags 0x20000 track ID 1 02-03 09:48:43.257: D/VLC(20109): mkv stream: i_sample_count is 50 02-03 09:48:43.257: D/VLC(20109): mkv stream: read box: "sdtp" head: 26 2 2 2 02-03 09:48:43.257: I/VLC(20109): mp4 demux: Fragment sequence discontinuity detected 324237 != 2 02-03 09:48:43.257: D/VLC(20109): mp4 demux: ignoring box styp 02-03 09:48:43.257: D/VLC(20109): mp4 demux: ignoring box sidx 02-03 09:48:43.257: D/VLC(20109): mp4 demux: ignoring box prft 02-03 09:48:43.257: D/VLC(20109): mp4 demux: added fragment moof 02-03 09:48:43.257: D/VLC(20109): mp4 demux: new fragment is 1570 216997 02-03 09:48:43.257: D/VLC(20109): mp4 demux: total fragments duration 1000000 02-03 09:48:43.257: D/VLC(20109): mp4 demux: track 1 enabled! 02-03 09:48:43.257: D/VLC(20109): mp4 demux: fragment matched 1570 << 1570 << 216997 02-03 09:48:43.257: D/VLC(20109): mp4 demux: Default sample duration 0 size 0 firstdts 0 02-03 09:48:43.267: D/VLC(20109): core input: Buffering 0% 02-03 09:48:43.267: D/VLC(20109): mp4 demux: track 1 enabled! 02-03 09:48:43.267: D/VLC(20109): core input: time is 18 02-03 09:48:43.287: D/VLC(20109): mediacodec decoder: output format changed: {height=270, what=1869968451, color-format=2141391876, slice-height=288, crop-left=0, width=480, crop-bottom=269, crop-top=0, mime=video/raw, stride=512, crop-right=479} 02-03 09:48:43.287: E/VLC(20109): mediacodec decoder: output: 2141391876 Biplanar 4:2:0 Y/UV, 480x270 stride 512 288, crop 0 0 479 269 02-03 09:48:43.287: D/VLC(20109): core spu text: looking for text renderer module matching "any": 1 candidates 02-03 09:48:43.287: D/VLC(20109): freetype spu text: Using /system/fonts/DroidSans-Bold.ttf as font from file /system/fonts/DroidSans-Bold.ttf 02-03 09:48:43.287: D/VLC(20109): freetype spu text: Using /system/fonts/DroidSansMono.ttf as mono-font from file /system/fonts/DroidSansMono.ttf 02-03 09:48:43.287: D/VLC(20109): freetype spu text: using fontsize: 2 02-03 09:48:43.287: D/VLC(20109): core spu text: using text renderer module "freetype" 02-03 09:48:43.287: D/VLC(20109): core scale: looking for video filter2 module matching "any": 36 candidates 02-03 09:48:43.287: D/VLC(20109): swscale scale: 32x32 (32x32) chroma: YUVA -> 16x16 (16x16) chroma: RGBA with scaling using Bicubic (good quality) 02-03 09:48:43.287: D/VLC(20109): core scale: using video filter2 module "swscale" 02-03 09:48:43.287: D/VLC(20109): core scale: looking for video filter2 module matching "any": 36 candidates 02-03 09:48:43.287: D/VLC(20109): yuvp scale: YUVP to YUVA converter 02-03 09:48:43.287: D/VLC(20109): core scale: using video filter2 module "yuvp" 02-03 09:48:43.287: D/VLC(20109): core video output: Deinterlacing available 02-03 09:48:43.287: D/VLC(20109): core video output: deinterlace 0, mode blend, is_needed 0 02-03 09:48:43.287: D/VLC(20109): core window: looking for vout window module matching "any": 1 candidates 02-03 09:48:43.287: D/VLC(20109): core window: no vout window modules matched 02-03 09:48:43.297: D/VLC(20109): core video output: Opening vout display wrapper 02-03 09:48:43.297: D/VLC(20109): core vout display: looking for vout display module matching "androidwindow": 4 candidates 02-03 09:48:43.297: D/VLC(20109): core vout display: no vout display modules matched 02-03 09:48:43.297: E/VLC(20109): core video output: video output creation failed 02-03 09:48:43.297: D/VLC(20109): core spu text: removing module "freetype" 02-03 09:48:43.297: D/VLC(20109): core scale: removing module "yuvp" 02-03 09:48:43.297: D/VLC(20109): core scale: removing module "swscale" 02-03 09:48:43.297: E/VLC(20109): core decoder: failed to create video output 02-03 09:48:43.297: W/VLC(20109): mediacodec decoder: NewPicture failed 02-03 09:48:43.297: D/VLC(20109): core spu text: looking for text renderer module matching "any": 1 candidates 02-03 09:48:43.297: D/VLC(20109): freetype spu text: Using /system/fonts/DroidSans-Bold.ttf as font from file /system/fonts/DroidSans-Bold.ttf 02-03 09:48:43.297: D/VLC(20109): freetype spu text: Using /system/fonts/DroidSansMono.ttf as mono-font from file /system/fonts/DroidSansMono.ttf 02-03 09:48:43.297: D/VLC(20109): freetype spu text: using fontsize: 2 02-03 09:48:43.297: D/VLC(20109): core spu text: using text renderer module "freetype" 02-03 09:48:43.297: D/VLC(20109): core scale: looking for video filter2 module matching "any": 36 candidates 02-03 09:48:43.307: D/VLC(20109): swscale scale: 32x32 (32x32) chroma: YUVA -> 16x16 (16x16) chroma: RGBA with scaling using Bicubic (good quality) 02-03 09:48:43.307: D/VLC(20109): core scale: using video filter2 module "swscale" 02-03 09:48:43.307: D/VLC(20109): core scale: looking for video filter2 module matching "any": 36 candidates 02-03 09:48:43.307: D/VLC(20109): yuvp scale: YUVP to YUVA converter 02-03 09:48:43.307: D/VLC(20109): core scale: using video filter2 module "yuvp" 02-03 09:48:43.307: D/VLC(20109): core video output: Deinterlacing available 02-03 09:48:43.307: D/VLC(20109): core video output: deinterlace 0, mode blend, is_needed 0 02-03 09:48:43.307: D/VLC(20109): core window: looking for vout window module matching "any": 1 candidates 02-03 09:48:43.307: D/VLC(20109): core window: no vout window modules matched 02-03 09:48:43.317: D/VLC(20109): core video output: Opening vout display wrapper 02-03 09:48:43.317: D/VLC(20109): core vout display: looking for vout display module matching "androidwindow": 4 candidates 02-03 09:48:43.317: D/VLC(20109): core vout display: no vout display modules matched 02-03 09:48:43.317: E/VLC(20109): core video output: video output creation failed 02-03 09:48:43.317: D/VLC(20109): core spu text: removing module "freetype" 02-03 09:48:43.317: D/VLC(20109): core scale: removing module "yuvp" 02-03 09:48:43.317: D/VLC(20109): core scale: removing module "swscale" 02-03 09:48:43.317: E/VLC(20109): core decoder: failed to create video output 02-03 09:48:43.317: W/VLC(20109): mediacodec decoder: NewPicture failed 02-03 09:48:45.197: D/VLC(20109): core input: end time is over 2000,time is 1950 02-03 09:48:45.197: D/VLC(20109): dash stream: Retrieving http://localhost:4009/service_1/www.huawei.com/mbms/292/Stream_0_864000_Segment-324241.m4v 02-03 09:48:45.267: D/VLC(20109): core input: Stream buffering done (2000 ms in 2002 ms) 02-03 09:48:45.267: D/VLC(20109): mkv stream: read box: "sidx" version 1, flags 0x0, ref_ID 1, timescale 1000, ref_count 1, first subsegmt duration 2000 02-03 09:48:45.267: W/VLC(20109): mkv stream: unknown box type prft (incompletely loaded) 02-03 09:48:45.267: D/VLC(20109): mkv stream: read box: "mfhd" sequence number 324238 02-03 09:48:45.267: D/VLC(20109): mkv stream: read box: "tfhd" version 0 flags 0x20000 track ID 1 02-03 09:48:45.267: D/VLC(20109): mkv stream: i_sample_count is 50 02-03 09:48:45.267: D/VLC(20109): mkv stream: read box: "sdtp" head: 26 2 2 2 02-03 09:48:45.267: D/VLC(20109): mp4 demux: ignoring box styp 02-03 09:48:45.267: D/VLC(20109): mp4 demux: ignoring box sidx 02-03 09:48:45.267: D/VLC(20109): mp4 demux: ignoring box prft 02-03 09:48:45.267: D/VLC(20109): mp4 demux: added fragment moof 02-03 09:48:45.267: D/VLC(20109): mp4 demux: new fragment is 217863 432590 02-03 09:48:45.267: D/VLC(20109): core input: Decoder wait done in 0 ms 02-03 09:48:45.267: D/VLC(20109): mp4 demux: total fragments duration 1000000 02-03 09:48:45.267: D/VLC(20109): core input: time is 644245094465 02-03 09:48:45.267: D/VLC(20109): mp4 demux: track 1 enabled! 02-03 09:48:45.267: D/VLC(20109): mp4 demux: fragment matched 217863 << 217863 << 432590 02-03 09:48:45.267: D/VLC(20109): mp4 demux: Default sample duration 0 size 0 firstdts 0 02-03 09:48:45.267: D/VLC(20109): mp4 demux: track 1 enabled! 02-03 09:48:47.147: D/VLC(20109): core input: end time is over 2000,time is 644245096350 02-03 09:48:47.147: D/VLC(20109): dash stream: Retrieving http://localhost:4009/service_1/www.huawei.com/mbms/292/Stream_0_864000_Segment-324242.m4v 02-03 09:48:47.167: D/VLC(20109): mkv stream: read box: "sidx" version 1, flags 0x0, ref_ID 1, timescale 1000, ref_count 1, first subsegmt duration 2000 02-03 09:48:47.167: W/VLC(20109): mkv stream: unknown box type prft (incompletely loaded) 02-03 09:48:47.167: D/VLC(20109): mkv stream: read box: "mfhd" sequence number 324239 02-03 09:48:47.167: D/VLC(20109): mkv stream: read box: "tfhd" version 0 flags 0x20000 track ID 1 02-03 09:48:47.167: D/VLC(20109): mkv stream: i_sample_count is 50 02-03 09:48:47.167: D/VLC(20109): mkv stream: read box: "sdtp" head: 26 2 2 2 02-03 09:48:47.167: D/VLC(20109): mp4 demux: ignoring box styp 02-03 09:48:47.167: D/VLC(20109): mp4 demux: ignoring box sidx 02-03 09:48:47.167: D/VLC(20109): mp4 demux: ignoring box prft 02-03 09:48:47.167: D/VLC(20109): mp4 demux: added fragment moof 02-03 09:48:47.167: D/VLC(20109): mp4 demux: new fragment is 433456 648778 02-03 09:48:47.167: D/VLC(20109): mp4 demux: total fragments duration 1000000 02-03 09:48:47.167: D/VLC(20109): mp4 demux: track 1 enabled! 02-03 09:48:47.167: D/VLC(20109): mp4 demux: fragment matched 433456 << 433456 << 648778 02-03 09:48:47.167: D/VLC(20109): mp4 demux: Default sample duration 0 size 0 firstdts 0 02-03 09:48:47.167: D/VLC(20109): mp4 demux: track 1 enabled! 02-03 09:48:47.177: D/VLC(20109): core input: time is 644245094424 02-03 09:48:49.097: D/VLC(20109): core input: end time is over 2000,time is 644245096350 02-03 09:48:49.677: D/VLC(20109): dash stream: Retrieving http://localhost:4009/service_1/www.huawei.com/mbms/292/Stream_0_864000_Segment-324243.m4v 02-03 09:48:49.677: D/VLC(20109): dash stream: send msg method = query(chunk) 02-03 09:48:49.747: D/VLC(20109): mkv stream: read box: "sidx" version 1, flags 0x0, ref_ID 1, timescale 1000, ref_count 1, first subsegmt duration 2000 02-03 09:48:49.747: W/VLC(20109): mkv stream: unknown box type prft (incompletely loaded) 02-03 09:48:49.747: D/VLC(20109): mkv stream: read box: "mfhd" sequence number 324240 02-03 09:48:49.747: D/VLC(20109): mkv stream: read box: "tfhd" version 0 flags 0x20000 track ID 1 02-03 09:48:49.747: D/VLC(20109): mkv stream: i_sample_count is 50 02-03 09:48:49.747: D/VLC(20109): mkv stream: read box: "sdtp" head: 26 2 2 2 02-03 09:48:49.747: D/VLC(20109): mp4 demux: ignoring box styp 02-03 09:48:49.747: D/VLC(20109): mp4 demux: ignoring box sidx 02-03 09:48:49.747: D/VLC(20109): mp4 demux: ignoring box prft 02-03 09:48:49.747: D/VLC(20109): mp4 demux: added fragment moof 02-03 09:48:49.747: D/VLC(20109): mp4 demux: new fragment is 649644 864216 02-03 09:48:49.747: D/VLC(20109): mp4 demux: total fragments duration 1000000 02-03 09:48:49.747: D/VLC(20109): mp4 demux: track 1 enabled! 02-03 09:48:49.747: D/VLC(20109): mp4 demux: fragment matched 649644 << 649644 << 864216 02-03 09:48:49.747: D/VLC(20109): mp4 demux: Default sample duration 0 size 0 firstdts 0 02-03 09:48:49.747: D/VLC(20109): mp4 demux: track 1 enabled! 02-03 09:48:51.627: D/VLC(20109): core input: end time is over 2000,time is 644245096350 02-03 09:48:51.627: D/VLC(20109): dash stream: Retrieving http://localhost:4009/service_1/www.huawei.com/mbms/292/Stream_0_864000_Segment-324244.m4v 02-03 09:48:51.637: D/VLC(20109): core input: time is 644245094409 02-03 09:48:51.637: D/VLC(20109): mkv stream: read box: "sidx" version 1, flags 0x0, ref_ID 1, timescale 1000, ref_count 1, first subsegmt duration 2000 02-03 09:48:51.637: W/VLC(20109): mkv stream: unknown box type prft (incompletely loaded) 02-03 09:48:51.637: D/VLC(20109): mkv stream: read box: "mfhd" sequence number 324241 02-03 09:48:51.637: D/VLC(20109): mkv stream: read box: "tfhd" version 0 flags 0x20000 track ID 1 02-03 09:48:51.637: D/VLC(20109): mkv stream: i_sample_count is 50 02-03 09:48:51.637: D/VLC(20109): mkv stream: read box: "sdtp" head: 26 2 2 2 02-03 09:48:51.637: D/VLC(20109): mp4 demux: ignoring box styp 02-03 09:48:51.637: D/VLC(20109): mp4 demux: ignoring box sidx 02-03 09:48:51.637: D/VLC(20109): mp4 demux: ignoring box prft 02-03 09:48:51.637: D/VLC(20109): mp4 demux: added fragment moof 02-03 09:48:51.637: D/VLC(20109): mp4 demux: new fragment is 865082 1080464 02-03 09:48:51.637: D/VLC(20109): mp4 demux: total fragments duration 1000000 02-03 09:48:51.637: D/VLC(20109): mp4 demux: track 1 enabled! 02-03 09:48:51.637: D/VLC(20109): mp4 demux: fragment matched 865082 << 865082 << 1080464 02-03 09:48:51.637: D/VLC(20109): mp4 demux: Default sample duration 0 size 0 firstdts 0 02-03 09:48:51.637: D/VLC(20109): mp4 demux: track 1 enabled! 02-03 09:48:53.577: D/VLC(20109): core input: end time is over 2000,time is 644245096350 02-03 09:48:53.577: D/VLC(20109): dash stream: Retrieving http://localhost:4009/service_1/www.huawei.com/mbms/292/Stream_0_864000_Segment-324245.m4v 02-03 09:48:53.587: D/VLC(20109): core input: time is 644245094407 02-03 09:48:53.587: D/VLC(20109): mkv stream: read box: "sidx" version 1, flags 0x0, ref_ID 1, timescale 1000, ref_count 1, first subsegmt duration 2000 02-03 09:48:53.587: W/VLC(20109): mkv stream: unknown box type prft (incompletely loaded) 02-03 09:48:53.587: D/VLC(20109): mkv stream: read box: "mfhd" sequence number 324242 02-03 09:48:53.587: D/VLC(20109): mkv stream: read box: "tfhd" version 0 flags 0x20000 track ID 1 02-03 09:48:53.587: D/VLC(20109): mkv stream: i_sample_count is 50 02-03 09:48:53.587: D/VLC(20109): mkv stream: read box: "sdtp" head: 26 2 2 2 02-03 09:48:53.587: D/VLC(20109): mp4 demux: ignoring box styp 02-03 09:48:53.587: D/VLC(20109): mp4 demux: ignoring box sidx 02-03 09:48:53.587: D/VLC(20109): mp4 demux: ignoring box prft 02-03 09:48:53.587: D/VLC(20109): mp4 demux: added fragment moof 02-03 09:48:53.587: D/VLC(20109): mp4 demux: new fragment is 1081330 1294823 02-03 09:48:53.587: D/VLC(20109): mp4 demux: total fragments duration 1000000 02-03 09:48:53.587: D/VLC(20109): mp4 demux: track 1 enabled! 02-03 09:48:53.587: D/VLC(20109): mp4 demux: fragment matched 1081330 << 1081330 << 1294823 02-03 09:48:53.587: D/VLC(20109): mp4 demux: Default sample duration 0 size 0 firstdts 0 02-03 09:48:53.587: D/VLC(20109): mp4 demux: track 1 enabled! 02-03 09:48:55.527: D/VLC(20109): core input: end time is over 2000,time is 644245096350 02-03 09:48:55.527: D/VLC(20109): dash stream: Retrieving http://localhost:4009/service_1/www.huawei.com/mbms/292/Stream_0_864000_Segment-324246.m4v 02-03 09:48:55.537: D/VLC(20109): mkv stream: read box: "sidx" version 1, flags 0x0, ref_ID 1, timescale 1000, ref_count 1, first subsegmt duration 2000 02-03 09:48:55.537: W/VLC(20109): mkv stream: unknown box type prft (incompletely loaded) 02-03 09:48:55.537: D/VLC(20109): mkv stream: read box: "mfhd" sequence number 324243 02-03 09:48:55.537: D/VLC(20109): mkv stream: read box: "tfhd" version 0 flags 0x20000 track ID 1 02-03 09:48:55.537: D/VLC(20109): mkv stream: i_sample_count is 50 02-03 09:48:55.537: D/VLC(20109): mkv stream: read box: "sdtp" head: 26 2 2 2 02-03 09:48:55.537: D/VLC(20109): mp4 demux: ignoring box styp 02-03 09:48:55.537: D/VLC(20109): mp4 demux: ignoring box sidx 02-03 09:48:55.537: D/VLC(20109): mp4 demux: ignoring box prft 02-03 09:48:55.537: D/VLC(20109): mp4 demux: added fragment moof 02-03 09:48:55.537: D/VLC(20109): mp4 demux: new fragment is 1295689 1511179 02-03 09:48:55.537: D/VLC(20109): mp4 demux: total fragments duration 1000000 02-03 09:48:55.537: D/VLC(20109): mp4 demux: track 1 enabled! 02-03 09:48:55.537: D/VLC(20109): mp4 demux: fragment matched 1295689 << 1295689 << 1511179 02-03 09:48:55.537: D/VLC(20109): mp4 demux: Default sample duration 0 size 0 firstdts 0 02-03 09:48:55.537: D/VLC(20109): mp4 demux: track 1 enabled! 02-03 09:48:55.547: D/VLC(20109): core input: time is 644245094415 02-03 09:48:57.477: D/VLC(20109): core input: end time is over 2000,time is 644245096350 02-03 09:48:57.677: D/VLC(20109): dash stream: Retrieving http://localhost:4009/service_1/www.huawei.com/mbms/292/Stream_0_864000_Segment-324247.m4v 02-03 09:48:57.767: D/VLC(20109): core input: time is 644245094489 02-03 09:48:57.767: D/VLC(20109): mkv stream: read box: "sidx" version 1, flags 0x0, ref_ID 1, timescale 1000, ref_count 1, first subsegmt duration 2000 02-03 09:48:57.767: W/VLC(20109): mkv stream: unknown box type prft (incompletely loaded) 02-03 09:48:57.767: D/VLC(20109): mkv stream: read box: "mfhd" sequence number 324244 02-03 09:48:57.767: D/VLC(20109): mkv stream: read box: "tfhd" version 0 flags 0x20000 track ID 1 02-03 09:48:57.767: D/VLC(20109): mkv stream: i_sample_count is 50 02-03 09:48:57.767: D/VLC(20109): mkv stream: read box: "sdtp" head: 26 2 2 2 02-03 09:48:57.767: D/VLC(20109): mp4 demux: ignoring box styp 02-03 09:48:57.767: D/VLC(20109): mp4 demux: ignoring box sidx 02-03 09:48:57.767: D/VLC(20109): mp4 demux: ignoring box prft 02-03 09:48:57.767: D/VLC(20109): mp4 demux: added fragment moof 02-03 09:48:57.767: D/VLC(20109): mp4 demux: new fragment is 1512045 1727358 02-03 09:48:57.767: D/VLC(20109): mp4 demux: total fragments duration 1000000 02-03 09:48:57.767: D/VLC(20109): mp4 demux: track 1 enabled! 02-03 09:48:57.767: D/VLC(20109): mp4 demux: fragment matched 1512045 << 1512045 << 1727358 02-03 09:48:57.767: D/VLC(20109): mp4 demux: Default sample duration 0 size 0 firstdts 0 02-03 09:48:57.767: D/VLC(20109): mp4 demux: track 1 enabled! 02-03 09:48:59.627: D/VLC(20109): core input: end time is over 2000,time is 644245096350 02-03 09:48:59.627: D/VLC(20109): dash stream: Retrieving http://localhost:4009/service_1/www.huawei.com/mbms/292/Stream_0_864000_Segment-324248.m4v
Any idea how to solve this?
Regards

edwardw
Big Cone-huna
Big Cone-huna
Posts: 2346
Joined: 24 Jun 2012 23:36
VLC version: 3.0.0-git

Re: video output has some problems:failed to create video output

Postby edwardw » 05 Feb 2015 06:19

Was a surface created and set properly?

sjlgwsunjun
New Cone
New Cone
Posts: 4
Joined: 03 Feb 2015 04:16

Re: video output has some problems:failed to create video output

Postby sjlgwsunjun » 05 Feb 2015 07:22

Was a surface created and set properly?

yes,like this

Code: Select all

public void surfaceChanged(SurfaceHolder surfaceholder, int format, int width, int height) { if (null != libvlc) { libvlc.attachSurface(surfaceholder.getSurface(), mVideoPlayer); } }

edwardw
Big Cone-huna
Big Cone-huna
Posts: 2346
Joined: 24 Jun 2012 23:36
VLC version: 3.0.0-git

Re: video output has some problems:failed to create video output

Postby edwardw » 05 Feb 2015 07:25

What is your Android version?

sjlgwsunjun
New Cone
New Cone
Posts: 4
Joined: 03 Feb 2015 04:16

Re: video output has some problems:failed to create video output

Postby sjlgwsunjun » 05 Feb 2015 10:36

What is your Android version?
Android system version is 4.3,and Android compiled version is 5.0.1

DoDenny
Blank Cone
Blank Cone
Posts: 23
Joined: 15 Nov 2014 14:48

Re: video output has some problems:failed to create video output

Postby DoDenny » 09 Feb 2015 02:24

perhaps i also meet this question, and i add codes below:
mLibVLC.eventVideoPlayerActivityCreated(true);
wish it helps.

sjlgwsunjun
New Cone
New Cone
Posts: 4
Joined: 03 Feb 2015 04:16

Re: video output has some problems:failed to create video output

Postby sjlgwsunjun » 09 Feb 2015 03:53

perhaps i also meet this question, and i add codes below:
mLibVLC.eventVideoPlayerActivityCreated(true);
wish it helps.
oh yes!

the video is displayed,thank you!

edwardw
Big Cone-huna
Big Cone-huna
Posts: 2346
Joined: 24 Jun 2012 23:36
VLC version: 3.0.0-git

Re: video output has some problems:failed to create video output

Postby edwardw » 10 Feb 2015 22:39

Good point. I will include this upon the refresh for the sample for the latest changes.

carrieje
New Cone
New Cone
Posts: 8
Joined: 17 Feb 2015 17:21

Re: video output has some problems:failed to create video output

Postby carrieje » 17 Feb 2015 17:26

I confirm, I had the same issue for 2 days.
This simple line solved my problem.
I wish I saw this earlier and hope it will help others.

FYI : I added the line, just after my `libvlc.restart(this)`

tobi512
New Cone
New Cone
Posts: 1
Joined: 17 Mar 2015 11:54

Re: video output has some problems:failed to create video output

Postby tobi512 » 17 Mar 2015 13:05

Hey guys,
i'm currently facing the same problem as described in here.
Trying to use libVLC to stream video via RTSP and only get audio but no video output. Using the latest version of libVLC, with an older version it used to work.

I tried to set eventVideoPlayerActivityCreated(true) and other stuff, but the surfaceView still stays black.
Seems to a problem with the current version of libVLC for me, old version works fine.

Here is my code:

Code: Select all

libVLC = LibVLC.getInstance(); try { libVLC.init(getApplicationContext()); } catch (LibVlcException e) { e.printStackTrace(); } libVLC.setTimeStretching(true); libVLC.setHardwareAcceleration(LibVLC.HW_ACCELERATION_FULL); libVLC.setAout(LibVLC.AOUT_OPENSLES); libVLC.setVout(LibVLC.VOUT_OPEGLES2); libVLC.setChroma("RV32"); libVLC.setVerboseMode(true); libVLC.restart(this); libVLC.eventVideoPlayerActivityCreated(true); @Override public void surfaceChanged(SurfaceHolder holder, int format, int width, int height) { Log.d("VA", "surfaceChanged()"); libVLC.attachSurface(surfaceHolder.getSurface(), this); if (url != null) { libVLC.playMRL(url); } }
Log as following (just the important part):

Code: Select all

D/VLC﹕ [aec52a34] core video output: Deinterlacing available 03-17 11:33:45.288 9970-10509/myapp D/VLC﹕ [aec52a34] core video output: deinterlace 0, mode blend, is_needed 0 03-17 11:33:45.288 9970-10509/myapp D/VLC﹕ [aee5ccb4] core window: looking for vout window module matching "any": 1 candidates 03-17 11:33:45.288 9970-10509/myapp D/VLC﹕ [aee5ccb4] core window: no vout window modules matched 03-17 11:33:45.293 9970-10513/myapp D/VLC﹕ [aec52a34] core video output: Opening vout display wrapper 03-17 11:33:45.293 9970-10513/myapp D/VLC﹕ [aec5f9b4] core vout display: looking for vout display module matching "androidwindow": 4 candidates 03-17 11:33:45.298 9970-10513/myapp D/VA﹕ configureSurface() 03-17 11:33:45.299 9970-10513/myapp D/VLC﹕ [aec5f9b4] core vout display: no vout display modules matched 03-17 11:33:45.300 9970-10509/myapp E/VLC﹕ [aec52a34] core video output: video output creation failed 03-17 11:33:45.301 9970-10509/myapp D/VLC﹕ [aed52834] core spu text: removing module "freetype" 03-17 11:33:45.301 9970-10509/myapp D/VLC﹕ [aed52e34] core scale: removing module "yuvp" 03-17 11:33:45.301 9970-10509/myapp D/VLC﹕ [aed52b34] core scale: removing module "swscale" 03-17 11:33:45.301 9970-10509/myapp E/VLC﹕ [aed63d34] core decoder: failed to create video output 03-17 11:33:45.301 9970-10509/myapp W/VLC﹕ [aed63d34] mediacodec decoder: NewPicture failed 03-17 11:33:45.309 9970-10499/myapp D/VLC﹕ [b4b25974] core input: Buffering 16%
Am i missing any important changes of the new library-version? I thinks its just a small thing, since i get proper sound...

PS: I'm also not sure what VOUT-mode to use, any advice on that?


Return to “VLC for Android and Chrome OS”

Who is online

Users browsing this forum: No registered users and 27 guests