Yusuf Redžić

Results 80 comments of Yusuf Redžić

And ofc, good luck with the project in general and I understand whichever direction the project decides to take.

That's what I was checking for as well, I searched AAC and it's not listed there either. I found some information about it: > RTMP protocol supports H264 but does...

Hm, from what I'm reading it seems like browsers offload the decoding to the underlying OS so in a sense it might still work, I think it'll have to be...

Yeah, I think AV1 support would be pretty awesome, even though it might not be so practical for most people (at least for real time encoding, decoding support is actually...

Sorry for the late response on this, I have been busy with a lot of stuff. From my simple benchmarking, it seems like you're right; there are definitely performance benefits...

I'm currently working on implementing memchr for aarch64 NEON for this crate (although there is already https://github.com/ARM-software/optimized-routines which has memchr for NEON and even SVE, but maybe unrolling the loop...

Yeah that makes sense, I definitely agree that intrinsics are significantly easier to maintain than Assembly code. I only suggested it because that's probably the only good way to immediately...

> Have you seen the Vector trait in the memmem module? Ideally we could bring that to memchr too, which is what https://github.com/BurntSushi/memchr/pull/103 does. And then just impl that trait...

Hmm, strangely enough, even though the docs say they are a nightly-only API, the supposedly unstable intrinsics compile completely fine on stable. Huh, I guess this will be easier than...

> Interesting. Can you point to at least one intrinsic that claims itself as unstable but compiles on stable? Yes. For reference, [`vld1q_u8`](https://doc.rust-lang.org/core/arch/aarch64/fn.vld1q_u8.html) has no disclaimer in the docs that...