2018-07-30 08:54:06 +00:00
|
|
|
// Copyright (C) 2018 Sebastian Dröge <sebastian@centricular.com>
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
|
|
// option. This file may not be copied, modified, or distributed
|
|
|
|
// except according to those terms.
|
|
|
|
|
|
|
|
use ffi;
|
|
|
|
use glib::translate::*;
|
2019-01-16 13:23:53 +00:00
|
|
|
use glib::IsA;
|
2018-07-30 08:54:06 +00:00
|
|
|
use gst;
|
|
|
|
use Aggregator;
|
|
|
|
|
2018-12-08 09:22:42 +00:00
|
|
|
pub trait AggregatorExtManual: 'static {
|
2019-01-08 16:13:37 +00:00
|
|
|
fn finish_buffer(&self, buffer: gst::Buffer) -> Result<gst::FlowSuccess, gst::FlowError>;
|
2018-07-30 08:54:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
impl<O: IsA<Aggregator>> AggregatorExtManual for O {
|
2019-01-08 16:13:37 +00:00
|
|
|
fn finish_buffer(&self, buffer: gst::Buffer) -> Result<gst::FlowSuccess, gst::FlowError> {
|
|
|
|
let ret: gst::FlowReturn = unsafe {
|
2018-07-30 08:54:06 +00:00
|
|
|
from_glib(ffi::gst_aggregator_finish_buffer(
|
2019-01-16 11:32:58 +00:00
|
|
|
self.as_ref().to_glib_none().0,
|
2018-07-30 08:54:06 +00:00
|
|
|
buffer.into_ptr(),
|
|
|
|
))
|
2019-01-08 16:13:37 +00:00
|
|
|
};
|
|
|
|
ret.into_result()
|
2018-07-30 08:54:06 +00:00
|
|
|
}
|
|
|
|
}
|