GStreamer良好的开发习惯

1. 为你的管道(pipeline)添加一个GstBus的处理函数:

  /* watch for messages on the pipeline's bus (note that this will only
   * work like this when a GLib main loop is running) */
  bus = gst_pipeline_get_bus (GST_PIPELINE (pipeline));
  gst_bus_add_watch (bus, bus_call, loop);
  gst_object_unref (bus);

利用这种方法向上层应用报告错误, 尽可能的处理警告和通知消息。

 

2.  检查函数的返回值:

gst_element_link () 和 gst_element_set_state ()尤其重要, 一定要记得检查。

 

3. 函数的返回值如果为非基础类型的对象,不要忘了释放它,比如gst_element_get_pad (),

   另外, 返回值是非常量字符串的也必须释放。

   详细可以参考上面例子针对GstBus的unref操作:

   gst_object_unref (bus);

 

4.  利用你的管道对象来跟踪当前管道的状态,不要利用其它的私有变量。

    当用户按下播放键的时候,不要更新用户接口信息,而应该在收到“状态改变”的消息后再来做更新。

 

你可能感兴趣的:(C/C++编程,Linux编程,流媒体编程)