Forgive me for my ignorance - but my understanding is that VLC is a frontend for ffmpeg, and even ffmpeg is 'just' a wrapper for hardware video decoders such as NVDEC when viewing supported codecs, like h264/5.
VLC for Unity now supported on Linux
51–58 of 58 posts
Re: VLC for Unity now supported on Linux
#52Earlier quoted context omitted.
Side note--is there any way to access reddit now for people who refuse to log in or get the app? Old reddit asks tells me I have to use new reddit for "security" and new reddit says "Get the app to keep using Reddit".
On mobile ? Not really. Their website is mobile cancer, and their app is barely better. I'm impressed at how bad it is, and it's not even about "pushing more ads" but "controlling what people see". That's also why they've removed r/all.
Re: VLC for Unity now supported on Linux
#53Earlier quoted context omitted.
On mobile ? Not really. Their website is mobile cancer, and their app is barely better. I'm impressed at how bad it is, and it's not even about "pushing more ads" but "controlling what people see". That's also why they've removed r/all.
Its r/popular now
Re: VLC for Unity now supported on Linux
#54Earlier quoted context omitted.
Context about the Unity terms change controversy: https://www.gamedeveloper.com/business/unity-is-killing-its-... > Initially, the Runtime Fee sought to charge developers a per install tariff once projects had passed certain milestones. It was a decision that left many users reeling, resulting in a colossal backlash (…) How users reacted: https://old.reddit.com/r/OutOfTheLoop/comments/16h9lnw/whats... > Any install,…
Side note--is there any way to access reddit now for people who refuse to log in or get the app? Old reddit asks tells me I have to use new reddit for "security" and new reddit says "Get the app to keep using Reddit".
Re: VLC for Unity now supported on Linux
#55Earlier quoted context omitted.
Don't forget to build 'correct' ELF64 binaries for broad elf(glibc)/linux distro support (-static-libgcc -static-libstdc++, and tight glibc ABI version control with binutils VERSION scripts). At least those build options should be default.
thanks for your comment, will look into it!
The part which in missed all the time is the control of the glibc ABI version. Either you link with an "old" glibc, or you go 'Right Way(TM)', documentation is on binutils web site (noscript/basic HTML) : https://sourceware.org/binutils/docs/ld/VERSION.html
Must include glibc internal symbols.
I would use the "readelf" command to audit the binaries for broad elf(glibc)/linux distro support (like stock unity has been). Namely DT_NEED entries, symbol/shared lib version requirement (at the end of readelf output), etc.
An additional note: in the case of a complex set of ELF64 binaries, don't forget that ELF DT_RPATH is deprecated in favor of ELF DT_RUNPATH (see man page of ld.so). To force DT_RPATH into DT_RUNPATH, you must use the follower binutils ld option: '--enable-new-dtags' (using the compiler driver, that would be '-Wl,--enable-new-dtags'. Carefull, you'll see that in ld.so man page, DT_RPATH and DT_RUNPATH do not behave the same way. You should use dynamic loading for your private shared libs using the $ORIGIN keyword anyway.
Ofc, dynamic loading (libdl/dlopen/dlsym/dlclose) is mandatory for system interface shared libs, and for core video games: libX11 set or xcb set of client X11 libs, libasound (wayland code is statically linked with its libxkbcommon for xkb keymap handling). Basically, The DT_NEED entries of your set of ELF64 binaries must reference only common glibc libs (and if you don't dynamically load them, your private ones with proper DT_RUNPATH).
Re: VLC for Unity now supported on Linux
#56Earlier quoted context omitted.
Its r/popular now
r/popular already existed before, and this is different, it's the same idea as facebook, instagram, twitter ... It's a curated feed not in an order or same weight feed. In other words, it's used or can and will be used to push whatever.
Re: VLC for Unity now supported on Linux
#57Earlier quoted context omitted.
Context about the Unity terms change controversy: https://www.gamedeveloper.com/business/unity-is-killing-its-... > Initially, the Runtime Fee sought to charge developers a per install tariff once projects had passed certain milestones. It was a decision that left many users reeling, resulting in a colossal backlash (…) How users reacted: https://old.reddit.com/r/OutOfTheLoop/comments/16h9lnw/whats... > Any install,…
Side note--is there any way to access reddit now for people who refuse to log in or get the app? Old reddit asks tells me I have to use new reddit for "security" and new reddit says "Get the app to keep using Reddit".
Re: VLC for Unity now supported on Linux
#58Earlier quoted context omitted.
thanks for your comment, will look into it!
Let me add a bit more: The part which in missed all the time is the control of the glibc ABI version. Either you link with an "old" glibc, or you go 'Right Way(TM)', documentation is on binutils web site (noscript/basic HTML) : https://sourceware.org/binutils/docs/ld/VERSION.html Must include glibc internal symbols. I would use the "readelf" command to audit the binaries for broad elf(glibc)/linux distro support (lik…