Search found 7 matches

Go to advanced search

by vlad-29
08 Feb 2017 15:11
Forum: VLC media player for Windows Troubleshooting
Topic: RTP stream flickers with wide black lines
Replies: 4
Views: 1821

Re: RTP stream flickers with wide black lines

Thanks, I found the problem. Sometimes imem module took buffer that was not ready to be taken, so it displayed the frame that was't copied to the end.
by vlad-29
08 Feb 2017 12:27
Forum: VLC media player for Windows Troubleshooting
Topic: RTP stream flickers with wide black lines
Replies: 4
Views: 1821

Re: RTP stream flickers with wide black lines

Here is frame with line. It is too hard to catch flickering lines with screenshot so I took video of screen and get this frame from it. https://image.ibb.co/fm3XQa/second.jpg I have tried: different cache size for network, anti-flickering filters, different codecs and video bit-rate in libvlc stream...
by vlad-29
06 Feb 2017 12:11
Forum: VLC media player for Windows Troubleshooting
Topic: RTP stream flickers with wide black lines
Replies: 4
Views: 1821

RTP stream flickers with wide black lines

Hello, I'm streaming video from webcam over rtp with libvlc and watch it on the same computer with VLC but I have flickering wide black horizontal lines. It seems like there is packet loss but I can't understand how they can loss on the same computer. There is no log messages when I see black lines....
by vlad-29
06 Feb 2017 11:56
Forum: Development around libVLC
Topic: Memory leak while using libvlc imem module
Replies: 2
Views: 3530

Re: Memory leak while using libvlc imem module

I found the problem. This is unnecessary and makes memory leak. There is no need to allocate memory in imem-get function.

Code: Select all

if(!bufferinit) *buffer = malloc(size);// malloc once memcpy(*buffer, data, size);
by vlad-29
13 Dec 2016 08:21
Forum: Development around libVLC
Topic: Memory leak while using libvlc imem module
Replies: 2
Views: 3530

Memory leak while using libvlc imem module

Hello, I have memory leak when I play or broadcast video from my camera with imem module. I used this code: int myImemGetCallback(void *data, const char *cookie, int64_t *dts, int64_t *pts, unsigned *flags, size_t * bufferSize, void ** buffer) { int ret = 0; int size = globalsize; if(!bufferinit) *b...
by vlad-29
28 Nov 2016 09:35
Forum: Development around libVLC
Topic: Get RV24 with imem from Intel RealSense camera and broadcast it
Replies: 0
Views: 612

Get RV24 with imem from Intel RealSense camera and broadcast it

Hello, I'm trying to broadcast segmented frames from RealSense SR300 camera. I'm using imem module to input segmented frames in RV24 but get nothing. I have used parts of code for imem callbacks from here https://forum.videolan.org/viewtopic.php?t=122178 Here is my code: uint8_t * buffertobroadcast;...
by vlad-29
18 Nov 2016 12:51
Forum: Development around libVLC
Topic: Simple code couse devision by 0 when transcode the screen
Replies: 1
Views: 265

Simple code couse devision by 0 when transcode the screen

Hello, I'm trying to make frames broadcast from imem but i have several errors so i tryed to broadcast the screen and got division by 0 error with this code: libvlc_instance_t * inst; libvlc_media_player_t *mp; libvlc_media_t *m; inst = libvlc_new(0, NULL); m = libvlc_media_new_location(inst, "...

Go to advanced search