Live data from Hacker News

Viewing profile — dubiousconst281

dubiousconst281

HN member
Joined
Fri, Dec 31, 2021, 9:05 AM UTC
HN karma
86
Public activity
11 items

About dubiousconst281

No profile information was provided.

Recent public activity

  1. comment
    Comment #33339605

    Back a while I tried to implement a MP4 demuxer, and I can kind of relate to that. The mdat box is sometimes an opaque blob and you need to parse the codec framing to split packets…

  2. comment
    Comment #33334574

    ReferenceSource is the code from the Windows framework and I'm pretty sure it should be considered deprecated at this point. The runtime and core libraries are now at https://githu…

  3. comment
    Comment #32903386

    It's mind blowing how much effort they put into this, the MCHPRS server even JIT compiles redstone into native code using Cranelift: https://github.com/MCHPR/MCHPRS/blob/master/doc…

  4. comment
    Comment #32533729

    One fast way to do palette reduction is by using a 16-bit RGB565 lookup table filled with all the closest colors relative to each entry index, then you can replace each pixel in th…

  5. comment
    Comment #32332366

    It seems that the exact opposite problem (phi elimination / translating out of SSA form) is rarely discussed in depth, especially in introductory material. From what I've seen, mos…

  6. comment
    Comment #32263221

    I wonder how signed distance fields performs in practice. Seems like it would fix, or at least minimize the scaling/offset issues quite nicely. https://github.com/Chlumsky/msdfgen

  7. comment
    Comment #31501991

    There's also the chroma subsampling issue. With the standard 4:2:0 ratios, you'll get half the resolution for the two chroma channels, and if I'm not mistaken, they are more aggres…

  8. comment
    Comment #31312544

    You can get libx264 to encode 1080p in under 10ms if you spend enough time tuning it, altough I never compared the quality to JPEG.

  9. comment
    Comment #31081401

    I've seen a lot of Spotify downloaders using librespot and similar. An interesting exception is Soggfy, which just hooks and dumps the ogg files from the Spotify client. https://gi…

  10. comment
    Comment #29929095

    Widevine is a joke, L3 at least. You can easily dump all video and audio frames by hooking into Chromium's CDM wrapper.

  11. comment
    Comment #29792639

    I'm guessing the reason is because of code gen issues, there's a lot of workarounds throughout the BCL code base.