summaryrefslogtreecommitdiff
path: root/sources/generated/Gst.Rtp/RTPBaseAudioPayload.cs
diff options
context:
space:
mode:
Diffstat (limited to 'sources/generated/Gst.Rtp/RTPBaseAudioPayload.cs')
-rw-r--r--sources/generated/Gst.Rtp/RTPBaseAudioPayload.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/sources/generated/Gst.Rtp/RTPBaseAudioPayload.cs b/sources/generated/Gst.Rtp/RTPBaseAudioPayload.cs
index 678e418..5740eff 100644
--- a/sources/generated/Gst.Rtp/RTPBaseAudioPayload.cs
+++ b/sources/generated/Gst.Rtp/RTPBaseAudioPayload.cs
@@ -125,9 +125,9 @@ namespace Gst.Rtp {
}
[DllImport("libgstrtp-1.0-0.dll", CallingConvention = CallingConvention.Cdecl)]
- static extern int gst_rtp_base_audio_payload_push(IntPtr raw, byte data, uint payload_len, ulong timestamp);
+ static extern int gst_rtp_base_audio_payload_push(IntPtr raw, byte[] data, uint payload_len, ulong timestamp);
- public Gst.FlowReturn Push(byte data, uint payload_len, ulong timestamp) {
+ public Gst.FlowReturn Push(byte[] data, uint payload_len, ulong timestamp) {
int raw_ret = gst_rtp_base_audio_payload_push(Handle, data, payload_len, timestamp);
Gst.FlowReturn ret = (Gst.FlowReturn) raw_ret;
return ret;