-
Notifications
You must be signed in to change notification settings - Fork 22
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix pipewire playback on more modern systems #138
Conversation
fixes freeze when trying to pause. seems like this was always necessary. the docs don't mention any kind of change in regards to versioning
Thanks a lot! |
@@ -84,13 +84,11 @@ static long pipewire_open(enum plugout_endian *endian, long rate, long *buffer_b | |||
&pipewire_data); | |||
|
|||
// connect the stream | |||
// TODO: do we need the realtime flag? |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I did not really know what I was doing when writing this code, but at least I was suspicious of this ;-)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't know why the tutorials even use it 🤷🏻♀️
This looks good, I don't see/hear any problems on Debian Bookworm! I'd like to update the copyright year in the source file, but as I did nothing in this PR it feels weird that only my name is listed there. If not, I'll just merge your PR and update the year later. |
oh, sure! I'll add myself |
this should fix any issues with modern pw. I don't have any older versions to test compat, so I hope this didn't break anything in older versions.
fixes #131