Ruslan Balanukhin

Results 66 comments of Ruslan Balanukhin

In general I like the idea. However, when I see property which going to return something different every time you read it - my eyes are getting wet 🤣. This...

> I don't mind making these properties methods, although I don't think theres any overhead returning `Span` objects since spans are treated essentially as pointers by the runtime. No, it...

Let park this topic, as from my point of view the goal is to provide library which is close to C(lang) as much as could in C# - this simplifies...

Hi there, thanks for the fix but do you recon that all this code is generated this is not going to fix the source of the issue.

Well if you check FFmpeg.AutoGen.CppSharpUnsafeGenerator you will find all this project is a tool 😄. Technically it is possible to generate delegates in different manner than functions. However, I have...

Forming new way of API here https://github.com/Ruslan-B/FFmpeg.AutoGen/issues/210 - all none const array parameters are ref now. I'll appriciciet if you can test.

I think we already observed similar issue here #140. However, this one looks different. As original declaration: ``` void av_image_fill_max_pixsteps(int max_pixsteps[4], int max_pixstep_comps[4], const AVPixFmtDescriptor *pixdesc); ``` It appears to...

@AddictedCS can you compile custom version of v4.3.2.1? With this as a difference: ```csharp // version since v4.3.2.1 public static void av_image_fill_max_pixsteps( int_array4 max_pixsteps, int_array4 max_pixstep_comps, AVPixFmtDescriptor* pixdesc) ``` And...

@AddictedCS do you have or can you create any minimal example how to use this function?

I'll close this issue in one week as we don't have any forward moving....