1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471
// This file was generated by gir (https://github.com/gtk-rs/gir) // from gir-files (https://github.com/gtk-rs/gir-files) // from gst-gir-files (https://gitlab.freedesktop.org/gstreamer/gir-files-rs.git) // DO NOT EDIT use glib::object::Cast; use glib::object::IsA; use glib::signal::connect_raw; use glib::signal::SignalHandlerId; use glib::translate::*; use glib::StaticType; use glib::ToValue; use std::boxed::Box as Box_; use std::mem::transmute; glib::wrapper! { /// This base class is for parser elements that process data and splits it /// into separate audio/video/whatever frames. /// /// It provides for: /// /// * provides one sink pad and one source pad /// * handles state changes /// * can operate in pull mode or push mode /// * handles seeking in both modes /// * handles events (SEGMENT/EOS/FLUSH) /// * handles queries (POSITION/DURATION/SEEKING/FORMAT/CONVERT) /// * handles flushing /// /// The purpose of this base class is to provide the basic functionality of /// a parser and share a lot of rather complex code. /// /// # Description of the parsing mechanism: /// /// ## Set-up phase /// /// * [`crate::BaseParse`] calls [`crate::GstBaseParseClass.start()`] to inform subclass /// that data processing is about to start now. /// /// * [`crate::BaseParse`] class calls [`crate::GstBaseParseClass.set_sink_caps()`] to /// inform the subclass about incoming sinkpad caps. Subclass could /// already set the srcpad caps accordingly, but this might be delayed /// until calling [`Self::finish_frame()`] with a non-queued frame. /// /// * At least at this point subclass needs to tell the [`crate::BaseParse`] class /// how big data chunks it wants to receive (minimum frame size ). It can /// do this with [`crate::prelude::BaseParseExt::set_min_frame_size()`]. /// /// * [`crate::BaseParse`] class sets up appropriate data passing mode (pull/push) /// and starts to process the data. /// /// ## Parsing phase /// /// * [`crate::BaseParse`] gathers at least min_frame_size bytes of data either /// by pulling it from upstream or collecting buffers in an internal /// [`crate::Adapter`]. /// /// * A buffer of (at least) min_frame_size bytes is passed to subclass /// with [`crate::GstBaseParseClass.handle_frame()`]. Subclass checks the contents /// and can optionally return [`crate::gst::FlowReturn::Ok`] along with an amount of data /// to be skipped to find a valid frame (which will result in a /// subsequent DISCONT). If, otherwise, the buffer does not hold a /// complete frame, [`crate::GstBaseParseClass.handle_frame()`] can merely return /// and will be called again when additional data is available. In push /// mode this amounts to an additional input buffer (thus minimal /// additional latency), in pull mode this amounts to some arbitrary /// reasonable buffer size increase. /// /// Of course, [`crate::prelude::BaseParseExt::set_min_frame_size()`] could also be used if /// a very specific known amount of additional data is required. If, /// however, the buffer holds a complete valid frame, it can pass the /// size of this frame to [`Self::finish_frame()`]. /// /// If acting as a converter, it can also merely indicate consumed input /// data while simultaneously providing custom output data. Note that /// baseclass performs some processing (such as tracking overall consumed /// data rate versus duration) for each finished frame, but other state /// is only updated upon each call to [`crate::GstBaseParseClass.handle_frame()`] /// (such as tracking upstream input timestamp). /// /// Subclass is also responsible for setting the buffer metadata /// (e.g. buffer timestamp and duration, or keyframe if applicable). /// (although the latter can also be done by [`crate::BaseParse`] if it is /// appropriately configured, see below). Frame is provided with /// timestamp derived from upstream (as much as generally possible), /// duration obtained from configuration (see below), and offset /// if meaningful (in pull mode). /// /// Note that [`crate::GstBaseParseClass.handle_frame()`] might receive any small /// amount of input data when leftover data is being drained (e.g. at /// EOS). /// /// * As part of finish frame processing, just prior to actually pushing /// the buffer in question, it is passed to /// [`crate::GstBaseParseClass.pre_push_frame()`] which gives subclass yet one last /// chance to examine buffer metadata, or to send some custom (tag) /// events, or to perform custom (segment) filtering. /// /// * During the parsing process [`crate::BaseParseClass`] will handle both srcpad /// and sinkpad events. They will be passed to subclass if /// [`crate::GstBaseParseClass.sink_event()`] or [`crate::GstBaseParseClass.src_event()`] /// implementations have been provided. /// /// ## Shutdown phase /// /// * [`crate::BaseParse`] class calls [`crate::GstBaseParseClass.stop()`] to inform the /// subclass that data parsing will be stopped. /// /// Subclass is responsible for providing pad template caps for source and /// sink pads. The pads need to be named "sink" and "src". It also needs to /// set the fixed caps on srcpad, when the format is ensured (e.g. when /// base class calls subclass' [`crate::GstBaseParseClass.set_sink_caps()`] function). /// /// This base class uses [`crate::gst::Format::Default`] as a meaning of frames. So, /// subclass conversion routine needs to know that conversion from /// [`crate::gst::Format::Time`] to [`crate::gst::Format::Default`] must return the /// frame number that can be found from the given byte position. /// /// [`crate::BaseParse`] uses subclasses conversion methods also for seeking (or /// otherwise uses its own default one, see also below). /// /// Subclass `start` and `stop` functions will be called to inform the beginning /// and end of data processing. /// /// Things that subclass need to take care of: /// /// * Provide pad templates /// * Fixate the source pad caps when appropriate /// * Inform base class how big data chunks should be retrieved. This is /// done with [`crate::prelude::BaseParseExt::set_min_frame_size()`] function. /// * Examine data chunks passed to subclass with /// [`crate::GstBaseParseClass.handle_frame()`] and pass proper frame(s) to /// [`Self::finish_frame()`], and setting src pad caps and timestamps /// on frame. /// * Provide conversion functions /// * Update the duration information with [`Self::set_duration()`] /// * Optionally passthrough using [`crate::prelude::BaseParseExt::set_passthrough()`] /// * Configure various baseparse parameters using /// [`crate::prelude::BaseParseExt::set_average_bitrate()`], [`crate::prelude::BaseParseExt::set_syncable()`] /// and [`Self::set_frame_rate()`]. /// /// * In particular, if subclass is unable to determine a duration, but /// parsing (or specs) yields a frames per seconds rate, then this can be /// provided to [`crate::BaseParse`] to enable it to cater for buffer time /// metadata (which will be taken from upstream as much as /// possible). Internally keeping track of frame durations and respective /// sizes that have been pushed provides [`crate::BaseParse`] with an estimated /// bitrate. A default [`crate::GstBaseParseClass.convert()`] (used if not /// overridden) will then use these rates to perform obvious conversions. /// These rates are also used to update (estimated) duration at regular /// frame intervals. /// /// This is an Abstract Base Class, you cannot instantiate it. /// /// # Implements /// /// [`trait@crate::prelude::BaseParseExt`], [`trait@gst::prelude::ElementExt`], [`trait@gst::prelude::ObjectExt`], [`trait@glib::object::ObjectExt`], [`trait@crate::prelude::BaseParseExtManual`] pub struct BaseParse(Object<ffi::GstBaseParse, ffi::GstBaseParseClass>) @extends gst::Element, gst::Object; match fn { type_ => || ffi::gst_base_parse_get_type(), } } unsafe impl Send for BaseParse {} unsafe impl Sync for BaseParse {} pub const NONE_BASE_PARSE: Option<&BaseParse> = None; /// Trait containing all `BaseParse` methods. /// /// # Implementors /// /// [`struct@crate::BaseParse`] pub trait BaseParseExt: 'static { /// Adds an entry to the index associating `offset` to `ts`. It is recommended /// to only add keyframe entries. `force` allows to bypass checks, such as /// whether the stream is (upstream) seekable, another entry is already "close" /// to the new entry, etc. /// ## `offset` /// offset of entry /// ## `ts` /// timestamp associated with offset /// ## `key` /// whether entry refers to keyframe /// ## `force` /// add entry disregarding sanity checks /// /// # Returns /// /// `gboolean` indicating whether entry was added #[doc(alias = "gst_base_parse_add_index_entry")] fn add_index_entry(&self, offset: u64, ts: gst::ClockTime, key: bool, force: bool) -> bool; /// Drains the adapter until it is empty. It decreases the min_frame_size to /// match the current adapter size and calls chain method until the adapter /// is emptied or chain returns with error. #[cfg(any(feature = "v1_12", feature = "dox"))] #[cfg_attr(feature = "dox", doc(cfg(feature = "v1_12")))] #[doc(alias = "gst_base_parse_drain")] fn drain(&self); /// Sets the parser subclass's tags and how they should be merged with any /// upstream stream tags. This will override any tags previously-set /// with [`Self::merge_tags()`]. /// /// Note that this is provided for convenience, and the subclass is /// not required to use this and can still do tag handling on its own. /// ## `tags` /// a [`crate::gst::TagList`] to merge, or NULL to unset /// previously-set tags /// ## `mode` /// the [`crate::gst::TagMergeMode`] to use, usually [`crate::gst::TagMergeMode::Replace`] #[doc(alias = "gst_base_parse_merge_tags")] fn merge_tags(&self, tags: Option<&gst::TagList>, mode: gst::TagMergeMode); /// Optionally sets the average bitrate detected in media (if non-zero), /// e.g. based on metadata, as it will be posted to the application. /// /// By default, announced average bitrate is estimated. The average bitrate /// is used to estimate the total duration of the stream and to estimate /// a seek position, if there's no index and the format is syncable /// (see [`Self::set_syncable()`]). /// ## `bitrate` /// average bitrate in bits/second #[doc(alias = "gst_base_parse_set_average_bitrate")] fn set_average_bitrate(&self, bitrate: u32); /// Set if frames carry timing information which the subclass can (generally) /// parse and provide. In particular, intrinsic (rather than estimated) time /// can be obtained following a seek. /// ## `has_timing` /// whether frames carry timing information #[doc(alias = "gst_base_parse_set_has_timing_info")] fn set_has_timing_info(&self, has_timing: bool); /// By default, the base class might try to infer PTS from DTS and vice /// versa. While this is generally correct for audio data, it may not /// be otherwise. Sub-classes implementing such formats should disable /// timestamp inferring. /// ## `infer_ts` /// [`true`] if parser should infer DTS/PTS from each other #[doc(alias = "gst_base_parse_set_infer_ts")] fn set_infer_ts(&self, infer_ts: bool); /// Sets the minimum and maximum (which may likely be equal) latency introduced /// by the parsing process. If there is such a latency, which depends on the /// particular parsing of the format, it typically corresponds to 1 frame duration. /// ## `min_latency` /// minimum parse latency /// ## `max_latency` /// maximum parse latency #[doc(alias = "gst_base_parse_set_latency")] fn set_latency(&self, min_latency: gst::ClockTime, max_latency: gst::ClockTime); /// Subclass can use this function to tell the base class that it needs to /// be given buffers of at least `min_size` bytes. /// ## `min_size` /// Minimum size in bytes of the data that this base class should /// give to subclass. #[doc(alias = "gst_base_parse_set_min_frame_size")] fn set_min_frame_size(&self, min_size: u32); /// Set if the nature of the format or configuration does not allow (much) /// parsing, and the parser should operate in passthrough mode (which only /// applies when operating in push mode). That is, incoming buffers are /// pushed through unmodified, i.e. no [`crate::GstBaseParseClass.handle_frame()`] /// will be invoked, but [`crate::GstBaseParseClass.pre_push_frame()`] will still be /// invoked, so subclass can perform as much or as little is appropriate for /// passthrough semantics in [`crate::GstBaseParseClass.pre_push_frame()`]. /// ## `passthrough` /// [`true`] if parser should run in passthrough mode #[doc(alias = "gst_base_parse_set_passthrough")] fn set_passthrough(&self, passthrough: bool); /// By default, the base class will guess PTS timestamps using a simple /// interpolation (previous timestamp + duration), which is incorrect for /// data streams with reordering, where PTS can go backward. Sub-classes /// implementing such formats should disable PTS interpolation. /// ## `pts_interpolate` /// [`true`] if parser should interpolate PTS timestamps #[doc(alias = "gst_base_parse_set_pts_interpolation")] fn set_pts_interpolation(&self, pts_interpolate: bool); /// Set if frame starts can be identified. This is set by default and /// determines whether seeking based on bitrate averages /// is possible for a format/stream. /// ## `syncable` /// set if frame starts can be identified #[doc(alias = "gst_base_parse_set_syncable")] fn set_syncable(&self, syncable: bool); /// This function should only be called from a `handle_frame` implementation. /// /// [`crate::BaseParse`] creates initial timestamps for frames by using the last /// timestamp seen in the stream before the frame starts. In certain /// cases, the correct timestamps will occur in the stream after the /// start of the frame, but before the start of the actual picture data. /// This function can be used to set the timestamps based on the offset /// into the frame data that the picture starts. /// ## `offset` /// offset into current buffer #[doc(alias = "gst_base_parse_set_ts_at_offset")] fn set_ts_at_offset(&self, offset: usize); #[doc(alias = "disable-passthrough")] fn is_disable_passthrough(&self) -> bool; #[doc(alias = "disable-passthrough")] fn set_disable_passthrough(&self, disable_passthrough: bool); #[doc(alias = "disable-passthrough")] fn connect_disable_passthrough_notify<F: Fn(&Self) + Send + Sync + 'static>( &self, f: F, ) -> SignalHandlerId; } impl<O: IsA<BaseParse>> BaseParseExt for O { fn add_index_entry(&self, offset: u64, ts: gst::ClockTime, key: bool, force: bool) -> bool { unsafe { from_glib(ffi::gst_base_parse_add_index_entry( self.as_ref().to_glib_none().0, offset, ts.into_glib(), key.into_glib(), force.into_glib(), )) } } #[cfg(any(feature = "v1_12", feature = "dox"))] #[cfg_attr(feature = "dox", doc(cfg(feature = "v1_12")))] fn drain(&self) { unsafe { ffi::gst_base_parse_drain(self.as_ref().to_glib_none().0); } } fn merge_tags(&self, tags: Option<&gst::TagList>, mode: gst::TagMergeMode) { unsafe { ffi::gst_base_parse_merge_tags( self.as_ref().to_glib_none().0, tags.to_glib_none().0, mode.into_glib(), ); } } fn set_average_bitrate(&self, bitrate: u32) { unsafe { ffi::gst_base_parse_set_average_bitrate(self.as_ref().to_glib_none().0, bitrate); } } fn set_has_timing_info(&self, has_timing: bool) { unsafe { ffi::gst_base_parse_set_has_timing_info( self.as_ref().to_glib_none().0, has_timing.into_glib(), ); } } fn set_infer_ts(&self, infer_ts: bool) { unsafe { ffi::gst_base_parse_set_infer_ts(self.as_ref().to_glib_none().0, infer_ts.into_glib()); } } fn set_latency(&self, min_latency: gst::ClockTime, max_latency: gst::ClockTime) { unsafe { ffi::gst_base_parse_set_latency( self.as_ref().to_glib_none().0, min_latency.into_glib(), max_latency.into_glib(), ); } } fn set_min_frame_size(&self, min_size: u32) { unsafe { ffi::gst_base_parse_set_min_frame_size(self.as_ref().to_glib_none().0, min_size); } } fn set_passthrough(&self, passthrough: bool) { unsafe { ffi::gst_base_parse_set_passthrough( self.as_ref().to_glib_none().0, passthrough.into_glib(), ); } } fn set_pts_interpolation(&self, pts_interpolate: bool) { unsafe { ffi::gst_base_parse_set_pts_interpolation( self.as_ref().to_glib_none().0, pts_interpolate.into_glib(), ); } } fn set_syncable(&self, syncable: bool) { unsafe { ffi::gst_base_parse_set_syncable(self.as_ref().to_glib_none().0, syncable.into_glib()); } } fn set_ts_at_offset(&self, offset: usize) { unsafe { ffi::gst_base_parse_set_ts_at_offset(self.as_ref().to_glib_none().0, offset); } } fn is_disable_passthrough(&self) -> bool { unsafe { let mut value = glib::Value::from_type(<bool as StaticType>::static_type()); glib::gobject_ffi::g_object_get_property( self.to_glib_none().0 as *mut glib::gobject_ffi::GObject, b"disable-passthrough\0".as_ptr() as *const _, value.to_glib_none_mut().0, ); value .get() .expect("Return Value for property `disable-passthrough` getter") } } fn set_disable_passthrough(&self, disable_passthrough: bool) { unsafe { glib::gobject_ffi::g_object_set_property( self.to_glib_none().0 as *mut glib::gobject_ffi::GObject, b"disable-passthrough\0".as_ptr() as *const _, disable_passthrough.to_value().to_glib_none().0, ); } } #[doc(alias = "disable-passthrough")] fn connect_disable_passthrough_notify<F: Fn(&Self) + Send + Sync + 'static>( &self, f: F, ) -> SignalHandlerId { unsafe extern "C" fn notify_disable_passthrough_trampoline< P, F: Fn(&P) + Send + Sync + 'static, >( this: *mut ffi::GstBaseParse, _param_spec: glib::ffi::gpointer, f: glib::ffi::gpointer, ) where P: IsA<BaseParse>, { let f: &F = &*(f as *const F); f(&BaseParse::from_glib_borrow(this).unsafe_cast_ref()) } unsafe { let f: Box_<F> = Box_::new(f); connect_raw( self.as_ptr() as *mut _, b"notify::disable-passthrough\0".as_ptr() as *const _, Some(transmute::<_, unsafe extern "C" fn()>( notify_disable_passthrough_trampoline::<Self, F> as *const (), )), Box_::into_raw(f), ) } } }