gstomx-0.10.1/g_omx_core_new_port()
をテンプレートにして作成
[
トップ
] [
新規
|
一覧
|
検索
|
最終更新
|
ヘルプ
|
ログイン
]
開始行:
*参照元 [#ud84a13d]
#backlinks
*説明 [#c1ff2d83]
-パス: [[gstomx-0.10.1/omx/gstomx_util.c]]
-FIXME: これは何?
--説明
**引数 [#k38a32ac]
-GOmxCore * core
--
--[[gstomx-0.10.1/GOmxCore]]
-guint index
--
--[[gstomx-0.10.1/guint]]
**返り値 [#yc225b51]
-GOmxPort *
--
--[[gstomx-0.10.1/GOmxPort]]
**参考 [#c427d205]
*実装 [#xc4fc444]
GOmxPort *
g_omx_core_new_port (GOmxCore * core, guint index)
{
GOmxPort *port = get_port (core, index);
-
--[[gstomx-0.10.1/get_port()]]
if (port) {
GST_WARNING_OBJECT (core->object, "port %d already e...
return port;
}
-
--[[gstomx-0.10.1/GST_WARNING_OBJECT()]]
port = g_omx_port_new (core, index);
g_ptr_array_insert (core->ports, index, port);
-
--[[gstomx-0.10.1/g_omx_port_new()]]
-
--[[gstomx-0.10.1/g_ptr_array_insert()]]
return port;
}
*コメント [#hae65358]
終了行:
*参照元 [#ud84a13d]
#backlinks
*説明 [#c1ff2d83]
-パス: [[gstomx-0.10.1/omx/gstomx_util.c]]
-FIXME: これは何?
--説明
**引数 [#k38a32ac]
-GOmxCore * core
--
--[[gstomx-0.10.1/GOmxCore]]
-guint index
--
--[[gstomx-0.10.1/guint]]
**返り値 [#yc225b51]
-GOmxPort *
--
--[[gstomx-0.10.1/GOmxPort]]
**参考 [#c427d205]
*実装 [#xc4fc444]
GOmxPort *
g_omx_core_new_port (GOmxCore * core, guint index)
{
GOmxPort *port = get_port (core, index);
-
--[[gstomx-0.10.1/get_port()]]
if (port) {
GST_WARNING_OBJECT (core->object, "port %d already e...
return port;
}
-
--[[gstomx-0.10.1/GST_WARNING_OBJECT()]]
port = g_omx_port_new (core, index);
g_ptr_array_insert (core->ports, index, port);
-
--[[gstomx-0.10.1/g_omx_port_new()]]
-
--[[gstomx-0.10.1/g_ptr_array_insert()]]
return port;
}
*コメント [#hae65358]
ページ名: