Home
last modified time | relevance | path

Searched refs:VideoInterlaceMode (Results 1 – 21 of 21) sorted by relevance

/dports/multimedia/gstreamermm/gstreamermm-1.10.0/gstreamer/gstreamermm/
H A Dvideoinfo.h68 enum VideoInterlaceMode enum
83 class Value<Gst::VideoInterlaceMode> : public Glib::Value_Enum<Gst::VideoInterlaceMode>
571 Gst::VideoInterlaceMode get_interlace_mode() const;
572 void set_interlace_mode(const Gst::VideoInterlaceMode& value);
H A Dvideoinfo.cc72 GType Glib::Value<Gst::VideoInterlaceMode>::value_type() in value_type()
141 Gst::VideoInterlaceMode VideoInfo::get_interlace_mode() const in get_interlace_mode()
143 return ((Gst::VideoInterlaceMode)(gobj()->interlace_mode)); in get_interlace_mode()
146 void VideoInfo::set_interlace_mode(const Gst::VideoInterlaceMode& value) in set_interlace_mode()
/dports/net-im/fractal/fractal-4.4.0/vendor/gstreamer-video/src/auto/
H A Denums.rs875 pub enum VideoInterlaceMode { enum
886 impl ToGlib for VideoInterlaceMode { implementation
906 0 => VideoInterlaceMode::Progressive, in from_glib()
907 1 => VideoInterlaceMode::Interleaved, in from_glib()
908 2 => VideoInterlaceMode::Mixed, in from_glib()
909 3 => VideoInterlaceMode::Fields, in from_glib()
910 4 => VideoInterlaceMode::Alternate, in from_glib()
916 impl StaticType for VideoInterlaceMode { implementation
922 impl<'a> FromValueOptional<'a> for VideoInterlaceMode { implementation
928 impl<'a> FromValue<'a> for VideoInterlaceMode { implementation
[all …]
H A Dmod.rs35 pub use self::enums::VideoInterlaceMode;
/dports/net-im/fractal/fractal-4.4.0/vendor/gstreamer-video/src/
H A Dvideo_info.rs249 interlace_mode: Option<::VideoInterlaceMode>,
419 pub fn interlace_mode(self, interlace_mode: ::VideoInterlaceMode) -> VideoInfoBuilder<'a> { in interlace_mode()
612 pub fn interlace_mode(&self) -> ::VideoInterlaceMode { in interlace_mode() argument
691 self.interlace_mode() != ::VideoInterlaceMode::Progressive in is_interlaced()
911 impl ::VideoInterlaceMode { implementation
923 impl str::FromStr for ::VideoInterlaceMode { implementation
937 impl fmt::Display for ::VideoInterlaceMode { implementation
1009 assert_eq!(info.interlace_mode(), ::VideoInterlaceMode::Progressive); in test_from_to_caps()
1048 format!("{}", ::VideoInterlaceMode::Progressive); in test_display()
H A Dvideo_decoder.rs22 use VideoInterlaceMode;
72 mode: VideoInterlaceMode, in set_interlaced_output_state() argument
280 mode: VideoInterlaceMode, in set_interlaced_output_state() argument
/dports/multimedia/gstreamermm/gstreamermm-1.10.0/gstreamer/src/
H A Dvideoinfo.hg31 _WRAP_ENUM(VideoInterlaceMode, GstVideoInterlaceMode)
75 _MEMBER_GET(interlace_mode, interlace_mode, Gst::VideoInterlaceMode, GstVideoInterlaceMode)
76 _MEMBER_SET(interlace_mode, interlace_mode, Gst::VideoInterlaceMode, GstVideoInterlaceMode)
H A Dgst_enums.defs5719 (define-enum-extended VideoInterlaceMode
H A Dgst_methods.defs21839 (define-enum VideoInterlaceMode
/dports/multimedia/gstreamer1-plugins-rust/gst-plugins-rs-d0466b3eee114207f851b37cae0015c0e718f021/cargo-crates/gstreamer-video-0.17.2/src/
H A Dvideo_info.rs282 interlace_mode: Option<crate::VideoInterlaceMode>,
454 pub fn interlace_mode(self, interlace_mode: crate::VideoInterlaceMode) -> VideoInfoBuilder<'a> { in interlace_mode()
660 pub fn interlace_mode(&self) -> crate::VideoInterlaceMode { in interlace_mode() argument
740 self.interlace_mode() != crate::VideoInterlaceMode::Progressive in is_interlaced()
1013 impl str::FromStr for crate::VideoInterlaceMode { implementation
1091 crate::VideoInterlaceMode::Progressive in test_from_to_caps()
1144 format!("{}", crate::VideoInterlaceMode::Progressive); in test_display()
H A Dvideo_decoder.rs10 use crate::VideoInterlaceMode;
75 mode: VideoInterlaceMode, in set_interlaced_output_state() argument
284 mode: VideoInterlaceMode, in set_interlaced_output_state() argument
/dports/audio/gnome-podcasts/podcasts-c86f7bfdef7692bbf20f315a90450321f6ca9ce7/cargo-crates/gstreamer-video-0.17.2/src/
H A Dvideo_info.rs282 interlace_mode: Option<crate::VideoInterlaceMode>,
454 pub fn interlace_mode(self, interlace_mode: crate::VideoInterlaceMode) -> VideoInfoBuilder<'a> { in interlace_mode()
660 pub fn interlace_mode(&self) -> crate::VideoInterlaceMode { in interlace_mode() argument
740 self.interlace_mode() != crate::VideoInterlaceMode::Progressive in is_interlaced()
1013 impl str::FromStr for crate::VideoInterlaceMode { implementation
1091 crate::VideoInterlaceMode::Progressive in test_from_to_caps()
1144 format!("{}", crate::VideoInterlaceMode::Progressive); in test_display()
H A Dvideo_decoder.rs10 use crate::VideoInterlaceMode;
75 mode: VideoInterlaceMode, in set_interlaced_output_state() argument
284 mode: VideoInterlaceMode, in set_interlaced_output_state() argument
/dports/multimedia/gstreamer1-plugins-rust/gst-plugins-rs-d0466b3eee114207f851b37cae0015c0e718f021/cargo-crates/gstreamer-video-0.17.2/src/auto/
H A Dmod.rs56 pub use self::enums::VideoInterlaceMode;
H A Denums.rs1681 pub enum VideoInterlaceMode { enum
1698 impl VideoInterlaceMode { implementation
1700 pub fn from_string(mode: &str) -> VideoInterlaceMode { in from_string() argument
1722 impl fmt::Display for VideoInterlaceMode { implementation
1730 impl IntoGlib for VideoInterlaceMode { implementation
1747 impl FromGlib<ffi::GstVideoInterlaceMode> for VideoInterlaceMode { implementation
1762 impl StaticType for VideoInterlaceMode { implementation
1768 impl glib::value::ValueType for VideoInterlaceMode { implementation
1772 unsafe impl<'a> FromValue<'a> for VideoInterlaceMode { implementation
1781 impl ToValue for VideoInterlaceMode { implementation
/dports/audio/gnome-podcasts/podcasts-c86f7bfdef7692bbf20f315a90450321f6ca9ce7/cargo-crates/gstreamer-video-0.17.2/src/auto/
H A Dmod.rs56 pub use self::enums::VideoInterlaceMode;
H A Denums.rs1681 pub enum VideoInterlaceMode { enum
1698 impl VideoInterlaceMode { implementation
1700 pub fn from_string(mode: &str) -> VideoInterlaceMode { in from_string() argument
1722 impl fmt::Display for VideoInterlaceMode { implementation
1730 impl IntoGlib for VideoInterlaceMode { implementation
1747 impl FromGlib<ffi::GstVideoInterlaceMode> for VideoInterlaceMode { implementation
1762 impl StaticType for VideoInterlaceMode { implementation
1768 impl glib::value::ValueType for VideoInterlaceMode { implementation
1772 unsafe impl<'a> FromValue<'a> for VideoInterlaceMode { implementation
1781 impl ToValue for VideoInterlaceMode { implementation
/dports/multimedia/gstreamer1-plugins-rust/gst-plugins-rs-d0466b3eee114207f851b37cae0015c0e718f021/cargo-crates/gstreamer-video-0.17.2/
H A DGir.toml501 name = "GstVideo.VideoInterlaceMode"
/dports/audio/gnome-podcasts/podcasts-c86f7bfdef7692bbf20f315a90450321f6ca9ce7/cargo-crates/gstreamer-video-0.17.2/
H A DGir.toml501 name = "GstVideo.VideoInterlaceMode"
/dports/multimedia/gstreamermm/gstreamermm-1.10.0/tools/m4/
H A Dconvert_gst.m484 _CONV_ENUM(Gst,VideoInterlaceMode)
/dports/lang/vala/vala-0.48.18/vapi/
H A Dgstreamer-video-1.0.vapi1251 [GIR (name = "VideoInterlaceMode")]