mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-14 13:21:28 +00:00
741cb333df
Hide the following method that were previously totally broken and now are wrongly auto generated (and fail to build): gst_rtsp_message_parse_auth_credentials gst_audio_ring_buffer_prepare_read
34 lines
894 B
C#
34 lines
894 B
C#
// This file was generated by the Gtk# code generator.
|
|
// Any changes made will be lost if regenerated.
|
|
|
|
namespace Gst.Video {
|
|
|
|
using System;
|
|
|
|
#region Autogenerated code
|
|
public partial interface IVideoOrientation : GLib.IWrapper {
|
|
|
|
bool GetHcenter(out int center);
|
|
bool GetHflip(out bool flip);
|
|
bool GetVcenter(out int center);
|
|
bool GetVflip(out bool flip);
|
|
bool SetHcenter(int center);
|
|
bool SetHflip(bool flip);
|
|
bool SetVcenter(int center);
|
|
bool SetVflip(bool flip);
|
|
}
|
|
|
|
[GLib.GInterface (typeof (VideoOrientationAdapter))]
|
|
public partial interface IVideoOrientationImplementor : GLib.IWrapper {
|
|
|
|
bool GetHflip (out bool flip);
|
|
bool GetVflip (out bool flip);
|
|
bool GetHcenter (out int center);
|
|
bool GetVcenter (out int center);
|
|
bool SetHflip (bool flip);
|
|
bool SetVflip (bool flip);
|
|
bool SetHcenter (int center);
|
|
bool SetVcenter (int center);
|
|
}
|
|
#endregion
|
|
}
|