GstTee

Name

GstTee -- 1-to-N pipe fitting

Synopsis


#include <gst/gst.h>


struct      GstTee;
GstElement* gst_tee_new                     (gchar *name);
void        gst_tee_chain                   (GstPad *pad,
                                             GstBuffer *buf);
gchar*      gst_tee_new_pad                 (GstTee *tee);

Object Hierarchy


  GtkObject
   +----GstObject
         +----GstElement
               +----GstTee

Description

A tee can be used to split out the filter graph.

Details

struct GstTee

struct GstTee;


gst_tee_new ()

GstElement* gst_tee_new                     (gchar *name);

Create a new tee element.

name : the name of the new tee
Returns : the new tee element


gst_tee_chain ()

void        gst_tee_chain                   (GstPad *pad,
                                             GstBuffer *buf);

Chain a buffer on a pad.

pad : the pad to follow
buf : the buffer to pass


gst_tee_new_pad ()

gchar*      gst_tee_new_pad                 (GstTee *tee);

Create a new pad on a given tee.

tee : the tee to create the new pad on
Returns : the name of the new pad