Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
cloud-kernel
提交
8d3557e2
cloud-kernel
项目概览
openanolis
/
cloud-kernel
接近 2 年 前同步成功
通知
170
Star
36
Fork
7
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
10
列表
看板
标记
里程碑
合并请求
2
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
cloud-kernel
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
10
Issue
10
列表
看板
标记
里程碑
合并请求
2
合并请求
2
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
8d3557e2
编写于
7月 03, 2010
作者:
M
Mauro Carvalho Chehab
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
V4L/DVB: DocBook/dvb: Update spec to reflect the current FE capabilities
Signed-off-by:
N
Mauro Carvalho Chehab
<
mchehab@redhat.com
>
上级
f6a20eb1
变更
4
隐藏空白更改
内联
并排
Showing
4 changed file
with
27 addition
and
7 deletion
+27
-7
Documentation/DocBook/dvb/dvbapi.xml
Documentation/DocBook/dvb/dvbapi.xml
+16
-3
Documentation/DocBook/dvb/frontend.h.xml
Documentation/DocBook/dvb/frontend.h.xml
+1
-0
Documentation/DocBook/dvb/frontend.xml
Documentation/DocBook/dvb/frontend.xml
+8
-2
Documentation/DocBook/media.tmpl
Documentation/DocBook/media.tmpl
+2
-2
未找到文件。
Documentation/DocBook/dvb/dvbapi.xml
浏览文件 @
8d3557e2
...
@@ -12,10 +12,12 @@
...
@@ -12,10 +12,12 @@
<othername
role=
"mi"
>
O. C.
</othername>
<othername
role=
"mi"
>
O. C.
</othername>
<affiliation><address><email>
rjkm@metzlerbros.de
</email></address></affiliation>
<affiliation><address><email>
rjkm@metzlerbros.de
</email></address></affiliation>
</author>
</author>
</authorgroup>
<authorgroup>
<author>
<author>
<firstname>
Mauro
</firstname>
<firstname>
Mauro
</firstname>
<surname>
Chehab
</surname>
<othername
role=
"mi"
>
Carvalho
</othername>
<othername
role=
"mi"
>
Carvalho
</othername>
<surname>
Chehab
</surname>
<affiliation><address><email>
mchehab@redhat.com
</email></address></affiliation>
<affiliation><address><email>
mchehab@redhat.com
</email></address></affiliation>
<contrib>
Ported document to Docbook XML.
</contrib>
<contrib>
Ported document to Docbook XML.
</contrib>
</author>
</author>
...
@@ -23,12 +25,23 @@
...
@@ -23,12 +25,23 @@
<copyright>
<copyright>
<year>
2002
</year>
<year>
2002
</year>
<year>
2003
</year>
<year>
2003
</year>
<year>
2009
</year>
<holder>
Convergence GmbH
</holder>
<holder>
Convergence GmbH
</holder>
</copyright>
</copyright>
<copyright>
<year>
2009-2010
</year>
<holder>
Mauro Carvalho Chehab
</holder>
</copyright>
<revhistory>
<revhistory>
<!-- Put document revisions here, newest first. -->
<!-- Put document revisions here, newest first. -->
<revision>
<revnumber>
2.0.3
</revnumber>
<date>
2010-07-03
</date>
<authorinitials>
mcc
</authorinitials>
<revremark>
Add some frontend capabilities flags, present on kernel, but missing at the specs.
</revremark>
</revision>
<revision>
<revision>
<revnumber>
2.0.2
</revnumber>
<revnumber>
2.0.2
</revnumber>
<date>
2009-10-25
</date>
<date>
2009-10-25
</date>
...
@@ -63,7 +76,7 @@ Added ISDB-T test originally written by Patrick Boettcher
...
@@ -63,7 +76,7 @@ Added ISDB-T test originally written by Patrick Boettcher
<title>
LINUX DVB API
</title>
<title>
LINUX DVB API
</title>
<subtitle>
Version
3
</subtitle>
<subtitle>
Version
5.2
</subtitle>
<!-- ADD THE CHAPTERS HERE -->
<!-- ADD THE CHAPTERS HERE -->
<chapter
id=
"dvb_introdution"
>
<chapter
id=
"dvb_introdution"
>
&sub-intro;
&sub-intro;
...
...
Documentation/DocBook/dvb/frontend.h.xml
浏览文件 @
8d3557e2
...
@@ -63,6 +63,7 @@ typedef enum fe_caps {
...
@@ -63,6 +63,7 @@ typedef enum fe_caps {
FE_CAN_8VSB = 0x200000,
FE_CAN_8VSB = 0x200000,
FE_CAN_16VSB = 0x400000,
FE_CAN_16VSB = 0x400000,
FE_HAS_EXTENDED_CAPS = 0x800000, /* We need more bitspace for newer APIs, indicate this. */
FE_HAS_EXTENDED_CAPS = 0x800000, /* We need more bitspace for newer APIs, indicate this. */
FE_CAN_TURBO_FEC = 0x8000000, /* frontend supports "turbo fec modulation" */
FE_CAN_2G_MODULATION = 0x10000000, /* frontend supports "2nd generation modulation" (DVB-S2) */
FE_CAN_2G_MODULATION = 0x10000000, /* frontend supports "2nd generation modulation" (DVB-S2) */
FE_NEEDS_BENDING = 0x20000000, /* not supported anymore, don't use (frontend requires frequency bending) */
FE_NEEDS_BENDING = 0x20000000, /* not supported anymore, don't use (frontend requires frequency bending) */
FE_CAN_RECOVER = 0x40000000, /* frontend can recover from a cable unplug automatically */
FE_CAN_RECOVER = 0x40000000, /* frontend can recover from a cable unplug automatically */
...
...
Documentation/DocBook/dvb/frontend.xml
浏览文件 @
8d3557e2
...
@@ -64,8 +64,14 @@ a specific frontend type.</para>
...
@@ -64,8 +64,14 @@ a specific frontend type.</para>
FE_CAN_BANDWIDTH_AUTO = 0x40000,
FE_CAN_BANDWIDTH_AUTO = 0x40000,
FE_CAN_GUARD_INTERVAL_AUTO = 0x80000,
FE_CAN_GUARD_INTERVAL_AUTO = 0x80000,
FE_CAN_HIERARCHY_AUTO = 0x100000,
FE_CAN_HIERARCHY_AUTO = 0x100000,
FE_CAN_MUTE_TS = 0x80000000,
FE_CAN_8VSB = 0x200000,
FE_CAN_CLEAN_SETUP = 0x40000000
FE_CAN_16VSB = 0x400000,
FE_HAS_EXTENDED_CAPS = 0x800000,
FE_CAN_TURBO_FEC = 0x8000000,
FE_CAN_2G_MODULATION = 0x10000000,
FE_NEEDS_BENDING = 0x20000000,
FE_CAN_RECOVER = 0x40000000,
FE_CAN_MUTE_TS = 0x80000000
} fe_caps_t;
} fe_caps_t;
</programlisting>
</programlisting>
</section>
</section>
...
...
Documentation/DocBook/media.tmpl
浏览文件 @
8d3557e2
...
@@ -28,7 +28,7 @@
...
@@ -28,7 +28,7 @@
<title>
LINUX MEDIA INFRASTRUCTURE API
</title>
<title>
LINUX MEDIA INFRASTRUCTURE API
</title>
<copyright>
<copyright>
<year>
2009
</year>
<year>
2009
-2010
</year>
<holder>
LinuxTV Developers
</holder>
<holder>
LinuxTV Developers
</holder>
</copyright>
</copyright>
...
@@ -86,7 +86,7 @@ Foundation. A copy of the license is included in the chapter entitled
...
@@ -86,7 +86,7 @@ Foundation. A copy of the license is included in the chapter entitled
</author>
</author>
</authorgroup>
</authorgroup>
<copyright>
<copyright>
<year>
2009
</year>
<year>
2009
-2010
</year>
<holder>
Mauro Carvalho Chehab
</holder>
<holder>
Mauro Carvalho Chehab
</holder>
</copyright>
</copyright>
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录