Hi!
I successfully compiled VLC-git and SDL2 on Raspberry Pi B2 (it took approx. 1h).
I use ArchLinux but i also compiled on Raspbian before and it worked as well.
I havn't installed any X environnement.
SDL2 seems to work properly: i can make a Texture example to display.
LibVLC seems to work properly too: i can compile and execute a simple player
like this one: https://wiki.videolan.org/LibVLC_Tutorial/
Now i try to make the SDL2+LibVLC example to work !
https://wiki.videolan.org/LibVLC_SampleCode_SDL/
The links are ok, SDL2 and LibVLC are found and compilation works properly,
but when i try to execute the program i end up with something like this:
[70a16448] chain filter error: Too high level of recursion (2)
[70a15d48] core filter error: Failed to create video filter2
[70a16448] chain filter error: Too high level of recursion (2)
[70a15d48] core filter error: Failed to create video filter2
[70a16448] chain filter error: Too high level of recursion (2)
[70a15d48] core filter error: Failed to create video filter2
...
multiple times,
then the LOCK function is called and return properly
and i finally have a Segmentation fault (core dumped)
before DISPLAY or UNLOCK are even called..
If i execute the same code while commenting the libvlc_video_set_callbacks function,
everything works fine, but of course SDL is not used (only instantiated).
I also use --aout alsa / --vout mmal_vout
and --yuv-chroma h264 (i tried different settings here, without success..)
Any clue ?
Did i missed something ?
Thanks for your help !
Best,