Valentin

Results 68 issues of Valentin

I want to note this here in case it is useful for other people or OBS wants to take over the code. I have rewritten this plugin form scratch: https://github.com/e00E/obs-amf...

https://github.com/rust-fuzz/arbitrary/commit/1d2f65360f634968b5525f4d6430a88a376277f0 > Next breaking release that we make, I think we can remove the fallibility from the `Arbitrary` trait and all the `Unstructured` methods. This wasn't addressed in the discussion...

https://github.com/rustsim/ncollide/blob/a834dfd986a48f0c5bb27745a60e1c08e70e993d/src/query/time_of_impact/time_of_impact.rs#L150 This is triggered in nphysics by having a height map collider and for example a ball on which ccd is enabled. From an api perspective it is weird that...

Below is code to compare the behavior of a dynamic cuboid falling on the floor (a static cuboid). The falling cuboid is tested with mass 0.1, 1, 10, 100, 1000....

```rust fn compare_owned(a: BigInt, b: BigUint) -> std::cmp::Ordering { // Does not clone. a.cmp(BigInt::from_biguint(Sign::Plus, b)) } fn compare_reference(a: &BigInt, b: &BigUint) -> std::cmp::Ordering { // How to do this without...

The recent releases mention - New encoder usage presets - Support for consecutive B-frames and adaptive miniGOP for AVC Encoder I can see that these show up in the EncoderVCE...

bug

The documentation merely states that this sets a timestamp or duration. It is missing information on what this means. For example when I am sending frames to an encoder, do...

The video encoders have several rate control methods like CQP, CBR, VBR etc. It is unclear which of the surrounding configuration parameters in the documentation apply to which rate control...

Related to https://github.com/GPUOpen-LibrariesAndSDKs/AMF/issues/277 . I configure and print most values and I can see that several do not have the default value that is given in the PDF. I set...

In `ColorSpace.h` in `AMF_VIDEO_CONVERTED_COLOR_PROFILE_ENUM` there are entries for `FULL_601` and `FULL_709`. However in the pdf documentation these values are never mentioned. In fact the whole `AMF_VIDEO_ENCODER_HEVC_I(NPUT|OUTPUT)_COLOR_PROFILE` from `VideoEncoderHEVC.h` is never...