Posts
4927
Following
327
Followers
491
Linux kernel hacker and maintainer etc.

OpenPGP: 3AB05486C7752FE1
My new dev machine 💛💣
0
0
2
It's soon 2025 and still nothing about #XCOM 3 :-(
1
0
1
Because Valve's client app does not suck, and Epic's launcher does in fact suck? Perhaps? 🤷

https://www.youtube.com/watch?v=k_1Z3WEzLj4

#valve #epic #steam
0
0
0

HAAAhahaha

28
12
3

Meanwhile Elon Musk is trying to destabilize the UK.

Maybe take that into consideration next time you buy a car or cheer for SpaceX.

https://www.politico.eu/article/elon-musk-brand-uk-tyrannical-police-state/

0
4
1
@patricklang For me Ableton's Glue sounds better even than actual hardware SSL because that is the sound where I learned about feedback compression :-) So it is kind of choice between my "reference" or something else when it comes to that compressor. Good in sound is a lot what you are used to as good.
0
0
0
Edited 11 months ago
@patricklang My point of view of many of the new features: it's cool that there is stock option but if there is already functional plugin it is not in the end as useful as these small workflow optimizations... E.g. cool that there is 909 and pitch shifter but you cannot level up much with those.

E.g. not that long ago Compressor+ came with glue compression (feedback input signal) but after trying out different settings I still cannot dial it as well as https://cytomic.com/product/glue/, which I bought after switching to Bitwig because Live's Glue was so great (and it's the same same). It does not need a lot in color that you just don't like it as much...

Stepwise is also great because in the past you could emulate Effectrix with a complex Grid patch but it was not that practical. But now with Stepwise and "In any Grid patch, parsing each lane's stream" you can actually make that kind of thing also as usable as Effectrix...
1
0
0
0
0
0
@patricklang Yeah, a huge workflow improvement IMHO.
1
0
0
Actually working on a blockchain node implementation on the other hand drives me purely by challenge because I don't know anything about the topic.
0
0
0
In addition to loopback driver for v4l2 I'm also working still on TPM2 signers patch set for asymmetric keys. Both are off-work business :-) I enjoy working with kernel now like this because I can do features based on my own needs, not on corporate needs... Thus also features are rare because I don't get anything out of doing something if I don't have need for it. Challenge by itself does not drive me for some reason (unless someone offers me money for doing a feature).
1
0
1
I ended up ordering 9990X based machine, which I will later upgrade during its life-cycle to 9990X3D. Should be enough power for my needs in kernel and Rust...

First machine I bought "as a company" as I'm working as a contractor and first machine with water cooling ;-)

It's a custom build from local computer shop with 24 month full service for replacing parts etc. (so I don't have to do that).
0
1
1
Edited 11 months ago
BItwig Studio 5.3 will have the feature I've wanted to any DAW for ages: accented notes in the piano roll. So that you can use two logical velocities and then just put them into good values. A HUGE time saver...

From all the features listed, accented notes is my favorite. Wanted it for so long...

https://downloads.bitwig.com/5.3%20Beta%201/Release-Notes-5.3-Beta-1.html

#bitwig #musicproduction
1
0
0
Edited 11 months ago
Writing down this for myself for the most part to get idea what to write to the cover letter later on.

My RFC driver model for v4l2-loopback will be centered around /dev/video_loop. It has only single ioctl (OOT driver has three), which has N input parameters (describing metadata for the video device) and exactly two output parameters:

1. capture_fd: communications end point for the virtual capture device. Created using anonymous inode.
2. output_nr: /dev/video{output_nr} is the V4L2 device for the output.

There is no query ioctl because any sane program should at minimum know what resources it creates and should not have privilege in the first place to peak others resources.

There is no remove ioctl because close(capture_fd) destroys /dev/video{output_nr}

Neither overlay nor dma-buf support in the initial version (should be reviewed from basis that these can be extended later on).

#linux #kernel #video4linux #v4l2loopback
0
1
0
Edited 11 months ago
@oleksandr A driver model where fd represents a capture device and state change by writes to that descriptor.

So yeah I ripped OTT drive off and now I'm stripping it off :-)

I realized that e.g. tpm_vtpm_proxy and also SGX driver have some innovations in device management that I can re-use that code and combine it with innards of the OTT driver.

So I'm going through this slow process right now: https://git.kernel.org/pub/scm/linux/kernel/git/jarkko/linux-tpmdd.git/log/?h=v4l2-loopback-dev

Once I have something that make sense I rewrite all device management shenanigans. That will result an RFC patch :-)
0
1
0
@oleksandr I'm making RFC patch set of in-kernel driver...

Factor out the core code from this and wrap it with better driver model.
2
0
0
Getting camera when using Google Meet is a great motivator:

$ git -P log --oneline master..
4443634cf761 (HEAD -> v4l2-loopback-dev, origin/v4l2-loopback-dev) media: v4l2-loopback: Open code "max_buffers"
2675a7f243a9 media: v4l2-loopback: Reorganize constants
c2b256ea51a0 media: Remove V4L2L_OVERLAY code path
2518279c3788 media: Remove !V4L2LOOPBACK_WITH_STD code path
0d8d5155c6ab media: Open code v4l2l_pix_format_has_valid_sizeimage()
c5e199b864fe media: v4l2-loopback: Replace dprintk() with pr_debug()
75cc3a15ccf0 media: v4l2-loopback: Remove the parameter "debug"
36ae93bcb2d7 media: v4l2-loopback: Remove v4l2l_mod64()
0cf1e2192918 media: v4l2-loopback: Remove sysfs shenanigans
520e4971b347 media: v4l2-loopback: Remove dprintkrw()
1670e49b1d28 media: v4l2-loopback: Remove MARK()
8c6389ba1e2b media: v4l2-loopback: Remove MODULE_VERSION()
1a50af7267ae media: v4l2-loopback: Remove SNAPSHOT_VERSION code path
3d21bcb22993 media: v4l2-loopback: Remove MODULE_AUTHOR()
986380446e78 media: v4l2-loopback: Remove LINUX_VERSION_CODE checks
2929a5908be8 media: v4l2-loopback: Remove !HAVE_TIMER_SETUP code path
c7a76fbfd8f3 media: v4l2-loopback: Remove !SPLIT_DEVICES code path
778aa6da1fd9 media: v4l2-loopback: Allocate the device number dynamically
8bc12e106311 media: v4l2-loopback: Do not any create devices in *init_module()
073bd4bf72f7 media: v4l2-loopback: Import the driver

By continuing this trend I'll have a driver in few weeks :-)

#linux #kernel #video4linux
1
1
1
@Conan_Kudo @wtay I aim to send RFC next month....
0
0
0
Show older