HackerLangs
TopNewTrendsCommentsPastAskShowJobs

TD-Linux

no profile record

comments

TD-Linux
·23 dagen geleden·discuss
Every Intel laptop with integrated graphics has been unified memory, all the way back to ye olde 915 in 2004 at least.
TD-Linux
·27 dagen geleden·discuss
Yes. The default ffmpeg build enables everything, and most distros follow suit. Security conscious web services generally disable a lot of them, but there is no official list on which are considered more secure than others, so every site tends to have its own unique mix.
TD-Linux
·2 maanden geleden·discuss
Hardware support does not matter for TS, as containers are handled in software.

Fast start is irrelevant because MoQ normally uses fragmented MP4, not progressive.
TD-Linux
·2 maanden geleden·discuss
HLS also supports fMP4 now and no one is making new services that use TS (there are some old ones still around with too much friction to switch)
TD-Linux
·3 maanden geleden·discuss
Funnily enough, KDE got this feature yesterday: https://invent.kde.org/plasma/kwin/-/merge_requests/8602
TD-Linux
·5 maanden geleden·discuss
While I think you are oversimplifying the timing issue, you are not the first to think that about 2110.

https://stop2110.org/
TD-Linux
·6 maanden geleden·discuss
If you want OpenWRT you don't want this, you want one of the Mediatek based routers (GL-MT*).
TD-Linux
·7 maanden geleden·discuss
Specifically, it needs an age rating set or it can't be viewed in Europe without an account.
TD-Linux
·9 maanden geleden·discuss
Which is completely wrong by the way, JPEG-XL quantizes its coefficients after the DCT transform like every other lossy codec. Most codecs have at least some amount of range expansion in their DCT as well, so the values quantized might be greater bit depth than the input data.
TD-Linux
·5 jaar geleden·discuss
I am surprised to see what I consider to be the most important part of signed integers in C and C++ only barely mentioned:

>use of signed integers is better as it’s the only way you can get trap behavior for integers, as using it on unsigned would trigger trap representations for valid code that relies on that behavior.

For video and audio codec code, and really anything integer math heavy, being able to use UBSan to find overflows is a hugely beneficial tool, and something you can normally only do with signed integers due to the C spec (it's less of an issue in Rust as that language makes both signed and unsigned overflow illegal).

>Trap representations are actually quite insufficient as they can only trigger at runtime when those paths are successfully executed with the correct trap-producing inputs. This coverage is impossible to expect in any non-trivial program even with exhaustive unit testing.

This was true before fuzzers existed, but now that we have several very good fuzzer implementations (plus a few smart unit tests), the coverage is well within reach.
TD-Linux
·10 jaar geleden·discuss
Do you actually need to do baseband sampling? It might be cheaper to bandpass and downconvert the received signal with an analog network first.