Android: problems with deinterlacing

This forum is about all development around libVLC.
Wildcopper
Blank Cone
Blank Cone
Posts: 19
Joined: 21 Jun 2016 16:45

Android: problems with deinterlacing

Postby Wildcopper » 05 Jan 2017 09:35

Hello,

I'm currently trying to implement LibVLC (directly compiled by me from GIT following the "android compile" instructions) in my Android video application.
What I am playing is a UDP Multicast MP4 TS with EAC3 audio (it's IPTV).

The stream plays nicely, using very little CPU on my Android box, but the deinterlacing seems to be stuck in "discard" mode, making the video looks quite bad.

Is there any parameter I need to pass to LibVLC, knowing that I already tried all the deinterlace parameters with no success ?

Right now I'm doing this:

Code: Select all

ArrayList<String> options = new ArrayList<String>(); options.add("--aout=opensles"); options.add("--android-display-chroma=RV32"); options.add("--audio-time-stretch"); // time stretching options.add("--deinterlace=-1"); options.add("--deinterlace-mode=yadif"); options.add("--sout-deinterlace-mode=yadif"); options.add("--video-filter=deinterlace"); options.add("--no-hdtv-fix"); options.add("--network-caching=8192"); options.add("--udp-buffer=8192"); options.add("--clock-jitter=0"); options.add("--clock-synchro=0"); options.add("--swscale-mode=2"); options.add("--verbose=2"); // libvlc = new LibVLC(options); libvlc = new LibVLC(context, options); TVLog.i(TAG, "LibVLC version " + libvlc.version()); mMediaPlayer = new MediaPlayer(libvlc); mMediaPlayer.setEventListener(mPlayerListener);

Wildcopper
Blank Cone
Blank Cone
Posts: 19
Joined: 21 Jun 2016 16:45

Re: Android: problems with deinterlacing

Postby Wildcopper » 06 Jan 2017 10:56

Little precision.... I also tried with other values in options.add("--deinterlace=x");
I tried with 1, no change, that's why I also tried -1 (automatic), no change either.

I would just like to know if this is some unavoidable problem, and if I have to abandon that solution, or not. I can modify the VLC source if needed as I compile it myself.

Thank you.

ssbmaccom
Cone that earned his stripes
Cone that earned his stripes
Posts: 184
Joined: 26 Nov 2015 15:21
Operating System: Mac OS, iOS, tvOS

Re: Android: problems with deinterlacing

Postby ssbmaccom » 06 Jan 2017 19:29

Do you know if it is a progressive or an interlaced video stream?

Wildcopper
Blank Cone
Blank Cone
Posts: 19
Joined: 21 Jun 2016 16:45

Re: Android: problems with deinterlacing

Postby Wildcopper » 10 Jan 2017 15:13

It's an interlaced 25fps PAL MP4 transport stream.

Wildcopper
Blank Cone
Blank Cone
Posts: 19
Joined: 21 Jun 2016 16:45

Re: Android: problems with deinterlacing

Postby Wildcopper » 19 Jan 2017 11:09

Hello,
I've made tests on other devices.

The picture is pristine on a nVidia Shield box and on a Sony XPeria Z Ultra phone.

It's ugly on AMLogic S912 and Rockchip RK3368 based devices.
But on those devices, there's no problem and I get a good picture if I use the Android MediaPlayer.
I still need VLC or another library because the base MediaPlayer doesn't decode the EAC3 sound of the stream.

If anyone has a suggestion, I'd be thankful.

Wildcopper
Blank Cone
Blank Cone
Posts: 19
Joined: 21 Jun 2016 16:45

Re: Android: problems with deinterlacing

Postby Wildcopper » 19 Jan 2017 11:18

I'm getting something suspicious from the AMLogic decoder, actually, in the LogCAT:
01-19 10:56:44.607 3791-4625/? D/AmlogicVideoDecoderAwesome: omx output size changed from 1920*1088 to 960*540

This could definitely be the problem. Thing is, this doesn't happen with neither MediaPlayer nor ExoPlayer.
What I thought was a deinterlacing problem could very well be a downscaled output scaled back up to screen size (1920x1080).

This only happens on AMLogic and Rockchip devices.

Jean-Baptiste Kempf
Site Administrator
Site Administrator
Posts: 37523
Joined: 22 Jul 2005 15:29
VLC version: 4.0.0-git
Operating System: Linux, Windows, Mac
Location: Cone, France
Contact:

Re: Android: problems with deinterlacing

Postby Jean-Baptiste Kempf » 20 Jan 2017 00:30

We have an AMLogic board. Can you tell us more?
Jean-Baptiste Kempf
http://www.jbkempf.com/ - http://www.jbkempf.com/blog/category/Videolan
VLC media player developer, VideoLAN President and Sites administrator
If you want an answer to your question, just be specific and precise. Don't use Private Messages.

Jean-Baptiste Kempf
Site Administrator
Site Administrator
Posts: 37523
Joined: 22 Jul 2005 15:29
VLC version: 4.0.0-git
Operating System: Linux, Windows, Mac
Location: Cone, France
Contact:

Re: Android: problems with deinterlacing

Postby Jean-Baptiste Kempf » 20 Jan 2017 00:31

For deinterlacing and AMLogic, YOU MUST update post January 5 for it to work correctly.
Jean-Baptiste Kempf
http://www.jbkempf.com/ - http://www.jbkempf.com/blog/category/Videolan
VLC media player developer, VideoLAN President and Sites administrator
If you want an answer to your question, just be specific and precise. Don't use Private Messages.

Wildcopper
Blank Cone
Blank Cone
Posts: 19
Joined: 21 Jun 2016 16:45

Re: Android: problems with deinterlacing

Postby Wildcopper » 20 Jan 2017 09:28

Merci Jean-Baptiste.
I'm going to try to compile a more recent version to see if it fixes the problem.

But apparently, as I said, it's not really a deinterlacing problem, it's the video decoder downscaling (halving) the video for some unknown reason. Maybe the automatic downscaling of video quality because it's considered as a mobile device ?

I'll try the new version and come back to you.

Wildcopper
Blank Cone
Blank Cone
Posts: 19
Joined: 21 Jun 2016 16:45

Re: Android: problems with deinterlacing

Postby Wildcopper » 20 Jan 2017 11:09

I've a compilation problem now...

Code: Select all

checking for LIVE555... no configure: WARNING: No package 'live555' found. checking for live555 version 1324598400 or later... no configure: WARNING: live555 is missing or its installed version is too old: Version 2011.12.23 or later is required to proceed. You can get an updated one from http://www.live555.com/liveMedia . configure: error: Update live555 or pass --disable-live555 to disable RTSP input support. vlc: configure failed
I've tried to do what told, I downloaded, compiled and installed the latest version of live555, but I still get the same error.

I wasn't getting that error the last time I compiled libvlc.

Wildcopper
Blank Cone
Blank Cone
Posts: 19
Joined: 21 Jun 2016 16:45

Re: Android: problems with deinterlacing

Postby Wildcopper » 20 Jan 2017 14:18

I've disabled live555 for now, and I compiled the newest GIT LibVLC using the AndroidCompile procedure.

Still the same:
01-20 14:14:56.952 3792-9117/? V/OMX_WorkerPeer: hardware/amlogic/omx/omx_framework/WorkerPeer.cpp:runWorkerStatic:152 --------------------
01-20 14:14:56.952 3792-9117/? V/OMX_WorkerPeer: hardware/amlogic/omx/omx_framework/WorkerPeer.cpp:runWorker:158 --------------------
01-20 14:14:56.955 3792-9117/? V/AmlogicVideoDecoderAwesome: doCodecSpec csd_len=104
01-20 14:14:56.961 3792-9117/? V/AmlogicVideoDecoderAwesome: doCodecSpec csd_len=8
01-20 14:14:56.977 8825-9045/com.wildcopper.tvslide4droid D/VLC: [dce92028/2355] core input: Buffering 63%
01-20 14:14:57.011 8825-9045/com.wildcopper.tvslide4droid D/VLC: [dce92028/2355] core input: Buffering 65%
01-20 14:14:57.047 8825-9045/com.wildcopper.tvslide4droid D/VLC: [dce92028/2355] core input: Buffering 67%
01-20 14:14:57.080 8825-9045/com.wildcopper.tvslide4droid D/VLC: [dce92028/2355] core input: Buffering 70%
01-20 14:14:57.117 8825-9045/com.wildcopper.tvslide4droid D/VLC: [dce92028/2355] core input: Buffering 72%
01-20 14:14:57.122 3792-9116/? D/AmlogicVideoDecoderAwesome: omx output size changed from 1920*1088 to 960*540
01-20 14:14:57.124 3792-9116/? D/AmlogicVideoDecoderAwesome: mFirstInputTime = 74406345, mFirstOutputTime=74406506, delay= 161ms
01-20 14:14:57.126 3792-4162/? V/OmxVideoDecoder: mUseNativeBuffers 1
01-20 14:14:57.126 3792-4162/? D/AmlogicVideoDecoderAwesome: get native buffer info NV:w:1920,h:1088..
01-20 14:14:57.126 3792-4162/? V/OmxVideoDecoder: updatePort:portDef.format.video.nFrameWidth=960,portDef.format.video.nFrameHeight=540
01-20 14:14:57.128 3792-4567/? D/OmxVideoDecoder: getConfig 994 0x700000f
01-20 14:14:57.128 3792-4567/? D/OmxVideoDecoder: getConfig 997 nIndex 0x700000f
01-20 14:14:57.128 3792-4567/? D/OmxVideoDecoder: getConfig OMX_IndexConfigCommonOutputCrop pRect->nWidth=960, pRect->nHeight=540
01-20 14:14:57.128 8825-9111/com.wildcopper.tvslide4droid V/MediaCodec: codec output format changed
01-20 14:14:57.129 8825-9110/com.wildcopper.tvslide4droid E/VLC: [dd861e28/2396] mediacodec decoder: output: 17 unknown, 960x540 stride 1920 1088, crop 0 0 0 0
01-20 14:14:57.129 8825-9110/com.wildcopper.tvslide4droid D/VLC: [dd861e28/2396] core decoder: Received first picture

Jean-Baptiste Kempf
Site Administrator
Site Administrator
Posts: 37523
Joined: 22 Jul 2005 15:29
VLC version: 4.0.0-git
Operating System: Linux, Windows, Mac
Location: Cone, France
Contact:

Re: Android: problems with deinterlacing

Postby Jean-Baptiste Kempf » 22 Jan 2017 23:50

01-20 14:14:57.122 3792-9116/? D/AmlogicVideoDecoderAwesome: omx output size changed from 1920*1088 to 960*540

I doubt we can do anything about it, tbh.

Any other player working with that?
Jean-Baptiste Kempf
http://www.jbkempf.com/ - http://www.jbkempf.com/blog/category/Videolan
VLC media player developer, VideoLAN President and Sites administrator
If you want an answer to your question, just be specific and precise. Don't use Private Messages.

Wildcopper
Blank Cone
Blank Cone
Posts: 19
Joined: 21 Jun 2016 16:45

Re: Android: problems with deinterlacing

Postby Wildcopper » 23 Jan 2017 09:16

01-20 14:14:57.122 3792-9116/? D/AmlogicVideoDecoderAwesome: omx output size changed from 1920*1088 to 960*540

I doubt we can do anything about it, tbh.

Any other player working with that?
I've tried on a nVidia Shield and on my XPeria Phone, no problem, it works just fine.
It "bugs" on AMLogic and Rockchip hardware.

Wildcopper
Blank Cone
Blank Cone
Posts: 19
Joined: 21 Jun 2016 16:45

Re: Android: problems with deinterlacing

Postby Wildcopper » 23 Jan 2017 11:08

I made a capture of the transport stream available for download if you want, Jean-Baptiste. The problem also occurs with the .ts files, using the VLC for android player.

http://download.tecsoft.fr/pat/iptv.ts

Download the file locally, open it with VLC for Android on your AMLogic box, and you'll see the problem.

Jean-Baptiste Kempf
Site Administrator
Site Administrator
Posts: 37523
Joined: 22 Jul 2005 15:29
VLC version: 4.0.0-git
Operating System: Linux, Windows, Mac
Location: Cone, France
Contact:

Re: Android: problems with deinterlacing

Postby Jean-Baptiste Kempf » 26 Jan 2017 16:00

Then, you need to fix VLC :)
Jean-Baptiste Kempf
http://www.jbkempf.com/ - http://www.jbkempf.com/blog/category/Videolan
VLC media player developer, VideoLAN President and Sites administrator
If you want an answer to your question, just be specific and precise. Don't use Private Messages.

JohnPi
New Cone
New Cone
Posts: 1
Joined: 27 Sep 2017 10:54

Re: Android: problems with deinterlacing

Postby JohnPi » 27 Sep 2017 11:07

Hi ,
I'm currently working on Libvlc + AmLogic + interlaced Ts Stream on Android.
Is the Deinterlacing is now supported by libvlc with Amlogic board (S912 in my case) ?
I didn't manage to make it working with the 2.1.12 version.
I tried to force deinterlacing but i get this error :

Code: Select all

09-27 09:06:09.124 9177-9304/com.eona.videotestapp E/VLC: [df103930/2458] chain filter: Too high level of recursion (3) 09-27 09:06:09.124 9177-9304/com.eona.videotestapp D/VLC: [df103930/2458] core filter: no video converter modules matched 09-27 09:06:09.124 9177-9304/com.eona.videotestapp E/VLC: [df1036b0/2458] core filter: Failed to create video converter 09-27 09:06:09.124 9177-9304/com.eona.videotestapp D/VLC: [df1036b0/2458] chain filter: Trying to use chroma I422 as middle man 09-27 09:06:09.124 9177-9304/com.eona.videotestapp D/VLC: [df103930/2458] core filter: looking for video converter module matching "any": 16 candidates 09-27 09:06:09.124 9177-9304/com.eona.videotestapp E/VLC: [df103930/2458] chain filter: Too high level of recursion (3) 09-27 09:06:09.124 9177-9304/com.eona.videotestapp D/VLC: [df103930/2458] core filter: no video converter modules matched 09-27 09:06:09.124 9177-9304/com.eona.videotestapp E/VLC: [df1036b0/2458] core filter: Failed to create video converter 09-27 09:06:09.124 9177-9304/com.eona.videotestapp D/VLC: [df1036b0/2458] chain filter: Trying to use chroma I0AL as middle man 09-27 09:06:09.124 9177-9304/com.eona.videotestapp D/VLC: [df103930/2458] core filter: looking for video converter module matching "any": 16 candidates 09-27 09:06:09.124 9177-9304/com.eona.videotestapp E/VLC: [df103930/2458] chain filter: Too high level of recursion (3) 09-27 09:06:09.124 9177-9304/com.eona.videotestapp D/VLC: [df103930/2458] core filter: no video converter modules matched 09-27 09:06:09.124 9177-9304/com.eona.videotestapp E/VLC: [df1036b0/2458] core filter: Failed to create video converter 09-27 09:06:09.124 9177-9304/com.eona.videotestapp D/VLC: [df1036b0/2458] chain filter: Trying to use chroma I0FL as middle man 09-27 09:06:09.124 9177-9304/com.eona.videotestapp D/VLC: [df103930/2458] core filter: looking for video converter module matching "any": 16 candidates 09-27 09:06:09.124 9177-9304/com.eona.videotestapp E/VLC: [df103930/2458] chain filter: Too high level of recursion (3) 09-27 09:06:09.124 9177-9304/com.eona.videotestapp D/VLC: [df103930/2458] core filter: no video converter modules matched 09-27 09:06:09.124 9177-9304/com.eona.videotestapp E/VLC: [df1036b0/2458] core filter: Failed to create video converter 09-27 09:06:09.124 9177-9304/com.eona.videotestapp D/VLC: [df1036b0/2458] chain filter: Trying to use chroma RV24 as middle man 09-27 09:06:09.124 9177-9304/com.eona.videotestapp D/VLC: [df103930/2458] core filter: looking for video converter module matching "any": 16 candidates 09-27 09:06:09.124 9177-9304/com.eona.videotestapp E/VLC: [df103930/2458] chain filter: Too high level of recursion (3) 09-27 09:06:09.124 9177-9304/com.eona.videotestapp D/VLC: [df103930/2458] core filter: no video converter modules matched 09-27 09:06:09.125 9177-9304/com.eona.videotestapp E/VLC: [df1036b0/2458] core filter: Failed to create video converter 09-27 09:06:09.125 9177-9304/com.eona.videotestapp D/VLC: [df1036b0/2458] core filter: no video converter modules matched 09-27 09:06:09.125 9177-9304/com.eona.videotestapp E/VLC: [df103430/2458] core filter: Failed to create video converter 09-27 09:06:09.125 9177-9304/com.eona.videotestapp D/VLC: [df103430/2458] chain filter: Trying to use chroma RV24 as middle man 09-27 09:06:09.125 9177-9304/com.eona.videotestapp D/VLC: [df1036b0/2458] core filter: looking for video converter module matching "any": 16 candidates 09-27 09:06:09.125 9177-9304/com.eona.videotestapp D/VLC: [df1036b0/2458] chain filter: Trying to use chroma I420 as middle man 09-27 09:06:09.125 9177-9304/com.eona.videotestapp D/VLC: [df103930/2458] core filter: looking for video converter module matching "any": 16 candidates 09-27 09:06:09.125 9177-9304/com.eona.videotestapp E/VLC: [df103930/2458] chain filter: Too high level of recursion (3) 09-27 09:06:09.125 9177-9304/com.eona.videotestapp D/VLC: [df103930/2458] core filter: no video converter modules matched 09-27 09:06:09.125 9177-9304/com.eona.videotestapp E/VLC: [df1036b0/2458] core filter: Failed to create video converter 09-27 09:06:09.126 9177-9304/com.eona.videotestapp D/VLC: [df1036b0/2458] chain filter: Trying to use chroma I422 as middle man 09-27 09:06:09.126 9177-9304/com.eona.videotestapp D/VLC: [df103930/2458] core filter: looking for video converter module matching "any": 16 candidates 09-27 09:06:09.126 9177-9304/com.eona.videotestapp E/VLC: [df103930/2458] chain filter: Too high level of recursion (3) 09-27 09:06:09.126 9177-9304/com.eona.videotestapp D/VLC: [df103930/2458] core filter: no video converter modules matched 09-27 09:06:09.126 9177-9304/com.eona.videotestapp E/VLC: [df1036b0/2458] core filter: Failed to create video converter 09-27 09:06:09.126 9177-9304/com.eona.videotestapp D/VLC: [df1036b0/2458] chain filter: Trying to use chroma I0AL as middle man 09-27 09:06:09.127 9177-9304/com.eona.videotestapp D/VLC: [df103930/2458] core filter: looking for video converter module matching "any": 16 candidates 09-27 09:06:09.127 9177-9304/com.eona.videotestapp E/VLC: [df103930/2458] chain filter: Too high level of recursion (3) 09-27 09:06:09.127 9177-9304/com.eona.videotestapp D/VLC: [df103930/2458] core filter: no video converter modules matched 09-27 09:06:09.127 9177-9304/com.eona.videotestapp E/VLC: [df1036b0/2458] core filter: Failed to create video converter 09-27 09:06:09.127 9177-9304/com.eona.videotestapp D/VLC: [df1036b0/2458] chain filter: Trying to use chroma I0FL as middle man 09-27 09:06:09.127 9177-9304/com.eona.videotestapp D/VLC: [df103930/2458] core filter: looking for video converter module matching "any": 16 candidates 09-27 09:06:09.128 9177-9304/com.eona.videotestapp E/VLC: [df103930/2458] chain filter: Too high level of recursion (3) 09-27 09:06:09.128 9177-9304/com.eona.videotestapp D/VLC: [df103930/2458] core filter: no video converter modules matched 09-27 09:06:09.128 9177-9304/com.eona.videotestapp E/VLC: [df1036b0/2458] core filter: Failed to create video converter 09-27 09:06:09.128 9177-9304/com.eona.videotestapp D/VLC: [df1036b0/2458] chain filter: Trying to use chroma RV32 as middle man 09-27 09:06:09.128 9177-9304/com.eona.videotestapp D/VLC: [df103930/2458] core filter: looking for video converter module matching "any": 16 candidates 09-27 09:06:09.128 9177-9304/com.eona.videotestapp E/VLC: [df103930/2458] chain filter: Too high level of recursion (3) 09-27 09:06:09.129 9177-9304/com.eona.videotestapp D/VLC: [df103930/2458] core filter: no video converter modules matched 09-27 09:06:09.129 9177-9304/com.eona.videotestapp E/VLC: [df1036b0/2458] core filter: Failed to create video converter 09-27 09:06:09.129 9177-9304/com.eona.videotestapp D/VLC: [df1036b0/2458] core filter: no video converter modules matched 09-27 09:06:09.129 9177-9304/com.eona.videotestapp E/VLC: [df103430/2458] core filter: Failed to create video converter 09-27 09:06:09.129 9177-9304/com.eona.videotestapp D/VLC: [df103430/2458] core filter: no video filter modules matched 09-27 09:06:09.129 9177-9304/com.eona.videotestapp E/VLC: [f3cecf30/2458] core video output: Failed to create video filter 'deinterlace' 09-27 09:06:09.129 9177-9304/com.eona.videotestapp E/VLC: [f3cecf30/2458] core video output: Failed to add filter 'deinterlace'

