Skip to content

Commit

Permalink
Fix new inline function
Browse files Browse the repository at this point in the history
  • Loading branch information
Ruslan Balanukhin committed Nov 14, 2023
1 parent a93845f commit 4da5618
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions FFmpeg.AutoGen/generated/ffmpeg.functions.inline.g.cs
Original file line number Diff line number Diff line change
Expand Up @@ -187,9 +187,9 @@ public static uint av_float2int(float @f)

/// <summary>Wrapper around av_image_copy() to workaround the limitation that the conversion from uint8_t * const * to const uint8_t * const * is not performed automatically in C.</summary>
public static void av_image_copy2(ref byte_ptrArray4 @dst_data, in int_array4 @dst_linesizes, ref byte_ptrArray4 @src_data, in int_array4 @src_linesizes, AVPixelFormat @pix_fmt, int @width, int @height)
{
av_image_copy(dst_data, dst_linesizes, (const uint8_t *const *)src_data, src_linesizes, pix_fmt, width, height);
}
{
av_image_copy(ref dst_data, dst_linesizes, src_data, src_linesizes, pix_fmt, width, height);
}
// original body hash: RdaM2zKuF7t0cNJItdh1SZPg9WiOfPpTwty5cHDiZ2A=

/// <summary>Reinterpret a 64-bit integer as a double.</summary>
Expand Down

0 comments on commit 4da5618

Please sign in to comment.