summaryrefslogtreecommitdiff
path: root/sources/custom/Buffer.cs
diff options
context:
space:
mode:
Diffstat (limited to 'sources/custom/Buffer.cs')
-rw-r--r--sources/custom/Buffer.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/sources/custom/Buffer.cs b/sources/custom/Buffer.cs
index 3ebdea1..464ad7e 100644
--- a/sources/custom/Buffer.cs
+++ b/sources/custom/Buffer.cs
@@ -21,7 +21,7 @@ namespace Gst {
using System.Runtime.InteropServices;
partial class Buffer {
- [DllImport("libgstreamer-1.0-0.dll", CallingConvention = CallingConvention.Cdecl)]
+ [DllImport("gstreamer-1.0-0.dll", CallingConvention = CallingConvention.Cdecl)]
static extern UIntPtr gst_buffer_extract(IntPtr raw, UIntPtr offset, byte[] dest, UIntPtr size);
public ulong Extract(ulong offset, ref byte[] dest) {
@@ -30,7 +30,7 @@ namespace Gst {
return ret;
}
- [DllImport("libgstreamer-1.0-0.dll", CallingConvention = CallingConvention.Cdecl)]
+ [DllImport("gstreamer-1.0-0.dll", CallingConvention = CallingConvention.Cdecl)]
static extern void gst_buffer_extract_dup(IntPtr raw, UIntPtr offset, UIntPtr size, out IntPtr dest, out UIntPtr dest_size);
public ulong ExtractDup(ulong offset, ulong size, out byte[] dest) {