Jean-Baptiste Kempf
Site Administrator
Site Administrator
Posts: 37523
Joined: 22 Jul 2005 15:29
VLC version: 4.0.0-git
Operating System: Linux, Windows, Mac
Location: Cone, France
Contact:

Re: Android: problems with deinterlacing

Postby Jean-Baptiste Kempf » 16 Oct 2017 06:00

You cut the interesting logs before :)
Jean-Baptiste Kempf
http://www.jbkempf.com/ - http://www.jbkempf.com/blog/category/Videolan
VLC media player developer, VideoLAN President and Sites administrator
If you want an answer to your question, just be specific and precise. Don't use Private Messages.

dikranh
New Cone
New Cone
Posts: 8
Joined: 20 Nov 2017 18:03

Re: Android: problems with deinterlacing

Postby dikranh » 20 Nov 2017 18:27

Hi,

First post... I am using Android + libvlc v 2.1.12 (compile 'de.mrmaffen:libvlc-android:2.1.12@aar') + AmLogic S905X + interlaced TS stream. I've used various permutations of:

args.add("--video-filter=deinterlace");
args.add("--deinterlace=1");
args.add("--deinterlace-mode=bob");
args.add("-vvv");
mLibVLC = new LibVLC(this, args);

With or without these options, the video remains interlaced on the Android device.

On my Windwos Desktop, the video is deinterlaced when I set Video->Deinterlace->(On). Automatic has no impact.

Jean-Baptiste Kempf
Site Administrator
Site Administrator
Posts: 37523
Joined: 22 Jul 2005 15:29
VLC version: 4.0.0-git
Operating System: Linux, Windows, Mac
Location: Cone, France
Contact:

Re: Android: problems with deinterlacing

Postby Jean-Baptiste Kempf » 24 Nov 2017 13:55

Give all the logs.
Jean-Baptiste Kempf
http://www.jbkempf.com/ - http://www.jbkempf.com/blog/category/Videolan
VLC media player developer, VideoLAN President and Sites administrator
If you want an answer to your question, just be specific and precise. Don't use Private Messages.

dikranh
New Cone
New Cone
Posts: 8
Joined: 20 Nov 2017 18:03

Re: Android: problems with deinterlacing

Postby dikranh » 26 Nov 2017 18:12

