John Stamatakis

Results 10 issues of John Stamatakis

### ~~Bug explanation~~ Feature Request Hi and Thanks for your awesome library :) Trying to implement my first WPF project (a media player) based on Material Design but I'm having...

bug
evaluation required

Hi, there is an open issue for FFmpeg.AutoGen bindings [here](https://github.com/Ruslan-B/FFmpeg.AutoGen/issues/217) which I think should be handled from CppSharp. The issue is with C long / unsigned long data types that...

Hi @Ruslan-B, I was wondering if we could get better performance by compiling directly to .NET 6+ instead of just using .NET Standard. I asked this in [stackoverflow](https://stackoverflow.com/questions/70487668/mixing-net-5-6-clarification) long time...

enhancement
question

Hi @Ruslan-B, Got an access violation with this delegate and fixed it by returning byte*. Eg:- ```csharp [UnmanagedFunctionPointer(CallingConvention.Cdecl)] public unsafe delegate byte* AVClass_item_nameX (void* @ctx); // FFmpeg.Autogen bug public static...

bug

I wanted to access av_channel_layout_from_string and the defines, eg:- ```csharp #define AV_CHANNEL_LAYOUT_STEREO AV_CHANNEL_LAYOUT_MASK(2, AV_CH_LAYOUT_STEREO) ```

enhancement

Should just probably add after this line https://github.com/sdcb/Sdcb.FFmpeg/blob/release/7.0/src/Sdcb.FFmpeg.AutoGen/Processors/StructureProcessor.cs#L198 ```csharp ByReference = !arrayType.QualifiedType.Qualifiers.IsConst ``` Has been noticed with av_image_fill_pointers for example

In my case it looks in vcruntime.h which includes: ```c #ifdef _WIN64 typedef unsigned __int64 size_t; typedef __int64 ptrdiff_t; typedef __int64 intptr_t; #else typedef unsigned int size_t; typedef int ptrdiff_t;...

(SharpGen.Runtime) It seems that when using .NET8 (net8.0-windows framework) it will use by default System.Text.Json v8 which will cause a conflict with the v9? I think a condition to PackageReference...

VideoProcessorStream get's a pointer to past / future surfaces (used mainly for deinterlace) but Vortice exposes only a single surface. Is it possible to safely set an array (native pointers)...

### Discussed in https://github.com/SuRGeoNix/Flyleaf/discussions/644 Originally posted by **lrohrmann** October 22, 2025 Hello, I'm investigationg Flyleaf as an alternative to VLC and ffmpeginteropx and have more a question then an issue:...

enhancement