Search found 5 matches

Go to advanced search

by CRASH#
14 Jan 2017 15:12
Forum: VLC media player for Linux and friends Troubleshooting
Topic: How can I detect memory leak?
Replies: 1
Views: 1361

How can I detect memory leak?

Some times after 30-40 min on some streams I have memory leak on the latest git version.

How I can create debug for create issue?

Image
by CRASH#
01 Jun 2016 10:51
Forum: Development around libVLC
Topic: How can I Handle Native events?
Replies: 1
Views: 318

How can I Handle Native events?

Becouse "--http-reconnect" not working, I want restart stream manually by handling native events.
How can I do it? Thanks.
by CRASH#
25 May 2016 14:44
Forum: Development around libVLC
Topic: How to attach SurfaceView on libVLC 1.9.8?
Replies: 3
Views: 1130

Re: How to attach SurfaceView on libVLC 1.9.8?

The answer:

Code: Select all

IVLCVout vout = mMediaPlayer.getVLCVout(); vout.setVideoView(mSurface); vout.addCallback(this); vout.attachViews();
by CRASH#
25 May 2016 11:34
Forum: Development around libVLC
Topic: How to attach SurfaceView on libVLC 1.9.8?
Replies: 3
Views: 1130

How to attach SurfaceView on libVLC 1.9.8?

Hello, on version 1.0.6 I am using follow code: mSurfaceView = (SurfaceView) mainActivity.findViewById(R.id.surfaceView); mSurfaceHolder = mSurfaceView.getHolder(); mLibVLC = new LibVLC(); mLibVLC.setAout(mLibVLC.AOUT_AUDIOTRACK); mLibVLC.setVout(mLibVLC.VOUT_ANDROID_SURFACE); mLibVLC.init(mainActiv...

Go to advanced search