Long log. Fits in two posts...
1:2:51.274 9238-9238/? I/art: Late-enabling -Xcheck:jni
1:2:51.317 9238-9245/? E/art: Failed writing handshake bytes (-1 of 14): Broken pipe
1:2:51.317 9238-9245/? I/art: Debugger is no longer active
1:2:51.317 9238-9245/? I/art: Starting a blocking GC Instrumentation
1:2:51.504 9238-9238/? I/InstantRun: starting instant run server: is main process
1:2:51.618 9238-9238/? W/art: Before Android 4.1, method android.graphics.PorterDuffColorFilter android.support.graphics.drawable.VectorDrawableCompat.updateTintFilter(android.graphics.PorterDuffColorFilter, android.content.res.ColorStateList, android.graphics.PorterDuff$Mode) would have incorrectly overridden the package-private method in android.graphics.drawable.Drawable
1:2:51.853 9238-9238/? D/VLC: [00000074928f5550/6e697274535f676e] core libvlc: VLC media player - 3.0.0-git Vetinari
1:2:51.853 9238-9238/? D/VLC: [00000074928f5550/6e697274535f676e] core libvlc: Copyright © 1996-2017 the VideoLAN team
1:2:51.853 9238-9238/? D/VLC: [00000074928f5550/0] core libvlc: revision 2.2.0-git-13260-g236b4f3
1:2:51.853 9238-9238/? D/VLC: [00000074928f5550/74948a3048] core libvlc: configured with ../configure '--host=aarch64-linux-android' '--build=x86_64-unknown-linux' '--with-contrib=/media/Seagate_3TB/workspace/vlc-android-sdk/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-x
1:2:51.853 9238-9238/? D/VLC: [00000074928f5550/747992eef0] core libvlc: plug-ins loaded: 287 modules
1:2:51.853 9238-9238/? D/VLC: [00000074928f57d0/747992c560] core logger: looking for logger module matching "any": 4 candidates
1:2:51.853 9238-9238/? D/VLC: [00000074928f57d0/cf8d385a259b257e] core logger: using logger module "android_logger"
1:2:51.853 9238-9238/? D/VLC: [00000074928f5550/2416] core libvlc: translation test: code is "C"
1:2:51.853 9238-9238/? D/VLC: [00000074929e77b0/2416] core keystore: looking for keystore module matching "memory": 3 candidates
1:2:51.853 9238-9238/? D/VLC: [00000074929e77b0/2416] core keystore: using keystore module "memory"
1:2:51.853 9238-9238/? D/VLC: [00000074928f5550/2416] core libvlc: CPU has capabilities FPU
1:2:51.859 9238-9238/? D/VLC: [0000007488396510/2416] core generic: creating audio output
1:2:51.859 9238-9238/? D/VLC: [000000748829bb10/2416] core audio output: looking for audio output module matching "android_audiotrack": 4 candidates
1:2:51.860 9238-9238/? D/VLC: [000000748829bb10/2416] core audio output: using audio output module "android_audiotrack"
1:2:51.861 9238-9238/? D/VLC: [0000007488396510/2416] core generic: keeping audio output
1:2:51.881 9238-9238/? D/VLC: [000000748829bb10/2416] core audio output: restart requested (2)
1:2:51.881 9238-9238/? D/VLC: [000000748829bb10/2416] android_audiotrack audio output: selected device: encoded:32
1:2:51.881 9238-9238/? D/VLC: [000000748829bb10/2416] android_audiotrack audio output: device has a52 passthrough support
1:2:51.937 9238-9261/? I/OpenGLRenderer: Initialized EGL, version 1.4
1:2:51.937 9238-9261/? D/OpenGLRenderer: Swap behavior 1
1:2:51.960 9238-9238/? D/VLC: [000000747985c890/2416] core input: Creating an input for 'test'
1:2:51.961 9238-9265/? D/VLC: [000000747985c890/2431] core input: using timeshift granularity of 50 MiB
1:2:51.962 9238-9265/? D/VLC: [000000747985c890/2431] core input: using default timeshift path
1:2:51.962 9238-9265/? D/VLC: [000000747985c890/2431] core input: `http://1.2.3.4:8000/stream' gives access `http' demux `any' path `1.2.3.4:8000/test'
1:2:51.962 9238-9265/? D/VLC: [000000748ae346d0/2431] core input source: creating demux: access='http' demux='any' location='1.2.3.4:8000/test' file='(null)'
1:2:51.962 9238-9265/? D/VLC: [000000748ae34810/2431] core demux: looking for access_demux module matching "http": 6 candidates
1:2:51.963 9238-9265/? D/VLC: [000000748ae34810/2431] core demux: no access_demux modules matched
1:2:51.963 9238-9265/? D/VLC: [000000748ae32410/2431] core stream: creating access: http://1.2.3.4:8000/stream
1:2:51.963 9238-9265/? D/VLC: [000000748ae32410/2431] core stream: looking for access module matching "http": 22 candidates
1:2:51.964 9238-9265/? D/VLC: [000000748ae32410/2431] connmgr stream: resolving 1.2.3.4 ...
1:2:51.966 9238-9265/? D/VLC: [000000748ae32410/2431] connmgr stream: outgoing request:
GET /test HTTP/1.1
Host: 1.2.3.4:8000
Accept: */*
Accept-Language: en_US
User-Agent: VLC/3.0.0-git LibVLC/3.0.0-git
Range: bytes=0-
1:2:52.004 9238-9238/? W/art: Before Android 4.1, method int android.support.v7.widget.ListViewCompat.lookForSelectablePosition(int, boolean) would have incorrectly overridden the package-private method in android.widget.ListView
1:2:52.451 9238-9265/demo D/VLC: [000000748ae32410/2431] connmgr stream: incoming response:
HTTP/1.1 200 OK
Date: Mon Nov 27 05:20:01 AMT 2017
Last-modified: Mon Nov 27 05:20:01 AMT 2017
Content-Type: video/mpeg
Connection: Close
Server: StreamsCast Streaming Server
1:2:52.451 9238-9265/demo D/VLC: [000000748ae32410/2431] core stream: using access module "access"
1:2:52.451 9238-9265/demo D/VLC: [000000748ae32590/2431] core stream: looking for stream_filter module matching "prefetch,cache_block": 25 candidates
1:2:52.451 9238-9265/demo D/VLC: [000000748ae32590/2431] prefetch stream: using 16777216 bytes buffer, 16384 bytes read
1:2:52.451 9238-9265/demo D/VLC: [000000748ae32590/2431] core stream: using stream_filter module "prefetch"
1:2:52.451 9238-9265/demo D/VLC: [000000748ae32710/2431] core stream: looking for stream_filter module matching "any": 25 candidates
1:2:52.598 9238-9265/demo D/VLC: [000000748ae32710/2431] lua stream: Trying Lua scripts in /data/user/0/demo/app_vlc/.share/lua/playlist
1:2:52.598 9238-9265/demo D/VLC: [000000748ae32710/2431] lua stream: Trying Lua scripts in /system/usr/share/lua/playlist
1:2:52.598 9238-9265/demo D/VLC: [000000748ae32710/2431] core stream: no stream_filter modules matched
1:2:52.599 9238-9265/demo D/VLC: [000000748ae34810/2431] core stream_directory: looking for stream_directory module matching "any": 1 candidates
1:2:52.599 9238-9265/demo D/VLC: [000000748ae34810/2431] core stream_directory: no stream_directory modules matched
1:2:52.599 9238-9265/demo D/VLC: [000000748ae346d0/2431] core input source: attachment of directory-extractor failed for http://1.2.3.4:8000/stream
1:2:52.599 9238-9265/demo D/VLC: [000000748ae32710/2431] core stream: looking for stream_filter module matching "record": 25 candidates
1:2:52.599 9238-9265/demo D/VLC: [000000748ae32710/2431] core stream: using stream_filter module "record"
1:2:52.599 9238-9265/demo D/VLC: [000000748ae346d0/2431] core input source: creating demux: access='http' demux='any' location='1.2.3.4:8000/test' file='(null)'
1:2:52.599 9238-9265/demo D/VLC: [000000748ae34810/2431] core demux: looking for demux module matching "any": 45 candidates
1:2:52.602 9238-9265/demo D/VLC: [000000748ae45690/2431] core xml reader: looking for xml reader module matching "any": 1 candidates
1:2:52.604 9238-9265/demo D/VLC: [000000748ae45690/2431] core xml reader: using xml reader module "xml"
1:2:52.604 9238-9265/demo D/VLC: [000000748ae34810/2431] ts demux: Standard set to Auto
1:2:52.604 9238-9265/demo D/VLC: [000000748ae34810/2431] core demux: using demux module "ts"
1:2:52.605 9238-9265/demo D/VLC: [000000748ae34810/2431] ts demux: DEMUX_SET_GROUP 0 0x0
1:2:52.605 9238-9265/demo D/VLC: [000000748ae8f090/2431] core demux meta: looking for meta reader module matching "any": 2 candidates
1:2:52.605 9238-9265/demo D/VLC: [000000748ae8f090/2431] lua demux meta: Trying Lua scripts in /data/user/0/demo/app_vlc/.share/lua/meta/reader
1:2:52.605 9238-9265/demo D/VLC: [000000748ae8f090/2431] lua demux meta: Trying Lua scripts in /system/usr/share/lua/meta/reader
1:2:52.605 9238-9265/demo D/VLC: [000000748ae8f090/2431] core demux meta: no meta reader modules matched
1:2:52.605 9238-9265/demo D/VLC: [000000747985c890/2431] core input: `http://1.2.3.4:8000/stream' successfully opened
1:2:52.605 9238-9265/demo D/VLC: [000000748ae34810/2431] ts demux: pid[69] unknown
1:2:52.605 9238-9265/demo D/VLC: [000000748ae34810/2431] ts demux: first packet for pid=69 cc=0xd
1:2:52.605 9238-9265/demo D/VLC: [000000748ae34810/2431] ts demux: pid[68] unknown
1:2:52.605 9238-9265/demo D/VLC: [000000748ae34810/2431] ts demux: first packet for pid=68 cc=0x1
1:2:52.605 9238-9265/demo D/VLC: [000000748ae34810/2431] ts demux: first packet for pid=0 cc=0x3
1:2:52.605 9238-9265/demo D/VLC: [000000748ae34810/2431] ts demux: PATCallBack called
1:2:52.605 9238-9265/demo D/VLC: [000000748ae34810/2431] ts demux: new PAT ts_id=46897 version=8 current_next=1
1:2:52.605 9238-9265/demo D/VLC: [000000748ae34810/2431] ts demux: * number=1 pid=66
1:2:52.605 9238-9265/demo D/VLC: [000000748ae34810/2431] ts demux: temporary receiving program 1
1:2:52.605 9238-9265/demo D/VLC: [000000748ae34810/2431] ts demux: first packet for pid=66 cc=0x3
1:2:52.605 9238-9265/demo D/VLC: [000000748ae34810/2431] ts demux: PMTCallBack called for program 1
1:2:52.606 9238-9265/demo D/VLC: [000000748ae34810/2431] ts demux: new PMT program number=1 version=28 pid_pcr=69
1:2:52.606 9238-9265/demo D/VLC: [000000748ae34810/2431] ts demux: * pid=68 type=0xf ISO/IEC 13818-7 Audio with ADTS transport
1:2:52.606 9238-9265/demo D/VLC: [000000748ae34810/2431] ts demux: - ES descriptor tag 0xa
1:2:52.606 9238-9265/demo D/VLC: [000000748ae34810/2431] ts demux: - SL/FMC descriptor not found/matched
1:2:52.606 9238-9265/demo D/VLC: [000000748ae34810/2431] ts demux: found language: eng
1:2:52.606 9238-9265/demo D/VLC: [000000748ae34810/2431] ts demux: => pid 68 has now es fcc=mp4a
1:2:52.606 9238-9265/demo D/VLC: [000000747985c890/2431] core input: selecting program id=1
1:2:52.606 9238-9265/demo D/VLC: [000000748aee2410/2431] core packetizer: looking for packetizer module matching "any": 24 candidates
1:2:52.606 9238-9265/demo D/VLC: [000000748aee2410/2431] mpeg4audio packetizer: running MPEG4 audio packetizer
1:2:52.606 9238-9265/demo D/VLC: [000000748aee2410/2431] mpeg4audio packetizer: ADTS Mode
1:2:52.606 9238-9265/demo D/VLC: [000000748aee2410/2431] core packetizer: using packetizer module "mpeg4audio"
1:2:52.606 9238-9265/demo D/VLC: [000000748aee2090/2431] core decoder: looking for audio decoder module matching "mediacodec_ndk,all": 17 candidates
1:2:52.606 9238-9265/demo D/VLC: [000000748aee2090/2431] avcodec decoder: using ffmpeg Lavc57.92.100
1:2:52.606 9238-9265/demo D/VLC: [000000748aee2090/2431] avcodec decoder: CPU flags: 0x00000068
1:2:52.626 9238-9265/demo D/VLC: [000000748aee2090/2431] avcodec decoder: codec (aac) started
1:2:52.626 9238-9265/demo D/VLC: [000000748aee2090/2431] core decoder: using audio decoder module "avcodec"
1:2:52.627 9238-9265/demo D/VLC: [000000748ae34810/2431] ts demux: Default program is 1
1:2:52.627 9238-9265/demo D/VLC: [000000748ae34810/2431] ts demux: * pid=69 type=0x1b AVC video stream as defined in ITU-T Rec. H.264
1:2:52.627 9238-9265/demo D/VLC: [000000748ae34810/2431] ts demux: - ES descriptor tag 0xa
1:2:52.627 9238-9265/demo D/VLC: [000000748ae34810/2431] ts demux: => pid 69 has now es fcc=h264
1:2:52.627 9238-9265/demo D/VLC: [000000748aee2b10/2431] core packetizer: looking for packetizer module matching "any": 24 candidates
1:2:52.627 9238-9265/demo D/VLC: [000000748aee2b10/2431] core packetizer: using packetizer module "h264"
1:2:52.627 9238-9265/demo D/VLC: [000000748aee2790/2431] core decoder: looking for video decoder module matching "mediacodec_ndk,all": 11 candidates
1:2:52.627 9238-9265/demo D/VLC: [000000748aee2790/2431] avcodec decoder: using ffmpeg Lavc57.92.100
1:2:52.627 9238-9265/demo D/VLC: [000000748aee2790/2431] avcodec decoder: CPU flags: 0x00000068
1:2:52.628 9238-9265/demo D/VLC: [000000748aee2790/2431] avcodec decoder: allowing 4 thread(s) for decoding
1:2:52.630 9238-9265/demo D/VLC: [000000748aee2790/2431] avcodec decoder: codec (h264) started
1:2:52.630 9238-9265/demo D/VLC: [000000748aee2790/2431] avcodec decoder: using frame thread mode with 4 threads
1:2:52.630 9238-9265/demo D/VLC: [000000748aee2790/2431] core decoder: using video decoder module "avcodec"
1:2:52.630 9238-9265/demo D/VLC: [000000748ae34810/2431] ts demux: * pid=17 listening for SDT
1:2:52.630 9238-9265/demo D/VLC: [000000748ae34810/2431] ts demux: enabling pid 68 from program 1
1:2:52.630 9238-9265/demo D/VLC: [000000748ae34810/2431] ts demux: enabling pid 69 from program 1
1:2:52.630 9238-9265/demo D/VLC: [000000748ae34810/2431] ts demux: enabling pcr pid 69 from program 1
1:2:52.630 9238-9265/demo D/VLC: [000000748ae34810/2431] ts demux: first packet for pid=69 cc=0x1
1:2:52.631 9238-9265/demo D/VLC: [000000748ae34810/2431] ts demux: first packet for pid=68 cc=0xe
1:2:52.631 9238-9265/demo D/VLC: [000000747985c890/2431] core input: Buffering 0%
1:2:52.844 9238-9269/demo I/VLC: [000000748aee2410/2435] mpeg4audio packetizer: AAC channels: 2 samplerate: 48000
1:2:52.844 9238-9269/demo D/VLC: [000000748aee2090/2435] core decoder: restarting module due to input format change
1:2:52.844 9238-9269/demo D/VLC: [000000748aee2090/2435] core decoder: removing module "avcodec"
1:2:52.844 9238-9265/demo D/VLC: [000000747985c890/2431] core input: Buffering 4%
1:2:52.844 9238-9269/demo D/VLC: [000000748aee2090/2435] core decoder: looking for audio decoder module matching "mediacodec_ndk,all": 17 candidates
1:2:52.844 9238-9269/demo D/VLC: [000000748aee2090/2435] avcodec decoder: using ffmpeg Lavc57.92.100
1:2:52.844 9238-9269/demo D/VLC: [000000748aee2090/2435] avcodec decoder: CPU flags: 0x00000068
1:2:52.845 9238-9269/demo D/VLC: [000000748aee2090/2435] avcodec decoder: codec (aac) started
1:2:52.845 9238-9269/demo D/VLC: [000000748aee2090/2435] core decoder: using audio decoder module "avcodec"
1:2:52.846 9238-9269/demo D/VLC: [0000007488396510/2435] core generic: reusing audio output
1:2:52.846 9238-9269/demo D/VLC: [000000748829bb10/2435] core audio output: VLC is looking for: 'f32l' 48000 Hz Stereo frame=1 samples/8 bytes
1:2:52.846 9238-9274/demo W/VLC: [000000748aee2b10/243a] h264 packetizer: waiting for SPS/PPS
1:2:52.846 9238-9274/demo W/VLC: [000000748aee2b10/243a] h264 packetizer: waiting for SPS/PPS
1:2:52.847 9238-9274/demo W/VLC: [000000748aee2b10/243a] h264 packetizer: waiting for SPS/PPS
1:2:52.848 9238-9265/demo D/VLC: [000000747985c890/2431] core input: Buffering 9%
1:2:52.849 9238-9274/demo W/VLC: [000000748aee2b10/243a] h264 packetizer: waiting for SPS/PPS
1:2:52.849 9238-9274/demo W/VLC: [000000748aee2b10/243a] h264 packetizer: waiting for SPS/PPS
1:2:52.858 9238-9269/demo D/AudioTrack: Client defaulted notificationFrames to 4104 for frameCount 8208
1:2:52.864 9238-9269/demo D/VLC: [000000748829bb10/2435] android_audiotrack audio output: using WRITE_BYTEARRAYV23
1:2:52.865 9238-9269/demo D/VLC: [000000748829bb10/2435] core audio output: VLC will output: 's16l' 48000 Hz Stereo frame=1 samples/4 bytes
1:2:52.865 9238-9269/demo D/VLC: [000000748829bb10/2435] core audio output: output 's16l' 48000 Hz Stereo frame=1 samples/4 bytes
1:2:52.865 9238-9269/demo D/VLC: [0000007476b18e90/2435] core volume: looking for audio volume module matching "any": 2 candidates
1:2:52.865 9238-9269/demo D/VLC: [0000007476b18e90/2435] core volume: using audio volume module "integer_mixer"
1:2:52.865 9238-9269/demo D/VLC: [000000748829bb10/2435] core audio output: input 'f32l' 48000 Hz Stereo frame=1 samples/8 bytes
1:2:52.865 9238-9269/demo D/VLC: [0000007492953610/2435] core audio filter: looking for audio filter module matching "scaletempo": 13 candidates
1:2:52.865 9238-9269/demo D/VLC: [0000007492953610/2435] scaletempo audio filter: format: 48000 rate, 2 nch, 4 bps, fl32
1:2:52.866 9238-9269/demo D/VLC: [0000007492953610/2435] scaletempo audio filter: params: 30 stride, 0.200 overlap, 14 search
1:2:52.866 9238-9269/demo D/VLC: [0000007492953610/2435] scaletempo audio filter: 1.000 scale, 1440.000 stride_in, 1440 stride_out, 1152 standing, 288 overlap, 672 search, 2400 queue, fl32 mode
1:2:52.866 9238-9269/demo D/VLC: [0000007492953610/2435] core audio filter: using audio filter module "scaletempo"
1:2:52.866 9238-9269/demo D/VLC: [000000748829bb10/2435] core audio output: conversion: 'f32l'->'f32l' 48000 Hz->48000 Hz Stereo->Stereo
1:2:52.866 9238-9269/demo D/VLC: [000000748829bb10/2435] core audio output: conversion pipeline complete
1:2:52.866 9238-9269/demo D/VLC: [000000748829bb10/2435] core audio output: conversion: 'f32l'->'s16l' 48000 Hz->48000 Hz Stereo->Stereo
1:2:52.866 9238-9269/demo D/VLC: [0000007492953990/2435] core audio converter: looking for audio converter module matching "any": 7 candidates
1:2:52.866 9238-9269/demo D/VLC: [0000007492953990/2435] audio_format audio converter: f32l->s16l, bits per sample: 32->16
1:2:52.866 9238-9269/demo D/VLC: [0000007492953990/2435] core audio converter: using audio converter module "audio_format"
1:2:52.866 9238-9269/demo D/VLC: [000000748829bb10/2435] core audio output: conversion pipeline complete
1:2:52.866 9238-9269/demo D/VLC: [0000007492953d10/2435] core audio resampler: looking for audio resampler module matching "any": 2 candidates
1:2:52.866 9238-9269/demo D/VLC: [0000007492953d10/2435] core audio resampler: using audio resampler module "ugly"
1:2:52.932 9238-9274/demo W/VLC: [000000748aee2b10/243a] h264 packetizer: waiting for SPS/PPS
1:2:52.932 9238-9274/demo W/VLC: [000000748aee2b10/243a] h264 packetizer: waiting for SPS/PPS
1:2:52.935 9238-9265/demo D/VLC: [000000747985c890/2431] core input: Buffering 14%
1:2:53.091 9238-9265/demo D/VLC: [000000747985c890/2431] core input: Buffering 19%
1:2:53.093 9238-9274/demo W/VLC: [000000748aee2b10/243a] h264 packetizer: waiting for SPS/PPS
1:2:53.094 9238-9265/demo D/VLC: [000000747985c890/2431] core input: Buffering 24%
1:2:53.094 9238-9274/demo W/VLC: [000000748aee2b10/243a] h264 packetizer: waiting for SPS/PPS
1:2:53.096 9238-9274/demo W/VLC: [000000748aee2b10/243a] h264 packetizer: waiting for SPS/PPS
1:2:53.096 9238-9274/demo W/VLC: [000000748aee2b10/243a] h264 packetizer: waiting for SPS/PPS
1:2:53.107 9238-9265/demo D/VLC: [000000747985c890/2431] core input: Buffering 28%
1:2:53.338 9238-9265/demo D/VLC: [000000747985c890/2431] core input: Buffering 33%
1:2:53.339 9238-9274/demo W/VLC: [000000748aee2b10/243a] h264 packetizer: waiting for SPS/PPS
1:2:53.339 9238-9274/demo W/VLC: [000000748aee2b10/243a] h264 packetizer: waiting for SPS/PPS
1:2:53.339 9238-9265/demo D/VLC: [000000747985c890/2431] core input: Buffering 38%
1:2:53.339 9238-9274/demo W/VLC: [000000748aee2b10/243a] h264 packetizer: waiting for SPS/PPS
1:2:53.342 9238-9274/demo W/VLC: [000000748aee2b10/243a] h264 packetizer: waiting for SPS/PPS
1:2:53.342 9238-9274/demo W/VLC: [000000748aee2b10/243a] h264 packetizer: waiting for SPS/PPS
1:2:53.359 9238-9265/demo D/VLC: [000000747985c890/2431] core input: Buffering 42%
1:2:53.581 9238-9265/demo D/VLC: [000000747985c890/2431] core input: Buffering 47%
1:2:53.584 9238-9274/demo W/VLC: [000000748aee2b10/243a] h264 packetizer: waiting for SPS/PPS
1:2:53.585 9238-9274/demo D/VLC: [000000748aee2b10/243a] h264 packetizer: found NAL_SPS (sps_id=0)
1:2:53.585 9238-9274/demo D/VLC: [000000748aee2b10/243a] h264 packetizer: found NAL_PPS (pps_id=0 sps_id=0)
1:2:53.594 9238-9274/demo D/VLC: [000000748aee2790/243a] core decoder: restarting module due to input format change
1:2:53.595 9238-9265/demo D/VLC: [000000747985c890/2431] core input: Buffering 52%
1:2:53.595 9238-9274/demo D/VLC: [000000748aee2790/243a] core decoder: removing module "avcodec"
1:2:53.595 9238-9265/demo D/VLC: [000000747985c890/2431] core input: Buffering 57%
1:2:53.596 9238-9274/demo D/VLC: [000000748aee2790/243a] core decoder: looking for video decoder module matching "mediacodec_ndk,all": 11 candidates
1:2:53.602 9238-9265/demo D/VLC: [000000747985c890/2431] core input: Buffering 62%
1:2:53.604 9238-9265/demo D/VLC: [000000747985c890/2431] core input: Buffering 67%
1:2:53.607 9238-9265/demo D/VLC: [000000747985c890/2431] core input: Buffering 71%
1:2:53.629 9238-9274/demo W/VideoCapabilities: Unrecognized profile/level 1/32 for video/mp4v-es
1:2:53.629 9238-9274/demo I/VideoCapabilities: Unsupported profile 2 for video/mp4v-es
1:2:53.629 9238-9274/demo I/VideoCapabilities: Unsupported profile 2 for video/mp4v-es
1:2:53.629 9238-9274/demo I/VideoCapabilities: Unsupported profile 2 for video/mp4v-es
1:2:53.629 9238-9274/demo I/VideoCapabilities: Unsupported profile 2 for video/mp4v-es
1:2:53.629 9238-9274/demo I/VideoCapabilities: Unsupported profile 2 for video/mp4v-es
1:2:53.629 9238-9274/demo I/VideoCapabilities: Unsupported profile 2 for video/mp4v-es
1:2:53.629 9238-9274/demo I/VideoCapabilities: Unsupported profile 2 for video/mp4v-es
1:2:53.629 9238-9274/demo I/VideoCapabilities: Unsupported profile 2 for video/mp4v-es
1:2:53.629 9238-9274/demo I/VideoCapabilities: Unsupported profile 4 for video/mp4v-es
1:2:53.629 9238-9274/demo I/VideoCapabilities: Unsupported profile 4 for video/mp4v-es
1:2:53.629 9238-9274/demo I/VideoCapabilities: Unsupported profile 4 for video/mp4v-es
1:2:53.629 9238-9274/demo I/VideoCapabilities: Unsupported profile 4 for video/mp4v-es
1:2:53.629 9238-9274/demo I/VideoCapabilities: Unsupported profile 4 for video/mp4v-es
1:2:53.629 9238-9274/demo I/VideoCapabilities: Unsupported profile 4 for video/mp4v-es
1:2:53.629 9238-9274/demo I/VideoCapabilities: Unsupported profile 4 for video/mp4v-es
1:2:53.629 9238-9274/demo I/VideoCapabilities: Unsupported profile 4 for video/mp4v-es
1:2:53.629 9238-9274/demo I/VideoCapabilities: Unsupported profile 8 for video/mp4v-es
1:2:53.629 9238-9274/demo I/VideoCapabilities: Unsupported profile 8 for video/mp4v-es
1:2:53.629 9238-9274/demo I/VideoCapabilities: Unsupported profile 8 for video/mp4v-es
1:2:53.629 9238-9274/demo I/VideoCapabilities: Unsupported profile 8 for video/mp4v-es
1:2:53.629 9238-9274/demo I/VideoCapabilities: Unsupported profile 8 for video/mp4v-es
1:2:53.629 9238-9274/demo I/VideoCapabilities: Unsupported profile 8 for video/mp4v-es
1:2:53.629 9238-9274/demo I/VideoCapabilities: Unsupported profile 8 for video/mp4v-es
1:2:53.629 9238-9274/demo I/VideoCapabilities: Unsupported profile 8 for video/mp4v-es
1:2:53.629 9238-9274/demo I/VideoCapabilities: Unsupported profile 16 for video/mp4v-es
1:2:53.629 9238-9274/demo I/VideoCapabilities: Unsupported profile 16 for video/mp4v-es
1:2:53.629 9238-9274/demo I/VideoCapabilities: Unsupported profile 16 for video/mp4v-es
1:2:53.629 9238-9274/demo I/VideoCapabilities: Unsupported profile 16 for video/mp4v-es
1:2:53.629 9238-9274/demo I/VideoCapabilities: Unsupported profile 16 for video/mp4v-es
1:2:53.629 9238-9274/demo I/VideoCapabilities: Unsupported profile 16 for video/mp4v-es
1:2:53.629 9238-9274/demo I/VideoCapabilities: Unsupported profile 16 for video/mp4v-es
1:2:53.629 9238-9274/demo I/VideoCapabilities: Unsupported profile 16 for video/mp4v-es
1:2:53.629 9238-9274/demo I/VideoCapabilities: Unsupported profile 32 for video/mp4v-es
1:2:53.629 9238-9274/demo I/VideoCapabilities: Unsupported profile 32 for video/mp4v-es
1:2:53.629 9238-9274/demo I/VideoCapabilities: Unsupported profile 32 for video/mp4v-es
1:2:53.629 9238-9274/demo I/VideoCapabilities: Unsupported profile 32 for video/mp4v-es
1:2:53.629 9238-9274/demo I/VideoCapabilities: Unsupported profile 32 for video/mp4v-es
1:2:53.629 9238-9274/demo I/VideoCapabilities: Unsupported profile 32 for video/mp4v-es
1:2:53.629 9238-9274/demo I/VideoCapabilities: Unsupported profile 32 for video/mp4v-es
1:2:53.629 9238-9274/demo I/VideoCapabilities: Unsupported profile 32 for video/mp4v-es
1:2:53.629 9238-9274/demo I/VideoCapabilities: Unsupported profile 64 for video/mp4v-es
1:2:53.629 9238-9274/demo I/VideoCapabilities: Unsupported profile 64 for video/mp4v-es
1:2:53.629 9238-9274/demo I/VideoCapabilities: Unsupported profile 64 for video/mp4v-es
1:2:53.629 9238-9274/demo I/VideoCapabilities: Unsupported profile 64 for video/mp4v-es
1:2:53.629 9238-9274/demo I/VideoCapabilities: Unsupported profile 64 for video/mp4v-es
1:2:53.630 9238-9274/demo I/VideoCapabilities: Unsupported profile 64 for video/mp4v-es
1:2:53.630 9238-9274/demo I/VideoCapabilities: Unsupported profile 64 for video/mp4v-es
1:2:53.630 9238-9274/demo I/VideoCapabilities: Unsupported profile 64 for video/mp4v-es
1:2:53.630 9238-9274/demo I/VideoCapabilities: Unsupported profile 128 for video/mp4v-es
1:2:53.630 9238-9274/demo I/VideoCapabilities: Unsupported profile 128 for video/mp4v-es
1:2:53.630 9238-9274/demo I/VideoCapabilities: Unsupported profile 128 for video/mp4v-es
1:2:53.630 9238-9274/demo I/VideoCapabilities: Unsupported profile 128 for video/mp4v-es
1:2:53.630 9238-9274/demo I/VideoCapabilities: Unsupported profile 128 for video/mp4v-es
1:2:53.630 9238-9274/demo I/VideoCapabilities: Unsupported profile 128 for video/mp4v-es
1:2:53.630 9238-9274/demo I/VideoCapabilities: Unsupported profile 128 for video/mp4v-es
1:2:53.630 9238-9274/demo I/VideoCapabilities: Unsupported profile 128 for video/mp4v-es
1:2:53.630 9238-9274/demo I/VideoCapabilities: Unsupported profile 256 for video/mp4v-es
1:2:53.638 9238-9274/demo W/VideoCapabilities: Unrecognized profile/level 0/0 for video/mpeg2
1:2:53.638 9238-9274/demo W/VideoCapabilities: Unrecognized profile/level 0/2 for video/mpeg2
1:2:53.638 9238-9274/demo W/VideoCapabilities: Unrecognized profile/level 0/3 for video/mpeg2
1:2:53.638 9238-9274/demo I/VideoCapabilities: Unsupported profile 2 for video/mpeg2
1:2:53.638 9238-9274/demo I/VideoCapabilities: Unsupported profile 2 for video/mpeg2
1:2:53.638 9238-9274/demo I/VideoCapabilities: Unsupported profile 2 for video/mpeg2
1:2:53.638 9238-9274/demo I/VideoCapabilities: Unsupported profile 2 for video/mpeg2
1:2:53.638 9238-9274/demo I/VideoCapabilities: Unsupported profile 3 for video/mpeg2
1:2:53.638 9238-9274/demo I/VideoCapabilities: Unsupported profile 3 for video/mpeg2
1:2:53.638 9238-9274/demo I/VideoCapabilities: Unsupported profile 3 for video/mpeg2
1:2:53.638 9238-9274/demo I/VideoCapabilities: Unsupported profile 3 for video/mpeg2
1:2:53.638 9238-9274/demo I/VideoCapabilities: Unsupported profile 4 for video/mpeg2
1:2:53.638 9238-9274/demo I/VideoCapabilities: Unsupported profile 4 for video/mpeg2
1:2:53.638 9238-9274/demo I/VideoCapabilities: Unsupported profile 4 for video/mpeg2
1:2:53.638 9238-9274/demo I/VideoCapabilities: Unsupported profile 4 for video/mpeg2
1:2:53.638 9238-9274/demo I/VideoCapabilities: Unsupported profile 5 for video/mpeg2
1:2:53.638 9238-9274/demo I/VideoCapabilities: Unsupported profile 5 for video/mpeg2
1:2:53.638 9238-9274/demo I/VideoCapabilities: Unsupported profile 5 for video/mpeg2
1:2:53.638 9238-9274/demo I/VideoCapabilities: Unsupported profile 5 for video/mpeg2
1:2:53.641 9238-9274/demo W/VideoCapabilities: Unsupported mime video/vc1
1:2:53.641 9238-9274/demo W/Utils: could not parse long range '1-'
1:2:53.644 9238-9274/demo W/VideoCapabilities: Unsupported mime video/wvc1
1:2:53.644 9238-9274/demo W/Utils: could not parse long range '1-'
1:2:53.647 9238-9274/demo W/VideoCapabilities: Unsupported mime video/wmv3
1:2:53.649 9238-9274/demo W/VideoCapabilities: Unsupported mime video/x-ms-wmv
1:2:53.652 9238-9274/demo W/VideoCapabilities: Unsupported mime video/mjpeg
1:2:53.663 9238-9274/demo W/AudioCapabilities: Unsupported mime audio/aac-adif
1:2:53.664 9238-9274/demo W/AudioCapabilities: Unsupported mime audio/aac-latm
1:2:53.665 9238-9274/demo W/AudioCapabilities: Unsupported mime audio/adts
1:2:53.670 9238-9274/demo W/AudioCapabilities: Unsupported mime audio/wma
1:2:53.671 9238-9274/demo W/AudioCapabilities: Unsupported mime audio/wmapro
1:2:53.672 9238-9274/demo W/AudioCapabilities: Unsupported mime audio/truehd
1:2:53.674 9238-9274/demo W/AudioCapabilities: Unsupported mime audio/ffmpeg
1:2:53.677 9238-9274/demo W/AudioCapabilities: Unsupported mime audio/ac3
1:2:53.678 9238-9274/demo W/AudioCapabilities: Unsupported mime audio/eac3
1:2:53.680 9238-9274/demo W/AudioCapabilities: Unsupported mime audio/dtshd
1:2:53.681 9238-9274/demo W/AudioCapabilities: Unsupported mime audio/mpeg-L2
1:2:53.691 9238-9274/demo W/VideoCapabilities: Unrecognized level 16 for video/x-vnd.on2.vp8
1:2:53.691 9238-9274/demo W/VideoCapabilities: Unrecognized level 32 for video/x-vnd.on2.vp8
1:2:53.691 9238-9274/demo W/VideoCapabilities: Unrecognized level 64 for video/x-vnd.on2.vp8
1:2:53.691 9238-9274/demo W/VideoCapabilities: Unrecognized level 128 for video/x-vnd.on2.vp8
1:2:53.691 9238-9274/demo W/VideoCapabilities: Unrecognized level 256 for video/x-vnd.on2.vp8
1:2:53.691 9238-9274/demo W/VideoCapabilities: Unrecognized level 512 for video/x-vnd.on2.vp8
1:2:53.691 9238-9274/demo W/VideoCapabilities: Unrecognized level 1024 for video/x-vnd.on2.vp8
1:2:53.691 9238-9274/demo W/VideoCapabilities: Unrecognized level 2048 for video/x-vnd.on2.vp8
1:2:53.692 9238-9274/demo W/VideoCapabilities: Unrecognized level 4096 for video/x-vnd.on2.vp8
1:2:53.692 9238-9274/demo W/VideoCapabilities: Unrecognized level 8192 for video/x-vnd.on2.vp8
1:2:53.692 9238-9274/demo W/VideoCapabilities: Unrecognized level 16384 for video/x-vnd.on2.vp8
1:2:53.692 9238-9274/demo W/VideoCapabilities: Unrecognized level 32768 for video/x-vnd.on2.vp8
1:2:53.697 9238-9274/demo W/VideoCapabilities: Unsupported mime video/x-vnd.on2.vp6
1:2:53.700 9238-9274/demo W/VideoCapabilities: Unsupported mime video/x-vnd.on2.vp6a
1:2:53.702 9238-9274/demo W/VideoCapabilities: Unsupported mime video/x-vnd.on2.vp6f
1:2:53.705 9238-9274/demo W/VideoCapabilities: Unsupported mime video/rm10
1:2:53.708 9238-9274/demo W/VideoCapabilities: Unsupported mime video/rm20
1:2:53.710 9238-9274/demo W/VideoCapabilities: Unsupported mime video/rm40
1:2:53.713 9238-9274/demo W/VideoCapabilities: Unsupported mime video/wmv2
1:2:53.715 9238-9274/demo W/VideoCapabilities: Unsupported mime video/wmv1
1:2:53.726 9238-9274/demo I/VideoCapabilities: Unsupported profile 4 for video/mp4v-es
1:2:53.733 9238-9274/demo W/VLC: [000000748aee2790/243a] mediacodec decoder: Exception occurred in MediaCodecInfo.getCapabilitiesForType
1:2:53.735 9238-9274/demo D/VLC: [000000748aee2790/243a] mediacodec decoder: Number of profile levels: 48
1:2:53.735 9238-9274/demo D/VLC: [000000748aee2790/243a] mediacodec decoder: using OMX.amlogic.avc.decoder.awesome
1:2:53.735 9238-9274/demo D/VLC: [000000748aee2e90/243a] core spu text: looking for text renderer module matching "any": 1 candidates
1:2:53.735 9238-9274/demo D/VLC: [000000747383be10/243a] core stream: creating access: file:///system/etc/system_fonts.xml
1:2:53.735 9238-9274/demo D/VLC: [000000747383be10/243a] core stream: (path: /system/etc/system_fonts.xml)
1:2:53.735 9238-9274/demo D/VLC: [000000747383be10/243a] core stream: looking for access module matching "file": 22 candidates
1:2:53.735 9238-9274/demo E/VLC: [000000747383be10/243a] filesystem stream: cannot open file /system/etc/system_fonts.xml (No such file or directory)
1:2:53.735 9238-9274/demo E/VLC: [000000747383be10/243a] core stream: File reading failed
1:2:53.735 9238-9274/demo E/VLC: [000000747383be10/243a] core stream: VLC could not open the file "/system/etc/system_fonts.xml" (No such file or directory).
1:2:53.736 9238-9274/demo D/VLC: [000000747383be10/243a] core stream: no access modules matched
1:2:53.736 9238-9274/demo E/VLC: [000000748aee2e90/243a] core spu text: no suitable access module for `file:///system/etc/system_fonts.xml'
1:2:53.736 9238-9274/demo D/VLC: [000000747383be10/243a] core stream: creating access: file:///system/etc/fallback_fonts.xml
1:2:53.736 9238-9274/demo D/VLC: [000000747383be10/243a] core stream: (path: /system/etc/fallback_fonts.xml)
1:2:53.736 9238-9274/demo D/VLC: [000000747383be10/243a] core stream: looking for access module matching "file": 22 candidates
1:2:53.736 9238-9274/demo E/VLC: [000000747383be10/243a] filesystem stream: cannot open file /system/etc/fallback_fonts.xml (No such file or directory)
1:2:53.736 9238-9274/demo E/VLC: [000000747383be10/243a] core stream: File reading failed
1:2:53.736 9238-9274/demo E/VLC: [000000747383be10/243a] core stream: VLC could not open the file "/system/etc/fallback_fonts.xml" (No such file or directory).
1:2:53.736 9238-9274/demo D/VLC: [000000747383be10/243a] core stream: no access modules matched
1:2:53.736 9238-9274/demo E/VLC: [000000748aee2e90/243a] core spu text: no suitable access module for `file:///system/etc/fallback_fonts.xml'
1:2:53.736 9238-9274/demo D/VLC: [000000747383be10/243a] core stream: creating access: file:///vendor/etc/fallback_fonts.xml
1:2:53.736 9238-9274/demo D/VLC: [000000747383be10/243a] core stream: (path: /vendor/etc/fallback_fonts.xml)
1:2:53.736 9238-9274/demo D/VLC: [000000747383be10/243a] core stream: looking for access module matching "file": 22 candidates
1:2:53.736 9238-9274/demo E/VLC: [000000747383be10/243a] filesystem stream: cannot open file /vendor/etc/fallback_fonts.xml (No such file or directory)
1:2:53.736 9238-9274/demo E/VLC: [000000747383be10/243a] core stream: File reading failed
1:2:53.736 9238-9274/demo E/VLC: [000000747383be10/243a] core stream: VLC could not open the file "/vendor/etc/fallback_fonts.xml" (No such file or directory).
1:2:53.736 9238-9274/demo D/VLC: [000000747383be10/243a] core stream: no access modules matched
1:2:53.736 9238-9274/demo E/VLC: [000000748aee2e90/243a] core spu text: no suitable access module for `file:///vendor/etc/fallback_fonts.xml'
1:2:53.736 9238-9274/demo D/VLC: [000000748aee2e90/243a] core spu text: using text renderer module "freetype"
1:2:53.736 9238-9274/demo D/VLC: [000000748aee3210/243a] core scale: looking for video converter module matching "any": 14 candidates
1:2:53.737 9238-9274/demo D/VLC: [000000748aee3210/243a] swscale scale: 32x32 (32x32) chroma: YUVA -> 16x16 (16x16) chroma: RGBA with scaling using Bicubic (good quality)
1:2:53.737 9238-9274/demo D/VLC: [000000748aee3210/243a] core scale: using video converter module "swscale"
1:2:53.737 9238-9274/demo D/VLC: [000000748aee3590/243a] core scale: looking for video converter module matching "any": 14 candidates
1:2:53.737 9238-9274/demo D/VLC: [000000748aee3590/243a] yuvp scale: YUVP to YUVA converter
1:2:53.737 9238-9274/demo D/VLC: [000000748aee3590/243a] core scale: using video converter module "yuvp"
1:2:53.737 9238-9274/demo D/VLC: [000000748ae9b590/243a] core video output: Deinterlacing available
1:2:53.738 9238-9274/demo D/VLC: [000000748ae9b590/243a] core video output: deinterlace 1, mode blend, is_needed 0
1:2:53.738 9238-9274/demo D/VLC: [000000748afc2850/243a] core window: looking for vout window module matching "any": 1 candidates
1:2:53.738 9238-9274/demo D/VLC: [000000748afc2850/243a] android_audiotrack window: InitJNIFields success
1:2:53.738 9238-9274/demo D/VLC: [000000748afc2850/243a] core window: resized to 1280x720
1:2:53.738 9238-9274/demo D/VLC: [000000748afc2850/243a] core window: using vout window module "android_window"
1:2:53.739 9238-9277/demo D/VLC: [000000748ae9b590/243d] core video output: Opening vout display wrapper
1:2:53.739 9238-9277/demo D/VLC: [00000074799f1890/243d] core vout display: looking for vout display module matching "any": 5 candidates
1:2:53.739 9238-9277/demo E/VLC: [000000748afc2850/243d] android_window window: request 1 not implemented
1:2:53.739 9238-9277/demo D/VLC: [00000074799f1890/243d] core vout display: VoutDisplayEvent 'resize' 1280x720
1:2:53.740 9238-9277/demo W/VLC: [00000074799f1890/243d] android_display vout display: Could not initialize NativeWindow Priv API.
1:2:53.740 9238-9277/demo D/VLC: [00000074799f1890/243d] android_display vout display: using opaque
1:2:53.740 9238-9277/demo D/VLC: [00000074799f1890/243d] core vout display: using vout display module "android_display"
1:2:53.740 9238-9277/demo D/VLC: [00000074799f1890/243d] android_display vout display: PoolAlloc: request 26 frames
1:2:53.740 9238-9277/demo D/VLC: [00000074799f1890/243d] android_display vout display: PoolAlloc: got 31 frames
1:2:53.742 9238-9277/demo D/VLC: [000000748ae9b590/243d] core video output: original format sz 720x576, of (0,0), vsz 720x576, 4cc ANOP, sar 16:15, msk r0x0 g0x0 b0x0
1:2:53.742 9238-9277/demo E/VLC: [000000748afc2850/243d] android_window window: request 0 not implemented
1:2:53.742 9238-9277/demo E/VLC: [000000748afc2850/243d] android_window window: request 0 not implemented
1:2:53.742 9238-9277/demo D/VLC: [000000748ae9b590/243d] core video output: Adding 'deinterlace' as interactive
1:2:53.742 9238-9277/demo D/VLC: [0000007473e1de90/243d] core filter: looking for video filter module matching "deinterlace,chain": 24 candidates
1:2:53.742 9238-9277/demo D/VLC: [0000007473e1de90/243d] deinterlace filter: unsupported chroma ANOP
1:2:53.742 9238-9277/demo D/VLC: [0000007473e1de90/243d] chain filter: Trying to use chroma I420 as middle man
1:2:53.742 9238-9277/demo D/VLC: [0000007473e1e210/243d] core filter: looking for video converter module matching "any": 14 candidates
1:2:53.742 9238-9277/demo D/VLC: [0000007473e1e210/243d] chain filter: Trying to use chroma I422 as middle man
1:2:53.742 9238-9277/demo D/VLC: [0000007473e1e590/243d] core filter: looking for video converter module matching "any": 14 candidates
1:2:53.742 9238-9277/demo E/VLC: [0000007473e1e590/243d] chain filter: Too high level of recursion (3)
1:2:53.742 9238-9277/demo D/VLC: [0000007473e1e590/243d] core filter: no video converter modules matched
1:2:53.742 9238-9277/demo E/VLC: [0000007473e1e210/243d] core filter: Failed to create video converter
1:2:53.743 9238-9277/demo D/VLC: [0000007473e1e210/243d] chain filter: Trying to use chroma I0AL as middle man
1:2:53.743 9238-9277/demo D/VLC: [0000007473e1e590/243d] core filter: looking for video converter module matching "any": 14 candidates
1:2:53.743 9238-9277/demo E/VLC: [0000007473e1e590/243d] chain filter: Too high level of recursion (3)
1:2:53.743 9238-9277/demo D/VLC: [0000007473e1e590/243d] core filter: no video converter modules matched
1:2:53.743 9238-9277/demo E/VLC: [0000007473e1e210/243d] core filter: Failed to create video converter
1:2:53.743 9238-9277/demo D/VLC: [0000007473e1e210/243d] chain filter: Trying to use chroma I0FL as middle man
1:2:53.743 9238-9277/demo D/VLC: [0000007473e1e590/243d] core filter: looking for video converter module matching "any": 14 candidates
1:2:53.743 9238-9277/demo E/VLC: [0000007473e1e590/243d] chain filter: Too high level of recursion (3)
1:2:53.743 9238-9277/demo D/VLC: [0000007473e1e590/243d] core filter: no video converter modules matched
1:2:53.743 9238-9277/demo E/VLC: [0000007473e1e210/243d] core filter: Failed to create video converter
1:2:53.743 9238-9277/demo D/VLC: [0000007473e1e210/243d] chain filter: Trying to use chroma RV32 as middle man
1:2:53.743 9238-9277/demo D/VLC: [0000007473e1e590/243d] core filter: looking for video converter module matching "any": 14 candidates
1:2:53.743 9238-9277/demo E/VLC: [0000007473e1e590/243d] chain filter: Too high level of recursion (3)
1:2:53.743 9238-9277/demo D/VLC: [0000007473e1e590/243d] core filter: no video converter modules matched
1:2:53.743 9238-9277/demo E/VLC: [0000007473e1e210/243d] core filter: Failed to create video converter
1:2:53.743 9238-9277/demo D/VLC: [0000007473e1e210/243d] chain filter: Trying to use chroma RV24 as middle man
1:2:53.743 9238-9277/demo D/VLC: [0000007473e1e590/243d] core filter: looking for video converter module matching "any": 14 candidates
1:2:53.743 9238-9277/demo E/VLC: [0000007473e1e590/243d] chain filter: Too high level of recursion (3)
1:2:53.743 9238-9277/demo D/VLC: [0000007473e1e590/243d] core filter: no video converter modules matched
1:2:53.743 9238-9277/demo E/VLC: [0000007473e1e210/243d] core filter: Failed to create video converter
1:2:53.743 9238-9277/demo D/VLC: [0000007473e1e210/243d] core filter: no video converter modules matched
1:2:53.743 9238-9277/demo E/VLC: [0000007473e1de90/243d] core filter: Failed to create video converter
1:2:53.743 9238-9277/demo D/VLC: [0000007473e1de90/243d] chain filter: Trying to use chroma I422 as middle man
1:2:53.743 9238-9277/demo D/VLC: [0000007473e1e210/243d] core filter: looking for video converter module matching "any": 14 candidates
1:2:53.744 9238-9277/demo D/VLC: [0000007473e1e210/243d] chain filter: Trying to use chroma I420 as middle man
1:2:53.744 9238-9277/demo D/VLC: [0000007473e1e590/243d] core filter: looking for video converter module matching "any": 14 candidates
1:2:53.744 9238-9277/demo E/VLC: [0000007473e1e590/243d] chain filter: Too high level of recursion (3)
1:2:53.744 9238-9277/demo D/VLC: [0000007473e1e590/243d] core filter: no video converter modules matched
1:2:53.744 9238-9277/demo E/VLC: [0000007473e1e210/243d] core filter: Failed to create video converter
1:2:53.744 9238-9277/demo D/VLC: [0000007473e1e210/243d] chain filter: Trying to use chroma I0AL as middle man
1:2:53.744 9238-9277/demo D/VLC: [0000007473e1e590/243d] core filter: looking for video converter module matching "any": 14 candidates
1:2:53.744 9238-9277/demo E/VLC: [0000007473e1e590/243d] chain filter: Too high level of recursion (3)
1:2:53.744 9238-9277/demo D/VLC: [0000007473e1e590/243d] core filter: no video converter modules matched
1:2:53.744 9238-9277/demo E/VLC: [0000007473e1e210/243d] core filter: Failed to create video converter
1:2:53.744 9238-9277/demo D/VLC: [0000007473e1e210/243d] chain filter: Trying to use chroma I0FL as middle man
1:2:53.744 9238-9277/demo D/VLC: [0000007473e1e590/243d] core filter: looking for video converter module matching "any": 14 candidates
1:2:53.744 9238-9277/demo E/VLC: [0000007473e1e590/243d] chain filter: Too high level of recursion (3)
1:2:53.744 9238-9277/demo D/VLC: [0000007473e1e590/243d] core filter: no video converter modules matched
1:2:53.744 9238-9277/demo E/VLC: [0000007473e1e210/243d] core filter: Failed to create video converter
1:2:53.744 9238-9277/demo D/VLC: [0000007473e1e210/243d] chain filter: Trying to use chroma RV32 as middle man
1:2:53.744 9238-9277/demo D/VLC: [0000007473e1e590/243d] core filter: looking for video converter module matching "any": 14 candidates
1:2:53.744 9238-9277/demo E/VLC: [0000007473e1e590/243d] chain filter: Too high level of recursion (3)
1:2:53.744 9238-9277/demo D/VLC: [0000007473e1e590/243d] core filter: no video converter modules matched
1:2:53.744 9238-9277/demo E/VLC: [0000007473e1e210/243d] core filter: Failed to create video converter
1:2:53.744 9238-9277/demo D/VLC: [0000007473e1e210/243d] chain filter: Trying to use chroma RV24 as middle man
1:2:53.744 9238-9277/demo D/VLC: [0000007473e1e590/243d] core filter: looking for video converter module matching "any": 14 candidates
1:2:53.744 9238-9277/demo E/VLC: [0000007473e1e590/243d] chain filter: Too high level of recursion (3)
1:2:53.744 9238-9277/demo D/VLC: [0000007473e1e590/243d] core filter: no video converter modules matched
1:2:53.744 9238-9277/demo E/VLC: [0000007473e1e210/243d] core filter: Failed to create video converter
1:2:53.744 9238-9277/demo D/VLC: [0000007473e1e210/243d] core filter: no video converter modules matched
1:2:53.744 9238-9277/demo E/VLC: [0000007473e1de90/243d] core filter: Failed to create video converter
1:2:53.744 9238-9277/demo D/VLC: [0000007473e1de90/243d] chain filter: Trying to use chroma I0AL as middle man
1:2:53.744 9238-9277/demo D/VLC: [0000007473e1e210/243d] core filter: looking for video converter module matching "any": 14 candidates
1:2:53.744 9238-9277/demo D/VLC: [0000007473e1e210/243d] chain filter: Trying to use chroma I420 as middle man
1:2:53.744 9238-9277/demo D/VLC: [0000007473e1e590/243d] core filter: looking for video converter module matching "any": 14 candidates
1:2:53.744 9238-9277/demo E/VLC: [0000007473e1e590/243d] chain filter: Too high level of recursion (3)
1:2:53.744 9238-9277/demo D/VLC: [0000007473e1e590/243d] core filter: no video converter modules matched
1:2:53.744 9238-9277/demo E/VLC: [0000007473e1e210/243d] core filter: Failed to create video converter
1:2:53.744 9238-9277/demo D/VLC: [0000007473e1e210/243d] chain filter: Trying to use chroma I422 as middle man
1:2:53.744 9238-9277/demo D/VLC: [0000007473e1e590/243d] core filter: looking for video converter module matching "any": 14 candidates
1:2:53.744 9238-9277/demo E/VLC: [0000007473e1e590/243d] chain filter: Too high level of recursion (3)
1:2:53.745 9238-9277/demo D/VLC: [0000007473e1e590/243d] core filter: no video converter modules matched
1:2:53.745 9238-9277/demo E/VLC: [0000007473e1e210/243d] core filter: Failed to create video converter
1:2:53.745 9238-9277/demo D/VLC: [0000007473e1e210/243d] chain filter: Trying to use chroma I0FL as middle man
1:2:53.745 9238-9277/demo D/VLC: [0000007473e1e590/243d] core filter: looking for video converter module matching "any": 14 candidates
1:2:53.745 9238-9277/demo E/VLC: [0000007473e1e590/243d] chain filter: Too high level of recursion (3)
1:2:53.745 9238-9277/demo D/VLC: [0000007473e1e590/243d] core filter: no video converter modules matched
1:2:53.745 9238-9277/demo E/VLC: [0000007473e1e210/243d] core filter: Failed to create video converter
1:2:53.745 9238-9277/demo D/VLC: [0000007473e1e210/243d] chain filter: Trying to use chroma RV32 as middle man
1:2:53.745 9238-9277/demo D/VLC: [0000007473e1e590/243d] core filter: looking for video converter module matching "any": 14 candidates
1:2:53.745 9238-9277/demo E/VLC: [0000007473e1e590/243d] chain filter: Too high level of recursion (3)
1:2:53.745 9238-9277/demo D/VLC: [0000007473e1e590/243d] core filter: no video converter modules matched
1:2:53.745 9238-9277/demo E/VLC: [0000007473e1e210/243d] core filter: Failed to create video converter
1:2:53.745 9238-9277/demo D/VLC: [0000007473e1e210/243d] chain filter: Trying to use chroma RV24 as middle man
1:2:53.745 9238-9277/demo D/VLC: [0000007473e1e590/243d] core filter: looking for video converter module matching "any": 14 candidates
1:2:53.745 9238-9277/demo E/VLC: [0000007473e1e590/243d] chain filter: Too high level of recursion (3)
1:2:53.745 9238-9277/demo D/VLC: [0000007473e1e590/243d] core filter: no video converter modules matched
1:2:53.745 9238-9277/demo E/VLC: [0000007473e1e210/243d] core filter: Failed to create video converter
1:2:53.745 9238-9277/demo D/VLC: [0000007473e1e210/243d] core filter: no video converter modules matched
1:2:53.745 9238-9277/demo E/VLC: [0000007473e1de90/243d] core filter: Failed to create video converter
1:2:53.745 9238-9277/demo D/VLC: [0000007473e1de90/243d] chain filter: Trying to use chroma I0FL as middle man
1:2:53.745 9238-9277/demo D/VLC: [0000007473e1e210/243d] core filter: looking for video converter module matching "any": 14 candidates
1:2:53.746 9238-9277/demo D/VLC: [0000007473e1e210/243d] chain filter: Trying to use chroma I420 as middle man
1:2:53.746 9238-9277/demo D/VLC: [0000007473e1e590/243d] core filter: looking for video converter module matching "any": 14 candidates
1:2:53.746 9238-9277/demo E/VLC: [0000007473e1e590/243d] chain filter: Too high level of recursion (3)
1:2:53.746 9238-9277/demo D/VLC: [0000007473e1e590/243d] core filter: no video converter modules matched
1:2:53.746 9238-9277/demo E/VLC: [0000007473e1e210/243d] core filter: Failed to create video converter
1:2:53.746 9238-9277/demo D/VLC: [0000007473e1e210/243d] chain filter: Trying to use chroma I422 as middle man
1:2:53.746 9238-9277/demo D/VLC: [0000007473e1e590/243d] core filter: looking for video converter module matching "any": 14 candidates
1:2:53.746 9238-9277/demo E/VLC: [0000007473e1e590/243d] chain filter: Too high level of recursion (3)
1:2:53.746 9238-9277/demo D/VLC: [0000007473e1e590/243d] core filter: no video converter modules matched
1:2:53.746 9238-9277/demo E/VLC: [0000007473e1e210/243d] core filter: Failed to create video converter
1:2:53.746 9238-9277/demo D/VLC: [0000007473e1e210/243d] chain filter: Trying to use chroma I0AL as middle man
1:2:53.746 9238-9277/demo D/VLC: [0000007473e1e590/243d] core filter: looking for video converter module matching "any": 14 candidates
1:2:53.746 9238-9277/demo E/VLC: [0000007473e1e590/243d] chain filter: Too high level of recursion (3)
1:2:53.746 9238-9277/demo D/VLC: [0000007473e1e590/243d] core filter: no video converter modules matched
1:2:53.746 9238-9277/demo E/VLC: [0000007473e1e210/243d] core filter: Failed to create video converter
1:2:53.746 9238-9277/demo D/VLC: [0000007473e1e210/243d] chain filter: Trying to use chroma RV32 as middle man
1:2:53.746 9238-9277/demo D/VLC: [0000007473e1e590/243d] core filter: looking for video converter module matching "any": 14 candidates
1:2:53.746 9238-9277/demo E/VLC: [0000007473e1e590/243d] chain filter: Too high level of recursion (3)
1:2:53.746 9238-9277/demo D/VLC: [0000007473e1e590/243d] core filter: no video converter modules matched
1:2:53.746 9238-9277/demo E/VLC: [0000007473e1e210/243d] core filter: Failed to create video converter
1:2:53.746 9238-9277/demo D/VLC: [0000007473e1e210/243d] chain filter: Trying to use chroma RV24 as middle man
1:2:53.746 9238-9277/demo D/VLC: [0000007473e1e590/243d] core filter: looking for video converter module matching "any": 14 candidates
1:2:53.746 9238-9277/demo E/VLC: [0000007473e1e590/243d] chain filter: Too high level of recursion (3)
1:2:53.746 9238-9277/demo D/VLC: [0000007473e1e590/243d] core filter: no video converter modules matched
1:2:53.746 9238-9277/demo E/VLC: [0000007473e1e210/243d] core filter: Failed to create video converter
1:2:53.746 9238-9277/demo D/VLC: [0000007473e1e210/243d] core filter: no video converter modules matched
1:2:53.746 9238-9277/demo E/VLC: [0000007473e1de90/243d] core filter: Failed to create video converter
1:2:53.746 9238-9277/demo D/VLC: [0000007473e1de90/243d] chain filter: Trying to use chroma RV32 as middle man
1:2:53.746 9238-9277/demo D/VLC: [0000007473e1e210/243d] core filter: looking for video converter module matching "any": 14 candidates
1:2:53.747 9238-9277/demo D/VLC: [0000007473e1e210/243d] chain filter: Trying to use chroma I420 as middle man
1:2:53.747 9238-9277/demo D/VLC: [0000007473e1e590/243d] core filter: looking for video converter module matching "any": 14 candidates
1:2:53.747 9238-9277/demo E/VLC: [0000007473e1e590/243d] chain filter: Too high level of recursion (3)
1:2:53.747 9238-9277/demo D/VLC: [0000007473e1e590/243d] core filter: no video converter modules matched
1:2:53.747 9238-9277/demo E/VLC: [0000007473e1e210/243d] core filter: Failed to create video converter
1:2:53.747 9238-9277/demo D/VLC: [0000007473e1e210/243d] chain filter: Trying to use chroma I422 as middle man
1:2:53.747 9238-9277/demo D/VLC: [0000007473e1e590/243d] core filter: looking for video converter module matching "any": 14 candidates
1:2:53.747 9238-9277/demo E/VLC: [0000007473e1e590/243d] chain filter: Too high level of recursion (3)
1:2:53.747 9238-9277/demo D/VLC: [0000007473e1e590/243d] core filter: no video converter modules matched
1:2:53.747 9238-9277/demo E/VLC: [0000007473e1e210/243d] core filter: Failed to create video converter
1:2:53.747 9238-9277/demo D/VLC: [0000007473e1e210/243d] chain filter: Trying to use chroma I0AL as middle man
1:2:53.747 9238-9277/demo D/VLC: [0000007473e1e590/243d] core filter: looking for video converter module matching "any": 14 candidates
1:2:53.747 9238-9277/demo E/VLC: [0000007473e1e590/243d] chain filter: Too high level of recursion (3)
1:2:53.747 9238-9277/demo D/VLC: [0000007473e1e590/243d] core filter: no video converter modules matched
1:2:53.747 9238-9277/demo E/VLC: [0000007473e1e210/243d] core filter: Failed to create video converter
1:2:53.747 9238-9277/demo D/VLC: [0000007473e1e210/243d] chain filter: Trying to use chroma I0FL as middle man
1:2:53.747 9238-9277/demo D/VLC: [0000007473e1e590/243d] core filter: looking for video converter module matching "any": 14 candidates
1:2:53.747 9238-9277/demo E/VLC: [0000007473e1e590/243d] chain filter: Too high level of recursion (3)
1:2:53.747 9238-9277/demo D/VLC: [0000007473e1e590/243d] core filter: no video converter modules matched
1:2:53.747 9238-9277/demo E/VLC: [0000007473e1e210/243d] core filter: Failed to create video converter
1:2:53.747 9238-9277/demo D/VLC: [0000007473e1e210/243d] chain filter: Trying to use chroma RV24 as middle man
1:2:53.747 9238-9277/demo D/VLC: [0000007473e1e590/243d] core filter: looking for video converter module matching "any": 14 candidates
1:2:53.747 9238-9277/demo E/VLC: [0000007473e1e590/243d] chain filter: Too high level of recursion (3)
1:2:53.747 9238-9277/demo D/VLC: [0000007473e1e590/243d] core filter: no video converter modules matched
1:2:53.747 9238-9277/demo E/VLC: [0000007473e1e210/243d] core filter: Failed to create video converter
1:2:53.747 9238-9277/demo D/VLC: [0000007473e1e210/243d] core filter: no video converter modules matched
1:2:53.747 9238-9277/demo E/VLC: [0000007473e1de90/243d] core filter: Failed to create video converter
1:2:53.747 9238-9277/demo D/VLC: [0000007473e1de90/243d] chain filter: Trying to use chroma RV24 as middle man
1:2:53.747 9238-9277/demo D/VLC: [0000007473e1e210/243d] core filter: looking for video converter module matching "any": 14 candidates
1:2:53.747 9238-9277/demo D/VLC: [0000007473e1e210/243d] chain filter: Trying to use chroma I420 as middle man
1:2:53.747 9238-9277/demo D/VLC: [0000007473e1e590/243d] core filter: looking for video converter module matching "any": 14 candidates
1:2:53.747 9238-9277/demo E/VLC: [0000007473e1e590/243d] chain filter: Too high level of recursion (3)
1:2:53.747 9238-9277/demo D/VLC: [0000007473e1e590/243d] core filter: no video converter modules matched
1:2:53.747 9238-9277/demo E/VLC: [0000007473e1e210/243d] core filter: Failed to create video converter
1:2:53.747 9238-9277/demo D/VLC: [0000007473e1e210/243d] chain filter: Trying to use chroma I422 as middle man
1:2:53.747 9238-9277/demo D/VLC: [0000007473e1e590/243d] core filter: looking for video converter module matching "any": 14 candidates
1:2:53.748 9238-9277/demo E/VLC: [0000007473e1e590/243d] chain filter: Too high level of recursion (3)
1:2:53.748 9238-9277/demo D/VLC: [0000007473e1e590/243d] core filter: no video converter modules matched
1:2:53.748 9238-9277/demo E/VLC: [0000007473e1e210/243d] core filter: Failed to create video converter
1:2:53.748 9238-9277/demo D/VLC: [0000007473e1e210/243d] chain filter: Trying to use chroma I0AL as middle man
1:2:53.748 9238-9277/demo D/VLC: [0000007473e1e590/243d] core filter: looking for video converter module matching "any": 14 candidates
1:2:53.748 9238-9277/demo E/VLC: [0000007473e1e590/243d] chain filter: Too high level of recursion (3)
1:2:53.748 9238-9277/demo D/VLC: [0000007473e1e590/243d] core filter: no video converter modules matched
1:2:53.748 9238-9277/demo E/VLC: [0000007473e1e210/243d] core filter: Failed to create video converter
1:2:53.748 9238-9277/demo D/VLC: [0000007473e1e210/243d] chain filter: Trying to use chroma I0FL as middle man
1:2:53.748 9238-9277/demo D/VLC: [0000007473e1e590/243d] core filter: looking for video converter module matching "any": 14 candidates
1:2:53.748 9238-9277/demo E/VLC: [0000007473e1e590/243d] chain filter: Too high level of recursion (3)
1:2:53.748 9238-9277/demo D/VLC: [0000007473e1e590/243d] core filter: no video converter modules matched
1:2:53.748 9238-9277/demo E/VLC: [0000007473e1e210/243d] core filter: Failed to create video converter
1:2:53.748 9238-9277/demo D/VLC: [0000007473e1e210/243d] chain filter: Trying to use chroma RV32 as middle man
1:2:53.748 9238-9277/demo D/VLC: [0000007473e1e590/243d] core filter: looking for video converter module matching "any": 14 candidates
1:2:53.748 9238-9277/demo E/VLC: [0000007473e1e590/243d] chain filter: Too high level of recursion (3)
1:2:53.748 9238-9277/demo D/VLC: [0000007473e1e590/243d] core filter: no video converter modules matched
1:2:53.748 9238-9277/demo E/VLC: [0000007473e1e210/243d] core filter: Failed to create video converter
1:2:53.748 9238-9277/demo D/VLC: [0000007473e1e210/243d] core filter: no video converter modules matched
1:2:53.748 9238-9277/demo E/VLC: [0000007473e1de90/243d] core filter: Failed to create video converter
1:2:53.748 9238-9277/demo D/VLC: [0000007473e1de90/243d] core filter: no video filter modules matched
1:2:53.748 9238-9277/demo E/VLC: [000000748ae9b590/243d] core video output: Failed to create video filter 'deinterlace'
1:2:53.748 9238-9277/demo E/VLC: [000000748ae9b590/243d] core video output: Failed to add filter 'deinterlace'
1:2:53.748 9238-9277/demo D/VLC: [000000748ae9b590/243d] core video output: Adding 'deinterlace' as static
1:2:53.748 9238-9277/demo D/VLC: [0000007473e1de90/243d] core filter: looking for video filter module matching "deinterlace,chain": 24 candidates
1:2:53.748 9238-9277/demo D/VLC: [0000007473e1de90/243d] deinterlace filter: unsupported chroma ANOP
1:2:53.748 9238-9277/demo D/VLC: [0000007473e1de90/243d] chain filter: Trying to use chroma I420 as middle man

dikranh
New Cone
New Cone
Posts: 8
Joined: 20 Nov 2017 18:03

Re: Android: problems with deinterlacing

Postby dikranh » 26 Nov 2017 18:15

Continuation of log...
1:2:53.748 9238-9277/demo D/VLC: [0000007473e1e210/243d] core filter: looking for video converter module matching "any": 14 candidates
1:2:53.748 9238-9277/demo D/VLC: [0000007473e1e210/243d] chain filter: Trying to use chroma I422 as middle man
1:2:53.748 9238-9277/demo D/VLC: [0000007473e1e590/243d] core filter: looking for video converter module matching "any": 14 candidates
1:2:53.748 9238-9277/demo E/VLC: [0000007473e1e590/243d] chain filter: Too high level of recursion (3)
1:2:53.748 9238-9277/demo D/VLC: [0000007473e1e590/243d] core filter: no video converter modules matched
1:2:53.749 9238-9277/demo E/VLC: [0000007473e1e210/243d] core filter: Failed to create video converter
1:2:53.749 9238-9277/demo D/VLC: [0000007473e1e210/243d] chain filter: Trying to use chroma I0AL as middle man
1:2:53.749 9238-9277/demo D/VLC: [0000007473e1e590/243d] core filter: looking for video converter module matching "any": 14 candidates
1:2:53.749 9238-9277/demo E/VLC: [0000007473e1e590/243d] chain filter: Too high level of recursion (3)
1:2:53.749 9238-9277/demo D/VLC: [0000007473e1e590/243d] core filter: no video converter modules matched
1:2:53.749 9238-9277/demo E/VLC: [0000007473e1e210/243d] core filter: Failed to create video converter
1:2:53.749 9238-9277/demo D/VLC: [0000007473e1e210/243d] chain filter: Trying to use chroma I0FL as middle man
1:2:53.749 9238-9277/demo D/VLC: [0000007473e1e590/243d] core filter: looking for video converter module matching "any": 14 candidates
1:2:53.749 9238-9277/demo E/VLC: [0000007473e1e590/243d] chain filter: Too high level of recursion (3)
1:2:53.749 9238-9277/demo D/VLC: [0000007473e1e590/243d] core filter: no video converter modules matched
1:2:53.749 9238-9277/demo E/VLC: [0000007473e1e210/243d] core filter: Failed to create video converter
1:2:53.749 9238-9277/demo D/VLC: [0000007473e1e210/243d] chain filter: Trying to use chroma RV32 as middle man
1:2:53.749 9238-9277/demo D/VLC: [0000007473e1e590/243d] core filter: looking for video converter module matching "any": 14 candidates
1:2:53.749 9238-9277/demo E/VLC: [0000007473e1e590/243d] chain filter: Too high level of recursion (3)
1:2:53.749 9238-9277/demo D/VLC: [0000007473e1e590/243d] core filter: no video converter modules matched
1:2:53.749 9238-9277/demo E/VLC: [0000007473e1e210/243d] core filter: Failed to create video converter
1:2:53.749 9238-9277/demo D/VLC: [0000007473e1e210/243d] chain filter: Trying to use chroma RV24 as middle man
1:2:53.749 9238-9277/demo D/VLC: [0000007473e1e590/243d] core filter: looking for video converter module matching "any": 14 candidates
1:2:53.749 9238-9277/demo E/VLC: [0000007473e1e590/243d] chain filter: Too high level of recursion (3)
1:2:53.749 9238-9277/demo D/VLC: [0000007473e1e590/243d] core filter: no video converter modules matched
1:2:53.749 9238-9277/demo E/VLC: [0000007473e1e210/243d] core filter: Failed to create video converter
1:2:53.749 9238-9277/demo D/VLC: [0000007473e1e210/243d] core filter: no video converter modules matched
1:2:53.749 9238-9277/demo E/VLC: [0000007473e1de90/243d] core filter: Failed to create video converter
1:2:53.749 9238-9277/demo D/VLC: [0000007473e1de90/243d] chain filter: Trying to use chroma I422 as middle man
1:2:53.749 9238-9277/demo D/VLC: [0000007473e1e210/243d] core filter: looking for video converter module matching "any": 14 candidates
1:2:53.749 9238-9277/demo D/VLC: [0000007473e1e210/243d] chain filter: Trying to use chroma I420 as middle man
1:2:53.749 9238-9277/demo D/VLC: [0000007473e1e590/243d] core filter: looking for video converter module matching "any": 14 candidates
1:2:53.749 9238-9277/demo E/VLC: [0000007473e1e590/243d] chain filter: Too high level of recursion (3)
1:2:53.749 9238-9277/demo D/VLC: [0000007473e1e590/243d] core filter: no video converter modules matched
1:2:53.749 9238-9277/demo E/VLC: [0000007473e1e210/243d] core filter: Failed to create video converter
1:2:53.749 9238-9277/demo D/VLC: [0000007473e1e210/243d] chain filter: Trying to use chroma I0AL as middle man
1:2:53.749 9238-9277/demo D/VLC: [0000007473e1e590/243d] core filter: looking for video converter module matching "any": 14 candidates
1:2:53.749 9238-9277/demo E/VLC: [0000007473e1e590/243d] chain filter: Too high level of recursion (3)
1:2:53.749 9238-9277/demo D/VLC: [0000007473e1e590/243d] core filter: no video converter modules matched
1:2:53.749 9238-9277/demo E/VLC: [0000007473e1e210/243d] core filter: Failed to create video converter
1:2:53.749 9238-9277/demo D/VLC: [0000007473e1e210/243d] chain filter: Trying to use chroma I0FL as middle man
1:2:53.749 9238-9277/demo D/VLC: [0000007473e1e590/243d] core filter: looking for video converter module matching "any": 14 candidates
1:2:53.750 9238-9277/demo E/VLC: [0000007473e1e590/243d] chain filter: Too high level of recursion (3)
1:2:53.750 9238-9277/demo D/VLC: [0000007473e1e590/243d] core filter: no video converter modules matched
1:2:53.750 9238-9277/demo E/VLC: [0000007473e1e210/243d] core filter: Failed to create video converter
1:2:53.750 9238-9277/demo D/VLC: [0000007473e1e210/243d] chain filter: Trying to use chroma RV32 as middle man
1:2:53.750 9238-9277/demo D/VLC: [0000007473e1e590/243d] core filter: looking for video converter module matching "any": 14 candidates
1:2:53.750 9238-9277/demo E/VLC: [0000007473e1e590/243d] chain filter: Too high level of recursion (3)
1:2:53.750 9238-9277/demo D/VLC: [0000007473e1e590/243d] core filter: no video converter modules matched
1:2:53.750 9238-9277/demo E/VLC: [0000007473e1e210/243d] core filter: Failed to create video converter
1:2:53.750 9238-9277/demo D/VLC: [0000007473e1e210/243d] chain filter: Trying to use chroma RV24 as middle man
1:2:53.750 9238-9277/demo D/VLC: [0000007473e1e590/243d] core filter: looking for video converter module matching "any": 14 candidates
1:2:53.750 9238-9277/demo E/VLC: [0000007473e1e590/243d] chain filter: Too high level of recursion (3)
1:2:53.750 9238-9277/demo D/VLC: [0000007473e1e590/243d] core filter: no video converter modules matched
1:2:53.750 9238-9277/demo E/VLC: [0000007473e1e210/243d] core filter: Failed to create video converter
1:2:53.750 9238-9277/demo D/VLC: [0000007473e1e210/243d] core filter: no video converter modules matched
1:2:53.750 9238-9277/demo E/VLC: [0000007473e1de90/243d] core filter: Failed to create video converter
1:2:53.750 9238-9277/demo D/VLC: [0000007473e1de90/243d] chain filter: Trying to use chroma I0AL as middle man
1:2:53.750 9238-9277/demo D/VLC: [0000007473e1e210/243d] core filter: looking for video converter module matching "any": 14 candidates
1:2:53.750 9238-9277/demo D/VLC: [0000007473e1e210/243d] chain filter: Trying to use chroma I420 as middle man
1:2:53.750 9238-9277/demo D/VLC: [0000007473e1e590/243d] core filter: looking for video converter module matching "any": 14 candidates
1:2:53.750 9238-9277/demo E/VLC: [0000007473e1e590/243d] chain filter: Too high level of recursion (3)
1:2:53.750 9238-9277/demo D/VLC: [0000007473e1e590/243d] core filter: no video converter modules matched
1:2:53.750 9238-9277/demo E/VLC: [0000007473e1e210/243d] core filter: Failed to create video converter
1:2:53.750 9238-9277/demo D/VLC: [0000007473e1e210/243d] chain filter: Trying to use chroma I422 as middle man
1:2:53.750 9238-9277/demo D/VLC: [0000007473e1e590/243d] core filter: looking for video converter module matching "any": 14 candidates
1:2:53.750 9238-9277/demo E/VLC: [0000007473e1e590/243d] chain filter: Too high level of recursion (3)
1:2:53.750 9238-9277/demo D/VLC: [0000007473e1e590/243d] core filter: no video converter modules matched
1:2:53.750 9238-9277/demo E/VLC: [0000007473e1e210/243d] core filter: Failed to create video converter
1:2:53.750 9238-9277/demo D/VLC: [0000007473e1e210/243d] chain filter: Trying to use chroma I0FL as middle man
1:2:53.750 9238-9277/demo D/VLC: [0000007473e1e590/243d] core filter: looking for video converter module matching "any": 14 candidates
1:2:53.750 9238-9277/demo E/VLC: [0000007473e1e590/243d] chain filter: Too high level of recursion (3)
1:2:53.750 9238-9277/demo D/VLC: [0000007473e1e590/243d] core filter: no video converter modules matched
1:2:53.750 9238-9277/demo E/VLC: [0000007473e1e210/243d] core filter: Failed to create video converter
1:2:53.750 9238-9277/demo D/VLC: [0000007473e1e210/243d] chain filter: Trying to use chroma RV32 as middle man
1:2:53.750 9238-9277/demo D/VLC: [0000007473e1e590/243d] core filter: looking for video converter module matching "any": 14 candidates
1:2:53.750 9238-9277/demo E/VLC: [0000007473e1e590/243d] chain filter: Too high level of recursion (3)
1:2:53.750 9238-9277/demo D/VLC: [0000007473e1e590/243d] core filter: no video converter modules matched
1:2:53.750 9238-9277/demo E/VLC: [0000007473e1e210/243d] core filter: Failed to create video converter
1:2:53.750 9238-9277/demo D/VLC: [0000007473e1e210/243d] chain filter: Trying to use chroma RV24 as middle man
1:2:53.750 9238-9277/demo D/VLC: [0000007473e1e590/243d] core filter: looking for video converter module matching "any": 14 candidates
1:2:53.750 9238-9277/demo E/VLC: [0000007473e1e590/243d] chain filter: Too high level of recursion (3)
1:2:53.750 9238-9277/demo D/VLC: [0000007473e1e590/243d] core filter: no video converter modules matched
1:2:53.751 9238-9277/demo E/VLC: [0000007473e1e210/243d] core filter: Failed to create video converter
1:2:53.751 9238-9277/demo D/VLC: [0000007473e1e210/243d] core filter: no video converter modules matched
1:2:53.751 9238-9277/demo E/VLC: [0000007473e1de90/243d] core filter: Failed to create video converter
1:2:53.751 9238-9277/demo D/VLC: [0000007473e1de90/243d] chain filter: Trying to use chroma I0FL as middle man
1:2:53.751 9238-9277/demo D/VLC: [0000007473e1e210/243d] core filter: looking for video converter module matching "any": 14 candidates
1:2:53.751 9238-9277/demo D/VLC: [0000007473e1e210/243d] chain filter: Trying to use chroma I420 as middle man
1:2:53.751 9238-9277/demo D/VLC: [0000007473e1e590/243d] core filter: looking for video converter module matching "any": 14 candidates
1:2:53.751 9238-9277/demo E/VLC: [0000007473e1e590/243d] chain filter: Too high level of recursion (3)
1:2:53.751 9238-9277/demo D/VLC: [0000007473e1e590/243d] core filter: no video converter modules matched
1:2:53.751 9238-9277/demo E/VLC: [0000007473e1e210/243d] core filter: Failed to create video converter
1:2:53.751 9238-9277/demo D/VLC: [0000007473e1e210/243d] chain filter: Trying to use chroma I422 as middle man
1:2:53.751 9238-9277/demo D/VLC: [0000007473e1e590/243d] core filter: looking for video converter module matching "any": 14 candidates
1:2:53.751 9238-9277/demo E/VLC: [0000007473e1e590/243d] chain filter: Too high level of recursion (3)
1:2:53.751 9238-9277/demo D/VLC: [0000007473e1e590/243d] core filter: no video converter modules matched
1:2:53.751 9238-9277/demo E/VLC: [0000007473e1e210/243d] core filter: Failed to create video converter
1:2:53.751 9238-9277/demo D/VLC: [0000007473e1e210/243d] chain filter: Trying to use chroma I0AL as middle man
1:2:53.751 9238-9277/demo D/VLC: [0000007473e1e590/243d] core filter: looking for video converter module matching "any": 14 candidates
1:2:53.751 9238-9277/demo E/VLC: [0000007473e1e590/243d] chain filter: Too high level of recursion (3)
1:2:53.751 9238-9277/demo D/VLC: [0000007473e1e590/243d] core filter: no video converter modules matched
1:2:53.751 9238-9277/demo E/VLC: [0000007473e1e210/243d] core filter: Failed to create video converter
1:2:53.751 9238-9277/demo D/VLC: [0000007473e1e210/243d] chain filter: Trying to use chroma RV32 as middle man
1:2:53.751 9238-9277/demo D/VLC: [0000007473e1e590/243d] core filter: looking for video converter module matching "any": 14 candidates
1:2:53.751 9238-9277/demo E/VLC: [0000007473e1e590/243d] chain filter: Too high level of recursion (3)
1:2:53.751 9238-9277/demo D/VLC: [0000007473e1e590/243d] core filter: no video converter modules matched
1:2:53.751 9238-9277/demo E/VLC: [0000007473e1e210/243d] core filter: Failed to create video converter
1:2:53.751 9238-9277/demo D/VLC: [0000007473e1e210/243d] chain filter: Trying to use chroma RV24 as middle man
1:2:53.751 9238-9277/demo D/VLC: [0000007473e1e590/243d] core filter: looking for video converter module matching "any": 14 candidates
1:2:53.751 9238-9277/demo E/VLC: [0000007473e1e590/243d] chain filter: Too high level of recursion (3)
1:2:53.751 9238-9277/demo D/VLC: [0000007473e1e590/243d] core filter: no video converter modules matched
1:2:53.751 9238-9277/demo E/VLC: [0000007473e1e210/243d] core filter: Failed to create video converter
1:2:53.751 9238-9277/demo D/VLC: [0000007473e1e210/243d] core filter: no video converter modules matched
1:2:53.751 9238-9277/demo E/VLC: [0000007473e1de90/243d] core filter: Failed to create video converter
1:2:53.751 9238-9277/demo D/VLC: [0000007473e1de90/243d] chain filter: Trying to use chroma RV32 as middle man
1:2:53.751 9238-9277/demo D/VLC: [0000007473e1e210/243d] core filter: looking for video converter module matching "any": 14 candidates
1:2:53.751 9238-9277/demo D/VLC: [0000007473e1e210/243d] chain filter: Trying to use chroma I420 as middle man
1:2:53.751 9238-9277/demo D/VLC: [0000007473e1e590/243d] core filter: looking for video converter module matching "any": 14 candidates
1:2:53.752 9238-9277/demo E/VLC: [0000007473e1e590/243d] chain filter: Too high level of recursion (3)
1:2:53.752 9238-9277/demo D/VLC: [0000007473e1e590/243d] core filter: no video converter modules matched
1:2:53.752 9238-9277/demo E/VLC: [0000007473e1e210/243d] core filter: Failed to create video converter
1:2:53.752 9238-9277/demo D/VLC: [0000007473e1e210/243d] chain filter: Trying to use chroma I422 as middle man
1:2:53.752 9238-9277/demo D/VLC: [0000007473e1e590/243d] core filter: looking for video converter module matching "any": 14 candidates
1:2:53.752 9238-9277/demo E/VLC: [0000007473e1e590/243d] chain filter: Too high level of recursion (3)
1:2:53.752 9238-9277/demo D/VLC: [0000007473e1e590/243d] core filter: no video converter modules matched
1:2:53.752 9238-9277/demo E/VLC: [0000007473e1e210/243d] core filter: Failed to create video converter
1:2:53.752 9238-9277/demo D/VLC: [0000007473e1e210/243d] chain filter: Trying to use chroma I0AL as middle man
1:2:53.752 9238-9277/demo D/VLC: [0000007473e1e590/243d] core filter: looking for video converter module matching "any": 14 candidates
1:2:53.752 9238-9277/demo E/VLC: [0000007473e1e590/243d] chain filter: Too high level of recursion (3)
1:2:53.752 9238-9277/demo D/VLC: [0000007473e1e590/243d] core filter: no video converter modules matched
1:2:53.752 9238-9277/demo E/VLC: [0000007473e1e210/243d] core filter: Failed to create video converter
1:2:53.752 9238-9277/demo D/VLC: [0000007473e1e210/243d] chain filter: Trying to use chroma I0FL as middle man
1:2:53.752 9238-9277/demo D/VLC: [0000007473e1e590/243d] core filter: looking for video converter module matching "any": 14 candidates
1:2:53.752 9238-9277/demo E/VLC: [0000007473e1e590/243d] chain filter: Too high level of recursion (3)
1:2:53.752 9238-9277/demo D/VLC: [0000007473e1e590/243d] core filter: no video converter modules matched
1:2:53.752 9238-9277/demo E/VLC: [0000007473e1e210/243d] core filter: Failed to create video converter
1:2:53.752 9238-9277/demo D/VLC: [0000007473e1e210/243d] chain filter: Trying to use chroma RV24 as middle man
1:2:53.752 9238-9277/demo D/VLC: [0000007473e1e590/243d] core filter: looking for video converter module matching "any": 14 candidates
1:2:53.752 9238-9277/demo E/VLC: [0000007473e1e590/243d] chain filter: Too high level of recursion (3)
1:2:53.752 9238-9277/demo D/VLC: [0000007473e1e590/243d] core filter: no video converter modules matched
1:2:53.752 9238-9277/demo E/VLC: [0000007473e1e210/243d] core filter: Failed to create video converter
1:2:53.752 9238-9277/demo D/VLC: [0000007473e1e210/243d] core filter: no video converter modules matched
1:2:53.752 9238-9277/demo E/VLC: [0000007473e1de90/243d] core filter: Failed to create video converter
1:2:53.752 9238-9277/demo D/VLC: [0000007473e1de90/243d] chain filter: Trying to use chroma RV24 as middle man
1:2:53.752 9238-9277/demo D/VLC: [0000007473e1e210/243d] core filter: looking for video converter module matching "any": 14 candidates
1:2:53.752 9238-9277/demo D/VLC: [0000007473e1e210/243d] chain filter: Trying to use chroma I420 as middle man
1:2:53.752 9238-9277/demo D/VLC: [0000007473e1e590/243d] core filter: looking for video converter module matching "any": 14 candidates
1:2:53.752 9238-9277/demo E/VLC: [0000007473e1e590/243d] chain filter: Too high level of recursion (3)
1:2:53.752 9238-9277/demo D/VLC: [0000007473e1e590/243d] core filter: no video converter modules matched
1:2:53.752 9238-9277/demo E/VLC: [0000007473e1e210/243d] core filter: Failed to create video converter
1:2:53.752 9238-9277/demo D/VLC: [0000007473e1e210/243d] chain filter: Trying to use chroma I422 as middle man
1:2:53.752 9238-9277/demo D/VLC: [0000007473e1e590/243d] core filter: looking for video converter module matching "any": 14 candidates
1:2:53.752 9238-9277/demo E/VLC: [0000007473e1e590/243d] chain filter: Too high level of recursion (3)
1:2:53.752 9238-9277/demo D/VLC: [0000007473e1e590/243d] core filter: no video converter modules matched
1:2:53.752 9238-9277/demo E/VLC: [0000007473e1e210/243d] core filter: Failed to create video converter
1:2:53.753 9238-9277/demo D/VLC: [0000007473e1e210/243d] chain filter: Trying to use chroma I0AL as middle man
1:2:53.753 9238-9277/demo D/VLC: [0000007473e1e590/243d] core filter: looking for video converter module matching "any": 14 candidates
1:2:53.753 9238-9277/demo E/VLC: [0000007473e1e590/243d] chain filter: Too high level of recursion (3)
1:2:53.753 9238-9277/demo D/VLC: [0000007473e1e590/243d] core filter: no video converter modules matched
1:2:53.753 9238-9277/demo E/VLC: [0000007473e1e210/243d] core filter: Failed to create video converter
1:2:53.753 9238-9277/demo D/VLC: [0000007473e1e210/243d] chain filter: Trying to use chroma I0FL as middle man
1:2:53.753 9238-9277/demo D/VLC: [0000007473e1e590/243d] core filter: looking for video converter module matching "any": 14 candidates
1:2:53.753 9238-9277/demo E/VLC: [0000007473e1e590/243d] chain filter: Too high level of recursion (3)
1:2:53.753 9238-9277/demo D/VLC: [0000007473e1e590/243d] core filter: no video converter modules matched
1:2:53.753 9238-9277/demo E/VLC: [0000007473e1e210/243d] core filter: Failed to create video converter
1:2:53.753 9238-9277/demo D/VLC: [0000007473e1e210/243d] chain filter: Trying to use chroma RV32 as middle man
1:2:53.753 9238-9277/demo D/VLC: [0000007473e1e590/243d] core filter: looking for video converter module matching "any": 14 candidates
1:2:53.753 9238-9277/demo E/VLC: [0000007473e1e590/243d] chain filter: Too high level of recursion (3)
1:2:53.753 9238-9277/demo D/VLC: [0000007473e1e590/243d] core filter: no video converter modules matched
1:2:53.753 9238-9277/demo E/VLC: [0000007473e1e210/243d] core filter: Failed to create video converter
1:2:53.753 9238-9277/demo D/VLC: [0000007473e1e210/243d] core filter: no video converter modules matched
1:2:53.753 9238-9277/demo E/VLC: [0000007473e1de90/243d] core filter: Failed to create video converter
1:2:53.753 9238-9277/demo D/VLC: [0000007473e1de90/243d] core filter: no video filter modules matched
1:2:53.753 9238-9277/demo E/VLC: [000000748ae9b590/243d] core video output: Failed to create video filter 'deinterlace'
1:2:53.753 9238-9277/demo E/VLC: [000000748ae9b590/243d] core video output: Failed to add filter 'deinterlace'
1:2:53.753 9238-9277/demo D/VLC: [000000748ae9b590/243d] core video output: Adding 'deinterlace' as interactive
1:2:53.753 9238-9277/demo D/VLC: [0000007473e1de90/243d] core filter: looking for video filter module matching "deinterlace,chain": 24 candidates
1:2:53.753 9238-9277/demo D/VLC: [0000007473e1de90/243d] deinterlace filter: unsupported chroma ANOP
1:2:53.753 9238-9277/demo D/VLC: [0000007473e1de90/243d] chain filter: Trying to use chroma I420 as middle man
1:2:53.753 9238-9277/demo D/VLC: [0000007473e1e210/243d] core filter: looking for video converter module matching "any": 14 candidates
1:2:53.753 9238-9277/demo D/VLC: [0000007473e1e210/243d] chain filter: Trying to use chroma I422 as middle man
1:2:53.753 9238-9277/demo D/VLC: [0000007473e1e590/243d] core filter: looking for video converter module matching "any": 14 candidates
1:2:53.753 9238-9277/demo E/VLC: [0000007473e1e590/243d] chain filter: Too high level of recursion (3)
1:2:53.754 9238-9277/demo D/VLC: [0000007473e1e590/243d] core filter: no video converter modules matched
1:2:53.754 9238-9277/demo E/VLC: [0000007473e1e210/243d] core filter: Failed to create video converter
1:2:53.754 9238-9277/demo D/VLC: [0000007473e1e210/243d] chain filter: Trying to use chroma I0AL as middle man
1:2:53.754 9238-9277/demo D/VLC: [0000007473e1e590/243d] core filter: looking for video converter module matching "any": 14 candidates
1:2:53.754 9238-9277/demo E/VLC: [0000007473e1e590/243d] chain filter: Too high level of recursion (3)
1:2:53.754 9238-9277/demo D/VLC: [0000007473e1e590/243d] core filter: no video converter modules matched
1:2:53.754 9238-9277/demo E/VLC: [0000007473e1e210/243d] core filter: Failed to create video converter
1:2:53.754 9238-9277/demo D/VLC: [0000007473e1e210/243d] chain filter: Trying to use chroma I0FL as middle man
1:2:53.754 9238-9277/demo D/VLC: [0000007473e1e590/243d] core filter: looking for video converter module matching "any": 14 candidates
1:2:53.754 9238-9277/demo E/VLC: [0000007473e1e590/243d] chain filter: Too high level of recursion (3)
1:2:53.754 9238-9277/demo D/VLC: [0000007473e1e590/243d] core filter: no video converter modules matched
1:2:53.754 9238-9277/demo E/VLC: [0000007473e1e210/243d] core filter: Failed to create video converter
1:2:53.754 9238-9277/demo D/VLC: [0000007473e1e210/243d] chain filter: Trying to use chroma RV32 as middle man
1:2:53.754 9238-9277/demo D/VLC: [0000007473e1e590/243d] core filter: looking for video converter module matching "any": 14 candidates
1:2:53.754 9238-9277/demo E/VLC: [0000007473e1e590/243d] chain filter: Too high level of recursion (3)
1:2:53.754 9238-9277/demo D/VLC: [0000007473e1e590/243d] core filter: no video converter modules matched
1:2:53.754 9238-9277/demo E/VLC: [0000007473e1e210/243d] core filter: Failed to create video converter
1:2:53.754 9238-9277/demo D/VLC: [0000007473e1e210/243d] chain filter: Trying to use chroma RV24 as middle man
1:2:53.754 9238-9277/demo D/VLC: [0000007473e1e590/243d] core filter: looking for video converter module matching "any": 14 candidates
1:2:53.754 9238-9277/demo E/VLC: [0000007473e1e590/243d] chain filter: Too high level of recursion (3)
1:2:53.754 9238-9277/demo D/VLC: [0000007473e1e590/243d] core filter: no video converter modules matched
1:2:53.754 9238-9277/demo E/VLC: [0000007473e1e210/243d] core filter: Failed to create video converter
1:2:53.754 9238-9277/demo D/VLC: [0000007473e1e210/243d] core filter: looking for video converter module matching "any": 14 candidates
1:2:53.755 9238-9277/demo D/VLC: [0000007473e1e210/243d] chain filter: Trying to use chroma I420 as middle man
1:2:53.755 9238-9277/demo D/VLC: [0000007473e1e590/243d] core filter: looking for video converter module matching "any": 14 candidates
1:2:53.755 9238-9277/demo E/VLC: [0000007473e1e590/243d] chain filter: Too high level of recursion (3)
1:2:53.755 9238-9277/demo D/VLC: [0000007473e1e590/243d] core filter: no video converter modules matched
1:2:53.755 9238-9277/demo E/VLC: [0000007473e1e210/243d] core filter: Failed to create video converter
1:2:53.755 9238-9277/demo E/VLC: [0000007473e1e210/243d] core filter: Failed to create video converter
1:2:53.755 9238-9277/demo D/VLC: [0000007473e1e210/243d] chain filter: Trying to use chroma RV32 as middle man
1:2:53.756 9238-9277/demo E/VLC: [0000007473e1e590/243d] chain filter: Too high level of recursion (3)
1:2:53.756 9238-9277/demo D/VLC: [0000007473e1e590/243d] core filter: no video converter modules matched
1:2:53.756 9238-9277/demo E/VLC: [0000007473e1e210/243d] core filter: Failed to create video converter
1:2:53.756 9238-9277/demo D/VLC: [0000007473e1e210/243d] chain filter: Trying to use chroma RV24 as middle man
1:2:53.756 9238-9277/demo D/VLC: [0000007473e1e590/243d] core filter: looking for video converter module matching "any": 14 candidates
1:2:53.756 9238-9277/demo E/VLC: [0000007473e1e590/243d] chain filter: Too high level of recursion (3)
1:2:53.756 9238-9277/demo D/VLC: [0000007473e1e590/243d] core filter: no video converter modules matched
1:2:53.756 9238-9277/demo E/VLC: [0000007473e1e210/243d] core filter: Failed to create video converter
1:2:53.756 9238-9277/demo D/VLC: [0000007473e1e210/243d] core filter: no video converter modules matched
1:2:53.756 9238-9277/demo E/VLC: [0000007473e1de90/243d] core filter: Failed to create video converter
1:2:53.756 9238-9277/demo D/VLC: [0000007473e1de90/243d] chain filter: Trying to use chroma I0AL as middle man
1:2:53.756 9238-9277/demo D/VLC: [0000007473e1e210/243d] core filter: looking for video converter module matching "any": 14 candidates
1:2:53.756 9238-9277/demo D/VLC: [0000007473e1e210/243d] chain filter: Trying to use chroma I420 as middle man
1:2:53.756 9238-9277/demo D/VLC: [0000007473e1e590/243d] core filter: looking for video converter module matching "any": 14 candidates
1:2:53.756 9238-9277/demo E/VLC: [0000007473e1e590/243d] chain filter: Too high level of recursion (3)
1:2:53.756 9238-9277/demo D/VLC: [0000007473e1e590/243d] core filter: no video converter modules matched
1:2:53.756 9238-9277/demo E/VLC: [0000007473e1e210/243d] core filter: Failed to create video converter
1:2:53.756 9238-9277/demo D/VLC: [0000007473e1e210/243d] chain filter: Trying to use chroma I422 as middle man
1:2:53.756 9238-9277/demo D/VLC: [0000007473e1e590/243d] core filter: looking for video converter module matching "any": 14 candidates
1:2:53.756 9238-9277/demo E/VLC: [0000007473e1e590/243d] chain filter: Too high level of recursion (3)
1:2:53.756 9238-9277/demo D/VLC: [0000007473e1e590/243d] core filter: no video converter modules matched
1:2:53.756 9238-9277/demo E/VLC: [0000007473e1e210/243d] core filter: Failed to create video converter
1:2:53.757 9238-9277/demo D/VLC: [0000007473e1e210/243d] chain filter: Trying to use chroma I0FL as middle man
1:2:53.757 9238-9277/demo D/VLC: [0000007473e1e590/243d] core filter: looking for video converter module matching "any": 14 candidates
1:2:53.757 9238-9277/demo E/VLC: [0000007473e1e590/243d] chain filter: Too high level of recursion (3)
1:2:53.757 9238-9277/demo D/VLC: [0000007473e1e590/243d] core filter: no video converter modules matched
1:2:53.757 9238-9277/demo E/VLC: [0000007473e1e210/243d] core filter: Failed to create video converter
1:2:53.757 9238-9277/demo D/VLC: [0000007473e1e210/243d] chain filter: Trying to use chroma RV32 as middle man
1:2:53.757 9238-9277/demo D/VLC: [0000007473e1e590/243d] core filter: looking for video converter module matching "any": 14 candidates
1:2:53.757 9238-9277/demo E/VLC: [0000007473e1e590/243d] chain filter: Too high level of recursion (3)
1:2:53.757 9238-9277/demo D/VLC: [0000007473e1e590/243d] core filter: no video converter modules matched
1:2:53.757 9238-9277/demo E/VLC: [0000007473e1e210/243d] core filter: Failed to create video converter
1:2:53.757 9238-9277/demo D/VLC: [0000007473e1e210/243d] chain filter: Trying to use chroma RV24 as middle man
1:2:53.757 9238-9277/demo D/VLC: [0000007473e1e590/243d] core filter: looking for video converter module matching "any": 14 candidates
1:2:53.757 9238-9277/demo E/VLC: [0000007473e1e590/243d] chain filter: Too high level of recursion (3)
1:2:53.757 9238-9277/demo D/VLC: [0000007473e1e590/243d] core filter: no video converter modules matched
1:2:53.757 9238-9277/demo E/VLC: [0000007473e1e210/243d] core filter: Failed to create video converter
1:2:53.757 9238-9277/demo D/VLC: [0000007473e1e210/243d] core filter: no video converter modules matched
1:2:53.757 9238-9277/demo E/VLC: [0000007473e1de90/243d] core filter: Failed to create video converter
1:2:53.757 9238-9277/demo D/VLC: [0000007473e1de90/243d] chain filter: Trying to use chroma I0FL as middle man
1:2:53.757 9238-9277/demo D/VLC: [0000007473e1e210/243d] core filter: looking for video converter module matching "any": 14 candidates
1:2:53.757 9238-9277/demo D/VLC: [0000007473e1e210/243d] chain filter: Trying to use chroma I420 as middle man
1:2:53.757 9238-9277/demo D/VLC: [0000007473e1e590/243d] core filter: looking for video converter module matching "any": 14 candidates
1:2:53.757 9238-9277/demo E/VLC: [0000007473e1e590/243d] chain filter: Too high level of recursion (3)
1:2:53.757 9238-9277/demo D/VLC: [0000007473e1e590/243d] core filter: no video converter modules matched
1:2:53.757 9238-9277/demo E/VLC: [0000007473e1e210/243d] core filter: Failed to create video converter
1:2:53.757 9238-9277/demo D/VLC: [0000007473e1e210/243d] chain filter: Trying to use chroma I422 as middle man
1:2:53.757 9238-9277/demo D/VLC: [0000007473e1e590/243d] core filter: looking for video converter module matching "any": 14 candidates
1:2:53.757 9238-9277/demo E/VLC: [0000007473e1e590/243d] chain filter: Too high level of recursion (3)
1:2:53.757 9238-9277/demo D/VLC: [0000007473e1e590/243d] core filter: no video converter modules matched
1:2:53.757 9238-9277/demo E/VLC: [0000007473e1e210/243d] core filter: Failed to create video converter
1:2:53.757 9238-9277/demo D/VLC: [0000007473e1e210/243d] chain filter: Trying to use chroma I0AL as middle man
1:2:53.757 9238-9277/demo D/VLC: [0000007473e1e590/243d] core filter: looking for video converter module matching "any": 14 candidates
1:2:53.757 9238-9277/demo E/VLC: [0000007473e1e590/243d] chain filter: Too high level of recursion (3)
1:2:53.757 9238-9277/demo D/VLC: [0000007473e1e590/243d] core filter: no video converter modules matched
1:2:53.757 9238-9277/demo E/VLC: [0000007473e1e210/243d] core filter: Failed to create video converter
1:2:53.757 9238-9277/demo D/VLC: [0000007473e1e210/243d] chain filter: Trying to use chroma RV32 as middle man
1:2:53.757 9238-9277/demo D/VLC: [0000007473e1e590/243d] core filter: looking for video converter module matching "any": 14 candidates
1:2:53.757 9238-9277/demo E/VLC: [0000007473e1e590/243d] chain filter: Too high level of recursion (3)
1:2:53.757 9238-9277/demo D/VLC: [0000007473e1e590/243d] core filter: no video converter modules matched
1:2:53.757 9238-9277/demo E/VLC: [0000007473e1e210/243d] core filter: Failed to create video converter
1:2:53.757 9238-9277/demo D/VLC: [0000007473e1e210/243d] chain filter: Trying to use chroma RV24 as middle man
1:2:53.757 9238-9277/demo D/VLC: [0000007473e1e590/243d] core filter: looking for video converter module matching "any": 14 candidates
1:2:53.758 9238-9277/demo E/VLC: [0000007473e1e590/243d] chain filter: Too high level of recursion (3)
1:2:53.758 9238-9277/demo D/VLC: [0000007473e1e590/243d] core filter: no video converter modules matched
1:2:53.758 9238-9277/demo E/VLC: [0000007473e1e210/243d] core filter: Failed to create video converter
1:2:53.758 9238-9277/demo D/VLC: [0000007473e1e210/243d] core filter: no video converter modules matched
1:2:53.758 9238-9277/demo E/VLC: [0000007473e1de90/243d] core filter: Failed to create video converter
1:2:53.758 9238-9277/demo D/VLC: [0000007473e1de90/243d] chain filter: Trying to use chroma RV32 as middle man
1:2:53.758 9238-9277/demo D/VLC: [0000007473e1e210/243d] core filter: looking for video converter module matching "any": 14 candidates
1:2:53.758 9238-9277/demo D/VLC: [0000007473e1e210/243d] chain filter: Trying to use chroma I420 as middle man
1:2:53.758 9238-9277/demo D/VLC: [0000007473e1e590/243d] core filter: looking for video converter module matching "any": 14 candidates
1:2:53.758 9238-9277/demo E/VLC: [0000007473e1e590/243d] chain filter: Too high level of recursion (3)
1:2:53.758 9238-9277/demo D/VLC: [0000007473e1e590/243d] core filter: no video converter modules matched
1:2:53.758 9238-9277/demo E/VLC: [0000007473e1e210/243d] core filter: Failed to create video converter
1:2:53.758 9238-9277/demo D/VLC: [0000007473e1e210/243d] chain filter: Trying to use chroma I422 as middle man
1:2:53.758 9238-9277/demo D/VLC: [0000007473e1e590/243d] core filter: looking for video converter module matching "any": 14 candidates
1:2:53.758 9238-9277/demo E/VLC: [0000007473e1e590/243d] chain filter: Too high level of recursion (3)
1:2:53.758 9238-9277/demo D/VLC: [0000007473e1e590/243d] core filter: no video converter modules matched
1:2:53.758 9238-9277/demo E/VLC: [0000007473e1e210/243d] core filter: Failed to create video converter
1:2:53.758 9238-9277/demo D/VLC: [0000007473e1e210/243d] chain filter: Trying to use chroma I0AL as middle man
1:2:53.758 9238-9277/demo D/VLC: [0000007473e1e590/243d] core filter: looking for video converter module matching "any": 14 candidates
1:2:53.758 9238-9277/demo E/VLC: [0000007473e1e590/243d] chain filter: Too high level of recursion (3)
1:2:53.758 9238-9277/demo D/VLC: [0000007473e1e590/243d] core filter: no video converter modules matched
1:2:53.758 9238-9277/demo E/VLC: [0000007473e1e210/243d] core filter: Failed to create video converter
1:2:53.758 9238-9277/demo D/VLC: [0000007473e1e210/243d] chain filter: Trying to use chroma I0FL as middle man
1:2:53.758 9238-9277/demo D/VLC: [0000007473e1e590/243d] core filter: looking for video converter module matching "any": 14 candidates
1:2:53.758 9238-9277/demo E/VLC: [0000007473e1e590/243d] chain filter: Too high level of recursion (3)
1:2:53.758 9238-9277/demo D/VLC: [0000007473e1e590/243d] core filter: no video converter modules matched
1:2:53.758 9238-9277/demo E/VLC: [0000007473e1e210/243d] core filter: Failed to create video converter
1:2:53.758 9238-9277/demo D/VLC: [0000007473e1e210/243d] chain filter: Trying to use chroma RV24 as middle man
1:2:53.758 9238-9277/demo D/VLC: [0000007473e1e590/243d] core filter: looking for video converter module matching "any": 14 candidates
1:2:53.758 9238-9277/demo E/VLC: [0000007473e1e590/243d] chain filter: Too high level of recursion (3)
1:2:53.758 9238-9277/demo D/VLC: [0000007473e1e590/243d] core filter: no video converter modules matched
1:2:53.758 9238-9277/demo E/VLC: [0000007473e1e210/243d] core filter: Failed to create video converter
1:2:53.758 9238-9277/demo D/VLC: [0000007473e1e210/243d] core filter: no video converter modules matched
1:2:53.758 9238-9277/demo E/VLC: [0000007473e1de90/243d] core filter: Failed to create video converter
1:2:53.758 9238-9277/demo D/VLC: [0000007473e1de90/243d] chain filter: Trying to use chroma RV24 as middle man
1:2:53.758 9238-9277/demo D/VLC: [0000007473e1e210/243d] core filter: looking for video converter module matching "any": 14 candidates
1:2:53.759 9238-9277/demo D/VLC: [0000007473e1e210/243d] chain filter: Trying to use chroma I420 as middle man
1:2:53.759 9238-9277/demo D/VLC: [0000007473e1e590/243d] core filter: looking for video converter module matching "any": 14 candidates
1:2:53.759 9238-9277/demo E/VLC: [0000007473e1e590/243d] chain filter: Too high level of recursion (3)
1:2:53.759 9238-9277/demo D/VLC: [0000007473e1e590/243d] core filter: no video converter modules matched
1:2:53.759 9238-9277/demo E/VLC: [0000007473e1e210/243d] core filter: Failed to create video converter
1:2:53.759 9238-9277/demo D/VLC: [0000007473e1e210/243d] chain filter: Trying to use chroma I422 as middle man
1:2:53.759 9238-9277/demo D/VLC: [0000007473e1e590/243d] core filter: looking for video converter module matching "any": 14 candidates
1:2:53.759 9238-9277/demo E/VLC: [0000007473e1e590/243d] chain filter: Too high level of recursion (3)
1:2:53.759 9238-9277/demo D/VLC: [0000007473e1e590/243d] core filter: no video converter modules matched
1:2:53.759 9238-9277/demo E/VLC: [0000007473e1e210/243d] core filter: Failed to create video converter
1:2:53.759 9238-9277/demo D/VLC: [0000007473e1e210/243d] chain filter: Trying to use chroma I0AL as middle man
1:2:53.759 9238-9277/demo D/VLC: [0000007473e1e590/243d] core filter: looking for video converter module matching "any": 14 candidates
1:2:53.759 9238-9277/demo E/VLC: [0000007473e1e590/243d] chain filter: Too high level of recursion (3)
1:2:53.759 9238-9277/demo D/VLC: [0000007473e1e590/243d] core filter: no video converter modules matched
1:2:53.759 9238-9277/demo E/VLC: [0000007473e1e210/243d] core filter: Failed to create video converter
1:2:53.759 9238-9277/demo D/VLC: [0000007473e1e210/243d] chain filter: Trying to use chroma I0FL as middle man
1:2:53.759 9238-9277/demo D/VLC: [0000007473e1e590/243d] core filter: looking for video converter module matching "any": 14 candidates
1:2:53.759 9238-9277/demo E/VLC: [0000007473e1e590/243d] chain filter: Too high level of recursion (3)
1:2:53.759 9238-9277/demo D/VLC: [0000007473e1e590/243d] core filter: no video converter modules matched
1:2:53.759 9238-9277/demo E/VLC: [0000007473e1e210/243d] core filter: Failed to create video converter
1:2:53.759 9238-9277/demo D/VLC: [0000007473e1e210/243d] chain filter: Trying to use chroma RV32 as middle man
1:2:53.759 9238-9277/demo D/VLC: [0000007473e1e590/243d] core filter: looking for video converter module matching "any": 14 candidates
1:2:53.759 9238-9277/demo E/VLC: [0000007473e1e590/243d] chain filter: Too high level of recursion (3)
1:2:53.759 9238-9277/demo D/VLC: [0000007473e1e590/243d] core filter: no video converter modules matched
1:2:53.759 9238-9277/demo E/VLC: [0000007473e1e210/243d] core filter: Failed to create video converter
1:2:53.759 9238-9277/demo D/VLC: [0000007473e1e210/243d] core filter: no video converter modules matched
1:2:53.759 9238-9277/demo E/VLC: [0000007473e1de90/243d] core filter: Failed to create video converter
1:2:53.759 9238-9277/demo D/VLC: [0000007473e1de90/243d] core filter: no video filter modules matched
1:2:53.759 9238-9277/demo E/VLC: [000000748ae9b590/243d] core video output: Failed to create video filter 'deinterlace'
1:2:53.759 9238-9277/demo E/VLC: [000000748ae9b590/243d] core video output: Failed to add filter 'deinterlace'
1:2:53.759 9238-9277/demo D/VLC: [00000074799f1890/243d] android_display vout display: change display size: 1280x720
1:2:53.759 9238-9277/demo E/VLC: [00000074799f1890/243d] core vout display: Failed to change zoom
1:2:53.759 9238-9277/demo D/VLC: [00000074799f1890/243d] android_display vout display: change source crop/aspect
1:2:53.759 9238-9274/demo D/VLC: [000000748aee2e90/243a] core spu text: removing module "freetype"
1:2:53.760 9238-9277/demo W/VLC: [00000074799f1890/243d] android_display vout display: Unknown request in android-display: 8
1:2:53.760 9238-9277/demo E/VLC: [00000074799f1890/243d] core vout display: Failed to change Viewpoint
1:2:53.760 9238-9274/demo D/VLC: [000000748aee2e90/243a] core spu text: looking for text renderer module matching "any": 1 candidates
1:2:53.760 9238-9277/demo E/VLC: [000000748afc2850/243d] android_window window: request 1 not implemented
1:2:53.760 9238-9274/demo D/VLC: [000000747383be10/243a] core stream: creating access: file:///system/etc/system_fonts.xml
1:2:53.760 9238-9274/demo D/VLC: [000000747383be10/243a] core stream: (path: /system/etc/system_fonts.xml)
1:2:53.760 9238-9274/demo D/VLC: [000000747383be10/243a] core stream: looking for access module matching "file": 22 candidates
1:2:53.760 9238-9274/demo E/VLC: [000000747383be10/243a] filesystem stream: cannot open file /system/etc/system_fonts.xml (No such file or directory)
1:2:53.760 9238-9274/demo E/VLC: [000000747383be10/243a] core stream: File reading failed
1:2:53.760 9238-9274/demo E/VLC: [000000747383be10/243a] core stream: VLC could not open the file "/system/etc/system_fonts.xml" (No such file or directory).
1:2:53.760 9238-9274/demo D/VLC: [000000747383be10/243a] core stream: no access modules matched
1:2:53.760 9238-9274/demo E/VLC: [000000748aee2e90/243a] core spu text: no suitable access module for `file:///system/etc/system_fonts.xml'
1:2:53.760 9238-9274/demo D/VLC: [000000747383be10/243a] core stream: creating access: file:///system/etc/fallback_fonts.xml
1:2:53.760 9238-9274/demo D/VLC: [000000747383be10/243a] core stream: (path: /system/etc/fallback_fonts.xml)
1:2:53.760 9238-9274/demo D/VLC: [000000747383be10/243a] core stream: looking for access module matching "file": 22 candidates
1:2:53.760 9238-9274/demo E/VLC: [000000747383be10/243a] filesystem stream: cannot open file /system/etc/fallback_fonts.xml (No such file or directory)
1:2:53.760 9238-9274/demo E/VLC: [000000747383be10/243a] core stream: File reading failed
1:2:53.760 9238-9274/demo E/VLC: [000000747383be10/243a] core stream: VLC could not open the file "/system/etc/fallback_fonts.xml" (No such file or directory).
1:2:53.760 9238-9274/demo D/VLC: [000000747383be10/243a] core stream: no access modules matched
1:2:53.760 9238-9274/demo E/VLC: [000000748aee2e90/243a] core spu text: no suitable access module for `file:///system/etc/fallback_fonts.xml'
1:2:53.760 9238-9274/demo D/VLC: [000000747383be10/243a] core stream: creating access: file:///vendor/etc/fallback_fonts.xml
1:2:53.760 9238-9274/demo D/VLC: [000000747383be10/243a] core stream: (path: /vendor/etc/fallback_fonts.xml)
1:2:53.760 9238-9274/demo D/VLC: [000000747383be10/243a] core stream: looking for access module matching "file": 22 candidates
1:2:53.760 9238-9274/demo E/VLC: [000000747383be10/243a] filesystem stream: cannot open file /vendor/etc/fallback_fonts.xml (No such file or directory)
1:2:53.760 9238-9274/demo E/VLC: [000000747383be10/243a] core stream: File reading failed
1:2:53.760 9238-9274/demo E/VLC: [000000747383be10/243a] core stream: VLC could not open the file "/vendor/etc/fallback_fonts.xml" (No such file or directory).
1:2:53.760 9238-9274/demo D/VLC: [000000747383be10/243a] core stream: no access modules matched
1:2:53.760 9238-9274/demo E/VLC: [000000748aee2e90/243a] core spu text: no suitable access module for `file:///vendor/etc/fallback_fonts.xml'
1:2:53.761 9238-9274/demo D/VLC: [000000748aee2e90/243a] core spu text: using text renderer module "freetype"
1:2:53.761 9238-9274/demo D/VLC: [000000748aee2790/243a] mediacodec decoder: mediacodec configured for adaptative playback
1:2:53.766 9238-9279/demo I/OMXClient: MuxOMX ctor
1:2:53.771 9238-9278/demo I/MediaCodec: [OMX.amlogic.avc.decoder.awesome] setting surface generation to 9459713
1:2:53.773 9238-9279/demo D/ACodec_amlogic: query systemComposer 1
1:2:53.774 9238-9279/demo E/ACodec: [OMX.amlogic.avc.decoder.awesome] storeMetaDataInBuffers failed w/ err -2147483648
1:2:53.792 9238-9279/demo D/SurfaceUtils: set up nativeWindow 0x7492857610 for 736x576, color 0x11, rotation 0, usage 0x2002900
1:2:53.794 9238-9279/demo W/ACodec: [OMX.amlogic.avc.decoder.awesome] setting nBufferCountActual to 8 failed: -1010
1:2:53.796 9238-9279/demo W/ACodec: [OMX.amlogic.avc.decoder.awesome] setting nBufferCountActual to 7 failed: -1010
1:2:53.836 9238-9265/demo D/VLC: [000000747985c890/2431] core input: Buffering 76%
1:2:53.837 9238-9265/demo D/VLC: [000000747985c890/2431] core input: Buffering 81%
1:2:53.844 9238-9265/demo D/VLC: [000000747985c890/2431] core input: Buffering 85%
1:2:53.849 9238-9274/demo D/VLC: [000000748aee2790/243a] mediacodec decoder: MediaCodec via NDK opened
1:2:53.849 9238-9274/demo D/VLC: [000000748aee2790/243a] core decoder: using video decoder module "mediacodec"
1:2:53.861 9238-9265/demo D/VLC: [000000747985c890/2431] core input: Buffering 90%
1:2:53.861 9238-9265/demo D/VLC: [000000747985c890/2431] core input: Buffering 95%
1:2:53.998 9238-9283/demo E/VLC: [000000748aee2790/2443] mediacodec decoder: output: 17 unknown, 720x576 stride 736 576, crop 0 0 0 0
1:2:53.998 9238-9283/demo D/VLC: [000000748aee2790/2443] core decoder: Received first picture
1:2:54.081 9238-9265/demo D/VLC: [000000747985c890/2431] core input: Stream buffering done (1509 ms in 1450 ms)
1:2:54.082 9238-9265/demo D/VLC: [000000747985c890/2431] core input: Decoder wait done in 0 ms
1:2:54.082 9238-9276/demo W/AudioTrack: releaseBuffer() track 0x7492953200 disabled due to previous underrun, restarting
1:2:54.083 9238-9269/demo W/VLC: [000000748829bb10/2435] core audio output: playback way too early (-384639): playing silence
1:2:54.084 9238-9269/demo D/VLC: [000000748829bb10/2435] core audio output: inserting 18462 zeroes
1:2:54.839 9238-9277/demo D/VLC: [00000074799f1890/243d] core vout display: auto hiding mouse cursor
1:2:54.839 9238-9277/demo E/VLC: [000000748afc2850/243d] android_window window: request 3 not implemented

