码迷,mamicode.com
首页 > 其他好文 > 详细

playbin2 成员

时间:2016-11-26 11:54:17      阅读:242      评论:0      收藏:0      [点我收藏+]

标签:boolean   current   word   shutdown   sch   视频   cto   line   keyword   

1. playbin2
 

  struct _GstPlayBin
{
  GstPipeline parent;

  GMutex *lock;                

 
  GstSourceGroup groups[2];    
  GstSourceGroup *curr_group;  
  GstSourceGroup *next_group;  

 
  guint connection_speed;      
  gint current_video;          
  gint current_audio;          
  gint current_text;           

  guint64 buffer_duration;     
  guint buffer_size;           

 
  GstPlaySink *playsink; //sink也可能是一个bin

 
  GstElement *source;

 
  GMutex *dyn_lock;
 
  gint shutdown;

  GMutex *elements_lock;
  guint32 elements_cookie;
  GValueArray *elements;       

  gboolean have_selector;      

  GstElement *audio_sink;      
  GstElement *video_sink;      
  GstElement *text_sink;       

  struct
  {
    gboolean valid;
    GstFormat format;
    gint64 duration;
  } duration[5];               

  GstSegment segments[3];      
};


2. Playsink
在playbin2的playsink中构建了一些chain:
 struct _GstPlaySink
{
    GstBin bin;
   
    GstPlayAudioChain *audiochain;
    GstPlayVideoDeinterlaceChain *videodeinterlacechain;
    GstPlayVideoChain *videochain;
    GstPlayVisChain *vischain;
    GstPlayTextChain *textchain;
}

其中:
  audiochain:
       技术分享

 videoChain:
    技术分享

 textChain:
   技术分享

 videodeinterlacechain:
     技术分享
vischain:
     技术分享


chain的数据结构:
   技术分享
    技术分享
    技术分享

从上面的数据结构可以看到,chain就是一个bin包含了一个完整的flow。每一个bin包含property,并且需要绑定signal和callback函数:
              技术分享


playbin2 成员

标签:boolean   current   word   shutdown   sch   视频   cto   line   keyword   

原文地址:http://www.cnblogs.com/shakin/p/6103677.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!