Ximin Luo
Ximin Luo
Unfortunately this will be very hard to accomplish. Bomi includes its own copy of mpv, and _uses private functions_ which are not exposed through `libmpv.so` or the public mpv header...
Thanks for the link, that clarifies some things. However, this bundling of a customised copy of mpv is still a massive maintenance burden. The author says that "I don't want...
Looks like `src/mpv` in xylosper/bomi@adb6dace36bf5cbe34e47103464ea5e20b7f5636 is forked from mpv-player/mpv@a87b18aa5a9126abf98c989625dd45a8623c6f17; I've imported it to track changes and potentially make future merges easier: infinity0/bomi-mpv@c98d66ef8993117868edd9d2783229384d991e0b
@xylosper it would be good, if you could confirm that the above is correct?
Oh, sorry, I just noticed xylosper/mpv@c98d66ef8993117868edd9d2783229384d991e0b so it looks like I am correct. However, bomi's `src/mpv` contains these extra files: ``` old-configure old-makefile player/main-fn-unix.c player/main-fn-win.c ``` I guess they are...
There are no `.src.deb` files, they are called `.dsc`. We, the Debian rust packaging team, are trying to get debcargo into shape to automate that.
This would be useful for debcargo as well, we're having the same issue with ripgrep. cargo's documentation says build scripts should modify anything not in `OUT_DIR` so setting `CARGO_TARGET_DIR` (and...
Note that unfortunately the above does not generalise, since "ripgrep-stamp" is a file specifically created by ripgrep's build.rs
More details: this is quinn's crypto session abstraction: https://github.com/quinn-rs/quinn/blob/main/quinn-proto/src/crypto.rs#L31 12 functions, not too bad. The implementation for rustls is here: https://github.com/quinn-rs/quinn/blob/main/quinn-proto/src/crypto/rustls.rs#L48
Awesome, thanks for the update! I didn't go through the code in great detail yet but it sounds like `write_handshake` gets called with an empty buffer that you are supposed...