Jean-Baptiste Kempf
Site Administrator
Site Administrator
Posts: 37523
Joined: 22 Jul 2005 15:29
VLC version: 4.0.0-git
Operating System: Linux, Windows, Mac
Location: Cone, France
Contact:

Re: Android: problems with deinterlacing

Postby Jean-Baptiste Kempf » 27 Nov 2017 01:09

Sorry, but can you do logs without the forced options you have put?

Because so far, we see is_needed=0
Jean-Baptiste Kempf
http://www.jbkempf.com/ - http://www.jbkempf.com/blog/category/Videolan
VLC media player developer, VideoLAN President and Sites administrator
If you want an answer to your question, just be specific and precise. Don't use Private Messages.

dikranh
New Cone
New Cone
Posts: 8
Joined: 20 Nov 2017 18:03

Re: Android: problems with deinterlacing

Postby dikranh » 27 Nov 2017 09:34

Do you mean changing:

Code: Select all

args.add("--deinterlace=1");
to

Code: Select all

args.add("--deinterlace=-1");
?

Just a reminder, that on the windows desktop version of VLC, I have to make sure the deinterlace is set to "on" for it to work. If I leave it on "auto", it does not work!

Jean-Baptiste Kempf
Site Administrator
Site Administrator
Posts: 37523
Joined: 22 Jul 2005 15:29
VLC version: 4.0.0-git
Operating System: Linux, Windows, Mac
Location: Cone, France
Contact:

