0

按照这个,我认为使用 python 绑定创建 GArray 是不可能的。为了克服这个问题,我正在编写一个返回 GArray 的小型库。该库利用 gobject 自省并公开了一个方法 create_codec_array。

/**
* webrtc_interface_create_codec_array:
* @interface: a #WebrtcInterface
*
* creates codecs_array.
*
* Returns: (element-type GstStructure) (transfer full): a #GArray of #GstStructure
*/
GArray *
webrtc_interface_create_codec_array (WebrtcInterface * interface)
{
 WebrtcInterfacePrivate *priv ;
 g_return_if_fail (interface != NULL);

 priv = WEBRTC_INTERFACE_GET_PRIVATE (interface);
 gchar * codecs[] = {priv->codec, NULL};

 GArray *a = g_array_new (FALSE, TRUE, sizeof (GValue));
 int i;

 for (i=0; i < g_strv_length (codecs); i++) {
     GValue v = G_VALUE_INIT;
     GstStructure *s;

     g_value_init (&v, GST_TYPE_STRUCTURE);
     s = gst_structure_new (codecs[i], NULL, NULL);
     gst_value_set_structure (&v, s);
     gst_structure_free (s);
     g_array_append_val (a, v);
 }

 return a;
}

当我运行 g-ir-scanner 时,我收到以下错误:

webrtc_interface.c:149: Warning: Webrtc: webrtc_interface_create_codec_array: 
Unknown type: 'GstStructure'

此函数返回 GstStructure 元素的 GArray,我无法对其进行自省。在这种情况下,元素类型注释应该是什么?

非常感谢!

4

1 回答 1

0

GstStructure是一种可自省的类型——它在Gst-1.0.gir. --include Gst-1.0当你运行它来g-ir-scanner构建你的 GIR 时,你是否正在传递?

如果您使用GIR 自动工具集成(如果您使用的是自动工具,强烈推荐),您可以通过添加GIR 模块Gst-1.0*_INCLUDES变量来完成此操作。

于 2017-03-03T11:10:28.493 回答