gst-rtsp-server 源代码包中的 examples 文件夹中范例 test-readme.c 代码如下:
#include <gst/gst.h>
#include <gst/rtsp-server/rtsp-server.h>
int main (int argc, char *argv[]) {
//声明相关对象GMainLoop *loop;GstRTSPServer *server;GstRTSPMountPoints *mounts;GstRTSPMediaFactory *factory;//构建 rtsp 服务器gst_init (&argc, &argv);loop = g_main_loop_new (NULL, FALSE); // 创建 rtsp 服务器的主消息循环,也是默认的消息循环。server = gst_rtsp_server_new (); // 创建 rtsp 服务器对象mounts = gst_rtsp_server_get_mount_points (server); // 获取 rtsp 服务器的装载点集合的引用// 装载点集合 mounts 是服务器 server 的属性factory = gst_rtsp_media_factory_new (); // 创建媒体工厂,用来产生媒体数据流 gst_rtsp_media_factory_set_launch (factory, "( videotestsrc is-live=1 ! x264enc ! rtph264pay name=pay0 pt=96 )");gst_rtsp_media_factory_set_shared (factory, TRUE);gst_rtsp_mount_points_add_factory (mounts, "/test", factory); // 把媒体工厂添加到装载点集合g_object_unref (mounts);gst_rtsp_server_attach (server, NULL); // 把服务器附加到默认的消息循环。//运行 rtsp 服务器g_print ("stream ready at rtsp://127.0.0.1:8554/test\n");g_main_loop_run (loop);return 0;
}
分析了一下源代码,其中四个对象的关系如下:
- 主消息循环可以包含若干 rtsp 服务器。
- 每个 rtsp 服务器都有一个装载点集合。
- 所谓的装载点,就是 rtsp 媒体工厂。
想吃透这套源代码包的用法,还得继续分析其他范例。