mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-25 17:50:36 +00:00
Fixed typo in included headers for vala bindings
This commit is contained in:
parent
26745cdbf5
commit
4695395302
2 changed files with 6 additions and 6 deletions
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
[CCode (cprefix = "Gst", lower_case_cprefix = "gst_")]
|
[CCode (cprefix = "Gst", lower_case_cprefix = "gst_")]
|
||||||
namespace Gst {
|
namespace Gst {
|
||||||
[CCode (cheader_filename = "gst/rtsp-server/rstp-client.h")]
|
[CCode (cheader_filename = "gst/rtsp-server/rtsp-client.h")]
|
||||||
public class RTSPClient : GLib.Object {
|
public class RTSPClient : GLib.Object {
|
||||||
public void* address;
|
public void* address;
|
||||||
public weak Gst.RTSPConnection connection;
|
public weak Gst.RTSPConnection connection;
|
||||||
|
@ -18,7 +18,7 @@ namespace Gst {
|
||||||
[NoAccessorMethod]
|
[NoAccessorMethod]
|
||||||
public Gst.RTSPServer server { get; construct; }
|
public Gst.RTSPServer server { get; construct; }
|
||||||
}
|
}
|
||||||
[CCode (cheader_filename = "gst/rtsp-server/rstp-media.h")]
|
[CCode (cheader_filename = "gst/rtsp-server/rtsp-media.h")]
|
||||||
public class RTSPMedia : GLib.Object {
|
public class RTSPMedia : GLib.Object {
|
||||||
public bool prepared;
|
public bool prepared;
|
||||||
public weak GLib.Array streams;
|
public weak GLib.Array streams;
|
||||||
|
@ -43,7 +43,7 @@ namespace Gst {
|
||||||
public weak Gst.Element payloader;
|
public weak Gst.Element payloader;
|
||||||
public weak Gst.Pad srcpad;
|
public weak Gst.Pad srcpad;
|
||||||
}
|
}
|
||||||
[CCode (cheader_filename = "gst/rtsp-server/rstp-server.h")]
|
[CCode (cheader_filename = "gst/rtsp-server/rtsp-server.h")]
|
||||||
public class RTSPServer : Gst.Object {
|
public class RTSPServer : Gst.Object {
|
||||||
public weak string host;
|
public weak string host;
|
||||||
public weak GLib.IOChannel io_channel;
|
public weak GLib.IOChannel io_channel;
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
Gst cprefix="Gst" lower_case_cprefix="gst_" cheader_filename="gst/gst.h"
|
Gst cprefix="Gst" lower_case_cprefix="gst_" cheader_filename="gst/gst.h"
|
||||||
GstRTSPMediaStream cheader_filename="gst/rtsp-server/rstp-media.h"
|
GstRTSPMediaStream cheader_filename="gst/rtsp-server/rstp-media.h"
|
||||||
GstRTSPMedia cheader_filename="gst/rtsp-server/rstp-media.h"
|
GstRTSPMedia cheader_filename="gst/rtsp-server/rtsp-media.h"
|
||||||
GstRTSPClient cheader_filename="gst/rtsp-server/rstp-client.h"
|
GstRTSPClient cheader_filename="gst/rtsp-server/rtsp-client.h"
|
||||||
GstRTSPServer cheader_filename="gst/rtsp-server/rstp-server.h"
|
GstRTSPServer cheader_filename="gst/rtsp-server/rtsp-server.h"
|
||||||
GstRTSPSession cheader_filename="gst/rtsp-server/rtsp-session.h"
|
GstRTSPSession cheader_filename="gst/rtsp-server/rtsp-session.h"
|
||||||
GstRTSPSessionMedia cheader_filename="gst/rtsp-server/rtsp-session.h"
|
GstRTSPSessionMedia cheader_filename="gst/rtsp-server/rtsp-session.h"
|
||||||
GstRTSPSessionPool cheader_filename="gst/rtsp-server/rtsp-session.h"
|
GstRTSPSessionPool cheader_filename="gst/rtsp-server/rtsp-session.h"
|
||||||
|
|
Loading…
Reference in a new issue