Re: Android: problems with deinterlacing

Postby Jean-Baptiste Kempf » 28 Nov 2017 09:37

Then, your sample is wrongly detected. You cannot fix on Android without fixing on desktop first.
Jean-Baptiste Kempf
http://www.jbkempf.com/ - http://www.jbkempf.com/blog/category/Videolan
VLC media player developer, VideoLAN President and Sites administrator
If you want an answer to your question, just be specific and precise. Don't use Private Messages.

dikranh
New Cone
New Cone
Posts: 8
Joined: 20 Nov 2017 18:03

Re: Android: problems with deinterlacing

Postby dikranh » 30 Nov 2017 09:29

The sample is from a DVB-S MPEG2-TS feed (interlaced) being encoded by VLC as follows:

/usr/bin/vlc -I dummy --avcodec-hw=any udp://@:2205 --aspect-ratio 16:9 --sout=#transcode{aenc=ffmpeg{strict=-2},vcodec=h264,vb=1000,acodec=aac,ab=96,channels=2,samplerate=48000,venc=x264{vbv-maxrate=1000,vbv-bufsize=200,subme=1,threads=8,ref=1,keyint=30,trellis=1,direct=auto}}:duplicate{dst=std{access=http,mux=ts,dst=127.0.0.1:2305/test},select='es=1917,es=1817'}

Encoder vlc:
#vlc --version
VLC media player 2.2.2 Weatherwax (revision 2.2.1-0-ga425c42)

What am I doing wrong?


Return to “Development around libVLC”

Who is online

Users browsing this forum: No registered users and 4 guests