summaryrefslogtreecommitdiff
path: root/sources/custom/Adapter.cs
diff options
context:
space:
mode:
Diffstat (limited to 'sources/custom/Adapter.cs')
-rw-r--r--sources/custom/Adapter.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/sources/custom/Adapter.cs b/sources/custom/Adapter.cs
index c5d6e8e..f418cac 100644
--- a/sources/custom/Adapter.cs
+++ b/sources/custom/Adapter.cs
@@ -21,7 +21,7 @@ namespace Gst.Base {
public partial class Adapter
{
- [DllImport("libgstbase-1.0-0.dll", CallingConvention = CallingConvention.Cdecl)]
+ [DllImport("gstbase-1.0-0.dll", CallingConvention = CallingConvention.Cdecl)]
static extern void gst_adapter_copy(IntPtr raw, out IntPtr dest, int offset, int size);
public byte[] Copy(int offset, int size) {
@@ -36,7 +36,7 @@ namespace Gst.Base {
return bytes;
}
- [DllImport("libgstbase-1.0-0.dll", CallingConvention = CallingConvention.Cdecl)]
+ [DllImport("gstbase-1.0-0.dll", CallingConvention = CallingConvention.Cdecl)]
static extern IntPtr gst_adapter_map(IntPtr raw, out int size);
public byte[] Map() {