Jean-Baptiste Kempf , thanks, actually there was more problems that one in the Debian/Ubuntu cross-platform building team may expect. And, please, jb, pick this: contrib files downloaded at 'make prebuilt' step: ls -l ../contrib/x86_64-w64-mingw32/lib/|grep libdts lrwxrwxrwx 1 1015 1016 56 Apr 8 20...
Hi. So, if my plugin has: set_shortname( "some" ) set_category( CAT_AUDIO ) set_subcategory( SUBCAT_AUDIO_AFILTER ) add_string("some-val", "nothing, really", "some value") And bare expectations were: if all vars are exposed via non-hardcoded interface, and, re...
For my next plugin, I need to draw graphics outside of video area. How I should think about it, especially when it comes to video cropping / aspect ratio?
Hi all. Wiki page on OutOfTree build is telling nothing cross-platform related; also, there's no good reliable example in any publicly available 3rdparty plugin code. Using plain makefile template with CC set to mingw32-c++ , make result is: mingw32-c++ -std=gnu99 -Wl,-no-undefined,defs -lvlccore -l...
Bar Graph's code is what makes no sense..
var_CreateGetIntegerCommand? TCP connections? How do they even synchronize their video and audio parts? // that I was asking after looking at the source
sub filter plugins should be able to access the text before rendering. Nope.. subpic filters (as in SUBCAT_VIDEO_SUBPIC, "sub filter", pf_sub_filter) are seemingly receiving empty p_subpic->p_region value in pf_sub_filter call, so p_subpic->p_region->psz_text route is unavailable.
Hi all. What are the best possible approaches to be able to receive subtitle text input in plain text, without rewriting Freetype renderer's code - exactly, to avoid any modifications in main source tree? // currently I look at Marquee's source code, but feel there's something incomplete with its SU...
Hi all. For my ongoing project, I need to talk between two completely different plugins (sending messages from plugin object to plugin object few times a second). Currently I use SHM, but the code looks much unportable :( is there a native plugin-to-plugin messaging layer in VLC plugins? (I write ou...