mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-14 05:12:09 +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_")]
|
||||
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 void* address;
|
||||
public weak Gst.RTSPConnection connection;
|
||||
|
@ -18,7 +18,7 @@ namespace Gst {
|
|||
[NoAccessorMethod]
|
||||
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 bool prepared;
|
||||
public weak GLib.Array streams;
|
||||
|
@ -43,7 +43,7 @@ namespace Gst {
|
|||
public weak Gst.Element payloader;
|
||||
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 weak string host;
|
||||
public weak GLib.IOChannel io_channel;
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
Gst cprefix="Gst" lower_case_cprefix="gst_" cheader_filename="gst/gst.h"
|
||||
GstRTSPMediaStream cheader_filename="gst/rtsp-server/rstp-media.h"
|
||||
GstRTSPMedia cheader_filename="gst/rtsp-server/rstp-media.h"
|
||||
GstRTSPClient cheader_filename="gst/rtsp-server/rstp-client.h"
|
||||
GstRTSPServer cheader_filename="gst/rtsp-server/rstp-server.h"
|
||||
GstRTSPMedia cheader_filename="gst/rtsp-server/rtsp-media.h"
|
||||
GstRTSPClient cheader_filename="gst/rtsp-server/rtsp-client.h"
|
||||
GstRTSPServer cheader_filename="gst/rtsp-server/rtsp-server.h"
|
||||
GstRTSPSession 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"
|
||||
|
|
Loading…
Reference in a new issue