Home
last modified time | relevance | path

Searched refs:videopad (Results 1 – 3 of 3) sorted by relevance

/third_party/gstreamer/gstplugins_bad/gst/asfmux/
Dgstasfmux.c748 GstAsfVideoPad *videopad = (GstAsfVideoPad *) asfpad; in gst_asf_mux_write_stream_properties() local
749 GST_WRITE_UINT32_LE (*buf, (guint32) videopad->vidinfo.width); in gst_asf_mux_write_stream_properties()
750 GST_WRITE_UINT32_LE (*buf + 4, (guint32) videopad->vidinfo.height); in gst_asf_mux_write_stream_properties()
760 gst_asf_put_i32 (*buf + 15, videopad->vidinfo.width); in gst_asf_mux_write_stream_properties()
761 gst_asf_put_i32 (*buf + 19, videopad->vidinfo.height); in gst_asf_mux_write_stream_properties()
763 GST_WRITE_UINT16_LE (*buf + 25, videopad->vidinfo.bit_cnt); in gst_asf_mux_write_stream_properties()
764 GST_WRITE_UINT32_LE (*buf + 27, videopad->vidinfo.compression); in gst_asf_mux_write_stream_properties()
765 GST_WRITE_UINT32_LE (*buf + 31, videopad->vidinfo.width * in gst_asf_mux_write_stream_properties()
766 videopad->vidinfo.height * videopad->vidinfo.bit_cnt); in gst_asf_mux_write_stream_properties()
767 GST_WRITE_UINT32_LE (*buf + 35, videopad->vidinfo.xpels_meter); in gst_asf_mux_write_stream_properties()
[all …]
/third_party/gstreamer/gstplugins_bad/sys/applemedia/
Davfassetsrc.m544 gst_avf_asset_src_read_data (self, self->videopad,
575 ret |= gst_pad_push_event (self->videopad, gst_event_ref (event));
628 self->videopad = gst_pad_new_from_static_template (&video_factory, "video");
629 gst_pad_set_query_function (self->videopad,
631 gst_pad_set_event_function(self->videopad,
633 gst_pad_use_fixed_caps (self->videopad);
634 gst_pad_set_active (self->videopad, TRUE);
635 gst_avf_asset_src_send_start_stream (self, self->videopad);
636 gst_pad_set_caps (self->videopad,
638 gst_pad_push_event (self->videopad, gst_event_new_caps (
[all …]
Davfassetsrc.h110 GstPad *videopad; member