开源 企业版 高校版 私有云 模力方舟 AI 队友
代码拉取完成,页面将自动刷新
加入 Gitee
与超过 1400万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
已有帐号? 立即登录
master
分支 (44)
标签 (1499)
master
1.24
main
1.22
1.20
1.18
1.14
1.16
1.12
1.10
1.8
1.6
1.4
1.2
1.0
0.10
0.11
BRANCH-RELEASE-0_10_19
BRANCH-GSTREAMER-0_8
BRANCH-COMPANY
1.22.11
1.24.0
1.23.90
1.23.2
1.22.10
1.23.1
1.22.9
1.22.8
1.22.7
1.22.6
1.20.7
1.22.5
1.22.4
1.22.3
1.22.2
1.22.1
1.20.6
1.22.0
1.21.90
1.20.5
master
分支 (44)
标签 (1499)
master
1.24
main
1.22
1.20
1.18
1.14
1.16
1.12
1.10
1.8
1.6
1.4
1.2
1.0
0.10
0.11
BRANCH-RELEASE-0_10_19
BRANCH-GSTREAMER-0_8
BRANCH-COMPANY
1.22.11
1.24.0
1.23.90
1.23.2
1.22.10
1.23.1
1.22.9
1.22.8
1.22.7
1.22.6
1.20.7
1.22.5
1.22.4
1.22.3
1.22.2
1.22.1
1.20.6
1.22.0
1.21.90
1.20.5
克隆/下载
克隆/下载
提示
下载代码请复制以下命令到终端执行
为确保你提交的代码身份被 Gitee 正确识别,请执行以下命令完成配置
初次使用 SSH 协议进行代码克隆、推送等操作时,需按下述提示完成 SSH 配置
1 生成 RSA 密钥
2 获取 RSA 公钥内容,并配置到 SSH公钥
在 Gitee 上使用 SVN,请访问 使用指南
使用 HTTPS 协议时,命令行会出现如下账号密码验证步骤。基于安全考虑,Gitee 建议 配置并使用私人令牌 替代登录密码进行克隆、推送等操作
Username for 'https://gitee.com': userName
Password for 'https://userName@gitee.com': # 私人令牌
master
分支 (44)
标签 (1499)
master
1.24
main
1.22
1.20
1.18
1.14
1.16
1.12
1.10
1.8
1.6
1.4
1.2
1.0
0.10
0.11
BRANCH-RELEASE-0_10_19
BRANCH-GSTREAMER-0_8
BRANCH-COMPANY
1.22.11
1.24.0
1.23.90
1.23.2
1.22.10
1.23.1
1.22.9
1.22.8
1.22.7
1.22.6
1.20.7
1.22.5
1.22.4
1.22.3
1.22.2
1.22.1
1.20.6
1.22.0
1.21.90
1.20.5
gstreamer
/
docs
贡献代码
同步代码
对比差异 通过 Pull Request 同步
同步更新到分支
通过 Pull Request 同步
将会在向当前分支创建一个 Pull
Request,合入后将完成同步
File empty ...
提示: 由于 Git 不支持空文件夾,创建文件夹后会生成空的 .keep 文件
Loading...
README
GStreamer documentation notes
OVERVIEW
========
Our documentation uses hotdoc, you should usually refer to the
[hotdoc documentation](http://hotdoc.github.io/).
GStreamer has two sets of documentation but both are controlled and aggregated in
the `gst-docs` module:
* API references, using hotdoc (gstreamer, gstreamer-libs) - maintained
 in each GStreamer modules repository
* FAQ / Application Development Manual / Plugin Writer's Guide / Tutorials -
 these are maintained in markdown format and live in the gst-docs repository.
To build the full documentation you should make sure to have `hotdoc` installed and
build [gst-build](https://cgit.freedesktop.org/gstreamer/gst-build/) configuring it with:
```
meson -Ddoc=enabled build/
```
And building the documentation:
```
ninja -C build/ subprojects/gst-docs/GStreamer-doc`, this will result in two documentation sets:
```
This will generate two outputs:
 - the html in `build/subprojects/gst-docs/GStreamer-doc/html`
 - the [devhelp](https://wiki.gnome.org/Apps/Devhelp) in `build/subprojects/gst-docs/GStreamer-doc/devhelp`
HOW THE BUILD SYSTEM IS SET UP
------------------------------
Hotdoc build targets are generated for each documentation 'components' (ie. hotdoc
subprojects). This includes libraries documentation and one target per GStreamer plugin.
One can build a specific documentation target by explicitly building the target,
for example to build the GStreamer core library documentation (adapt the paths if you
are using `gst-build`):
 ninja docs/libgstreamer-doc
Then the documentation will be available in `docs/libgstreamer-doc/html/`.
SPELL CHECKING
--------------
FILL ME.
HOTDOC NOTES
=============
* files under revision control:
 - sitemap.txt: defines the overall structure of the documentation
 - gst_plugins_cache.json: Automatically generated information about plugins
* what to do when adding a new piece of API:
 - Just let hotdoc generate the documentation and decide where to put it
 - Make sure to add a `SECTION` documentation section in the file where
 the documentation should land (hotdoc will use that to create its
 "smart index" and list symbols from other files that should land
 on that page in that section.
 - document functions, signals in the .c files
 - document structs, typedefs, enums in the .h files
* what to do when trying to improve the docs
 - compare the output of
 grep "_get_type" gstreamer-sections.txt | sort
 with the types in XXX.types to detect entries that
 are maybe missing
 - hotdoc does not warns about empty member docs!, run
 find . -name "*.[c,h]" -exec egrep -Hn "^ +\* +@.*: *$" {} \;
 in the project root to find them
 - hotdoc does not warns about empty Returns: docs!, run
 find . -name "*.[c,h]" -exec egrep -Hn "^ +\* +@Returns: *$" {} \;
 in the project root to find them
* what happens during a hotdoc build ?
 - Read the GIR and scan the sources files for the docstrings and
 generate the documentation laying out pages the way they are documented.
 - The meson build definition is set in a way that makes it so all plugins
 in `plugins_doc` are introspected and documented
STYLE GUIDE FOR HOTDOC
=======================
- this is in addition to gtk-doc's style-guide.txt
- function/macro descriptions are descriptive, not imperative
 ie, it uses the third person verb
- synopsis and description should have most-used/application functions at the
 top
- functions that can return FALSE/NULL or fail should describe their failure
 conditions like this:
 * Returns NULL if no element with the given name is found in the bin, if
 * the frobble was stuck in the froob, or the frizzle was frazzed.
- a line with function attributes should be added before Returns:
 - can contain:
 "MT safe." - the function is verified to be multithreadingsafe
 "Caller owns returned reference" for refcounted classes
 "Caller owns returned value" for other types (iterators, ..)
 - we do this because, in contrast with GLib/GTK, we are more explicit
 about threadsafety and related issues
WEBSITE DOCUMENTATION
=====================
Updating the online documentation is done from with the `gst-docs` repository
DOCUMENTING ELEMENTS
====================
A hotdoc plugin is provided by GStreamer to document GStreamer plugins.
- to add a plugin to be documented:
 - make sure the plugin is added to the `plugins_doc` variable in meson
- to add an element to be documented:
 - add a gtk-doc section to the source code like:
/**
 * SECTION:element-multifdsink
 and fill it with documentation about the element
 - add an example:
 - either a few pipelines, inside a codeblock
 - or a piece of code inside a codeblock or in `tests/examples/(pluginname)`
 - to build the doc for a plugin, do:
 `ninja docs/(pluginname)-doc`
DEVHELP INTEGRATION
-------------------
Check https://wiki.gnome.org/Apps/Devhelp
It's a really nice development app allowing you to look up API stuff
from various hotdoc/gtk-doc'd libraries. GStreamer is one of these ;)
hotdoc generates both html API docs and the matching .devhelp(2) books.
IMAGES
------
It's important to keep the original source format for images, to be able
to change and regenerate later on. Original files go in
docs/images
举报
举报成功
我们将于2个工作日内通过站内信反馈结果给你!
请认真填写举报原因,尽可能描述详细。
请选择举报类型
取消
发送
误判申诉

此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。

如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。

取消
提交

简介

fork from https://gitlab.freedesktop.org/gstreamer/gstreamer
暂无标签
README
LGPL-2.1
使用 LGPL-2.1 开源许可协议
取消

发行版

暂无发行版

贡献者

全部

近期动态

不能加载更多了
编辑仓库简介
简介内容
主页
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/source-code-sync/gstreamer.git
git@gitee.com:source-code-sync/gstreamer.git
source-code-sync
gstreamer
gstreamer
master
点此查找更多帮助

搜索帮助

评论
仓库举报
回到顶部
登录提示
该操作需登录 Gitee 帐号,请先登录后再操作。
立即登录
没有帐号,去注册

AltStyle によって変換されたページ (->オリジナル) /