aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'extrel/ti/ivahd_codecs/packages/ti/sdo/codecs/h264enc/ce')
-rw-r--r--extrel/ti/ivahd_codecs/packages/ti/sdo/codecs/h264enc/ce/H264ENC.xdc26
-rw-r--r--extrel/ti/ivahd_codecs/packages/ti/sdo/codecs/h264enc/ce/H264ENC.xs24
-rw-r--r--extrel/ti/ivahd_codecs/packages/ti/sdo/codecs/h264enc/ce/package.bld6
-rw-r--r--extrel/ti/ivahd_codecs/packages/ti/sdo/codecs/h264enc/ce/package.xdc11
-rw-r--r--extrel/ti/ivahd_codecs/packages/ti/sdo/codecs/h264enc/ce/package/.vers_b1500
-rw-r--r--extrel/ti/ivahd_codecs/packages/ti/sdo/codecs/h264enc/ce/package/.vers_c1500
-rw-r--r--extrel/ti/ivahd_codecs/packages/ti/sdo/codecs/h264enc/ce/package/.vers_g1800
-rw-r--r--extrel/ti/ivahd_codecs/packages/ti/sdo/codecs/h264enc/ce/package/.vers_r1700
-rw-r--r--extrel/ti/ivahd_codecs/packages/ti/sdo/codecs/h264enc/ce/package/.xdc-v380
-rw-r--r--extrel/ti/ivahd_codecs/packages/ti/sdo/codecs/h264enc/ce/package/build.cfg12
-rw-r--r--extrel/ti/ivahd_codecs/packages/ti/sdo/codecs/h264enc/ce/package/package.bld.xml40
-rw-r--r--extrel/ti/ivahd_codecs/packages/ti/sdo/codecs/h264enc/ce/package/package.defs.h13
-rw-r--r--extrel/ti/ivahd_codecs/packages/ti/sdo/codecs/h264enc/ce/package/package.doc.xml332
-rw-r--r--extrel/ti/ivahd_codecs/packages/ti/sdo/codecs/h264enc/ce/package/package.ext.xml128
-rw-r--r--extrel/ti/ivahd_codecs/packages/ti/sdo/codecs/h264enc/ce/package/package.rel.dot2156
-rw-r--r--extrel/ti/ivahd_codecs/packages/ti/sdo/codecs/h264enc/ce/package/package.rel.xml128
-rw-r--r--extrel/ti/ivahd_codecs/packages/ti/sdo/codecs/h264enc/ce/package/package_ti.sdo.codecs.h264enc.ce.c21
-rw-r--r--extrel/ti/ivahd_codecs/packages/ti/sdo/codecs/h264enc/ce/package/ti.sdo.codecs.h264enc.ce.ccsbin0 -> 5611 bytes
-rw-r--r--extrel/ti/ivahd_codecs/packages/ti/sdo/codecs/h264enc/ce/package/ti.sdo.codecs.h264enc.ce.sch0
-rw-r--r--extrel/ti/ivahd_codecs/packages/ti/sdo/codecs/h264enc/ce/package/ti_sdo_codecs_h264enc_ce.classbin0 -> 9837 bytes
-rw-r--r--extrel/ti/ivahd_codecs/packages/ti/sdo/codecs/h264enc/ce/package/ti_sdo_codecs_h264enc_ce.java251
21 files changed, 3148 insertions, 0 deletions
diff --git a/extrel/ti/ivahd_codecs/packages/ti/sdo/codecs/h264enc/ce/H264ENC.xdc b/extrel/ti/ivahd_codecs/packages/ti/sdo/codecs/h264enc/ce/H264ENC.xdc
new file mode 100644
index 0000000..906d85a
--- /dev/null
+++ b/extrel/ti/ivahd_codecs/packages/ti/sdo/codecs/h264enc/ce/H264ENC.xdc
@@ -0,0 +1,26 @@
1/*!
2 * ======== H264ENC========
3 * H264ENC codec specification
4 *
5 * This file specifies information necessary to integrate with the Codec
6 * Engine.
7 *
8 * By inheriting ti.sdo.ce.video2.IVIDENC2, H264ENC declares that it "is
9 * a" video2 algorithm. This allows the codec engine to automatically
10 * supply simple stubs and skeletons for transparent execution of DSP
11 * codecs by the GPP.
12 *
13 * In addition to declaring the type of the H264ENC algorithm, we
14 * declare the external symbol required by xDAIS that identifies the
15 * algorithms implementation functions.
16 */
17metaonly module H264ENC inherits ti.sdo.ce.video2.IVIDENC2
18{
19 readonly config ti.sdo.codecs.h264enc.H264ENC.Module alg =
20 ti.sdo.codecs.h264enc.H264ENC;
21
22 override readonly config String ialgFxns = "H264ENC_TI_IH264ENC";
23
24 override readonly config String iresFxns = "H264ENC_TI_IRES";
25
26}
diff --git a/extrel/ti/ivahd_codecs/packages/ti/sdo/codecs/h264enc/ce/H264ENC.xs b/extrel/ti/ivahd_codecs/packages/ti/sdo/codecs/h264enc/ce/H264ENC.xs
new file mode 100644
index 0000000..761af64
--- /dev/null
+++ b/extrel/ti/ivahd_codecs/packages/ti/sdo/codecs/h264enc/ce/H264ENC.xs
@@ -0,0 +1,24 @@
1/*
2 * ======== H264ENC.xs ========
3 * This file implements the functions specified in the ti.sdo.ce.ICodec
4 * interface. These functions enable the configuration tool to validate
5 * user supplied configuration parameters (e.g., stack size for the
6 * thread running this codec).
7 */
8
9var verbose = false; /* set to true to enable verbose output during config */
10
11
12/*
13 * ======== getStackSize ========
14 */
15function getStackSize(prog)
16{
17 if (verbose) {
18 print("getting stack size for " + this.$name
19 + " built for the target " + prog.build.target.$name
20 + ", running on platform " + prog.platformName);
21 }
22
23 return (4096);
24}
diff --git a/extrel/ti/ivahd_codecs/packages/ti/sdo/codecs/h264enc/ce/package.bld b/extrel/ti/ivahd_codecs/packages/ti/sdo/codecs/h264enc/ce/package.bld
new file mode 100644
index 0000000..369664b
--- /dev/null
+++ b/extrel/ti/ivahd_codecs/packages/ti/sdo/codecs/h264enc/ce/package.bld
@@ -0,0 +1,6 @@
1/*
2 * ======== package.bld ========
3 */
4
5
6Pkg.attrs.exportAll = true;
diff --git a/extrel/ti/ivahd_codecs/packages/ti/sdo/codecs/h264enc/ce/package.xdc b/extrel/ti/ivahd_codecs/packages/ti/sdo/codecs/h264enc/ce/package.xdc
new file mode 100644
index 0000000..364e2b5
--- /dev/null
+++ b/extrel/ti/ivahd_codecs/packages/ti/sdo/codecs/h264enc/ce/package.xdc
@@ -0,0 +1,11 @@
1requires ti.sdo.ce.video2;
2requires ti.sdo.codecs.h264enc;
3
4/*!
5 * ======== package.xdc ========
6 * Provides ICodec interface adapter for ti.sdo.codecs.h264enc codec.
7 */
8
9package ti.sdo.codecs.h264enc.ce [1, 0, 0] {
10 module H264ENC;
11}
diff --git a/extrel/ti/ivahd_codecs/packages/ti/sdo/codecs/h264enc/ce/package/.vers_b150 b/extrel/ti/ivahd_codecs/packages/ti/sdo/codecs/h264enc/ce/package/.vers_b150
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/extrel/ti/ivahd_codecs/packages/ti/sdo/codecs/h264enc/ce/package/.vers_b150
diff --git a/extrel/ti/ivahd_codecs/packages/ti/sdo/codecs/h264enc/ce/package/.vers_c150 b/extrel/ti/ivahd_codecs/packages/ti/sdo/codecs/h264enc/ce/package/.vers_c150
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/extrel/ti/ivahd_codecs/packages/ti/sdo/codecs/h264enc/ce/package/.vers_c150
diff --git a/extrel/ti/ivahd_codecs/packages/ti/sdo/codecs/h264enc/ce/package/.vers_g180 b/extrel/ti/ivahd_codecs/packages/ti/sdo/codecs/h264enc/ce/package/.vers_g180
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/extrel/ti/ivahd_codecs/packages/ti/sdo/codecs/h264enc/ce/package/.vers_g180
diff --git a/extrel/ti/ivahd_codecs/packages/ti/sdo/codecs/h264enc/ce/package/.vers_r170 b/extrel/ti/ivahd_codecs/packages/ti/sdo/codecs/h264enc/ce/package/.vers_r170
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/extrel/ti/ivahd_codecs/packages/ti/sdo/codecs/h264enc/ce/package/.vers_r170
diff --git a/extrel/ti/ivahd_codecs/packages/ti/sdo/codecs/h264enc/ce/package/.xdc-v38 b/extrel/ti/ivahd_codecs/packages/ti/sdo/codecs/h264enc/ce/package/.xdc-v38
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/extrel/ti/ivahd_codecs/packages/ti/sdo/codecs/h264enc/ce/package/.xdc-v38
diff --git a/extrel/ti/ivahd_codecs/packages/ti/sdo/codecs/h264enc/ce/package/build.cfg b/extrel/ti/ivahd_codecs/packages/ti/sdo/codecs/h264enc/ce/package/build.cfg
new file mode 100644
index 0000000..c7632a2
--- /dev/null
+++ b/extrel/ti/ivahd_codecs/packages/ti/sdo/codecs/h264enc/ce/package/build.cfg
@@ -0,0 +1,12 @@
1if (pkg.$vers.length >= 3) {
2 pkg.$vers.push(Packages.xdc.services.global.Vers.getDate(xdc.csd() + '/..'));
3}
4
5pkg.build.libraries = [
6];
7
8pkg.build.libDesc = [
9];
10if ('suffix' in xdc.om['xdc.IPackage$$LibDesc']) {
11}
12
diff --git a/extrel/ti/ivahd_codecs/packages/ti/sdo/codecs/h264enc/ce/package/package.bld.xml b/extrel/ti/ivahd_codecs/packages/ti/sdo/codecs/h264enc/ce/package/package.bld.xml
new file mode 100644
index 0000000..16425d7
--- /dev/null
+++ b/extrel/ti/ivahd_codecs/packages/ti/sdo/codecs/h264enc/ce/package/package.bld.xml
@@ -0,0 +1,40 @@
1<?xml version="1.0" encoding="UTF-8"?>
2<!-- This file conforms to the DTD xdc/bld/build.dtd -->
3<package name="ti.sdo.codecs.h264enc.ce" version="1, 0, 0" producerId="undefined">
4 <units>
5 <module name="H264ENC"/>
6 </units>
7 <sources>
8 </sources>
9 <configurations>
10 </configurations>
11 <makefiles>
12 <srcFile name="package.mak" src="package.bld"/>
13 <srcFile name="package/package.xdc.dep" src="package.xdc"/>
14 <srcFile name="package/package.cfg.dep" src="package.xdc"/>
15 <srcFile name="package/rel/ti_sdo_codecs_h264enc_ce.tar.dep" src="package/rel/ti_sdo_codecs_h264enc_ce.xdc.inc"/>
16 </makefiles>
17 <targets>
18 </targets>
19 <libraries>
20 </libraries>
21 <executables>
22 </executables>
23 <tests>
24 </tests>
25 <releases relDir="package/rel/">
26 <release name="ti_sdo_codecs_h264enc_ce"
27 pname="ti_sdo_codecs_h264enc_ce.tar"
28 label="default"
29 >
30 <file name="package/build.cfg"/>
31 <file name="package/package.cfg.xdc.inc"/>
32 <file name="package/package.ext.xml"/>
33 <file name="package/package.xdc.inc"/>
34 <file name="package/package.bld.xml"/>
35 <file name="package/package.rel.dot"/>
36 </release>
37 </releases>
38 <repositories>
39 </repositories>
40</package>
diff --git a/extrel/ti/ivahd_codecs/packages/ti/sdo/codecs/h264enc/ce/package/package.defs.h b/extrel/ti/ivahd_codecs/packages/ti/sdo/codecs/h264enc/ce/package/package.defs.h
new file mode 100644
index 0000000..f8fa695
--- /dev/null
+++ b/extrel/ti/ivahd_codecs/packages/ti/sdo/codecs/h264enc/ce/package/package.defs.h
@@ -0,0 +1,13 @@
1/*
2 * Do not modify this file; it is automatically
3 * generated and any modifications will be overwritten.
4 *
5 * @(#) xdc-v38
6 */
7
8#ifndef ti_sdo_codecs_h264enc_ce__
9#define ti_sdo_codecs_h264enc_ce__
10
11
12
13#endif /* ti_sdo_codecs_h264enc_ce__ */
diff --git a/extrel/ti/ivahd_codecs/packages/ti/sdo/codecs/h264enc/ce/package/package.doc.xml b/extrel/ti/ivahd_codecs/packages/ti/sdo/codecs/h264enc/ce/package/package.doc.xml
new file mode 100644
index 0000000..47cd2d8
--- /dev/null
+++ b/extrel/ti/ivahd_codecs/packages/ti/sdo/codecs/h264enc/ce/package/package.doc.xml
@@ -0,0 +1,332 @@
1<?xml version="1.0" encoding="UTF-8"?>
2<package kind='package' name='ti.sdo.codecs.h264enc.ce' nodoc='0' root='../../../../../' summary='Provides+ICodec+interface+adapter+for+ti.sdo.codecs.h264enc+codec'>
3 <line tab='0' content='%3Cspan+class%3D%22xdoc-kw1%22%3Erequires%3C%2Fspan%3E+%3Ca+class%3D%22xdoc-link%22+href%3D%22..%2F..%2F..%2F..%2F..%2Fti%2Fsdo%2Fce%2Fvideo2%2Fpackage.html%22+title%3D%22ti.sdo.ce.video2%22%3Eti.sdo.ce.video2%3C%2Fa%3E%3B'/>
4 <line tab='0' content='%3Cspan+class%3D%22xdoc-kw1%22%3Erequires%3C%2Fspan%3E+%3Ca+class%3D%22xdoc-link%22+href%3D%22..%2F..%2F..%2F..%2F..%2Fti%2Fsdo%2Fcodecs%2Fh264enc%2Fpackage.html%22+title%3D%22ti.sdo.codecs.h264enc%22%3Eti.sdo.codecs.h264enc%3C%2Fa%3E%3B'/>
5 <line blank='1' always='0'/>
6 <line tab='0' content='%3Cspan+class%3D%22xdoc-kw1%22%3Epackage%3C%2Fspan%3E+%3Cgo%3E%3Cspan+class%3D%22xdoc-id%22%3Eti.sdo.codecs.h264enc.ce%3C%2Fspan%3E%3C%2Fgo%3E+%5B1%2C+0%2C+0%5D+%7B'/>
7 <line tab='0' content='%7D'/>
8 <unit name='H264ENC' kind='module' nodoc='0' metaonly='1' summary='H264ENC+codec+specification' inherits='ti.sdo.ce.video2.IVIDENC2'>
9 <synopSpec>
10 <line tab='0' content='%3Cspan+class%3D%22xdoc-kw1%22%3Epackage%3C%2Fspan%3E+%3Ca+class%3D%22xdoc-link%22+href%3D%22..%2F..%2F..%2F..%2F..%2Fti%2Fsdo%2Fcodecs%2Fh264enc%2Fce%2Fpackage.html%22+title%3D%22ti.sdo.codecs.h264enc.ce%22%3Eti.sdo.codecs.h264enc.ce%3C%2Fa%3E%3B'/>
11 <line blank='1' always='0'/>
12 <line tab='0' content='%3Cspan+class%3D%22xdoc-kw1%22%3Emetaonly+%3C%2Fspan%3E%3Cspan+class%3D%22xdoc-kw1%22%3Emodule%3C%2Fspan%3E+%3Cgo%3E%3Cspan+class%3D%22xdoc-id%22%3EH264ENC%3C%2Fspan%3E%3C%2Fgo%3E%3Cspan+class%3D%22xdoc-kw1%22%3E+inherits+%3C%2Fspan%3E%3Ca+class%3D%22xdoc-link%22+href%3D%22..%2F..%2F..%2F..%2F..%2Fti%2Fsdo%2Fce%2Fvideo2%2FIVIDENC2.html%22+title%3D%22ti.sdo.ce.video2.IVIDENC2%22%3EIVIDENC2%3C%2Fa%3E+%7B'/>
13 <line tab='0' content='%7D'/>
14 </synopSpec>
15 <specInfo>
16 <line tab='0' content='%3Cspan+class%3D%22xdoc-kw1%22%3Emetaonly+%3C%2Fspan%3E%3Cspan+class%3D%22xdoc-kw1%22%3Emodule%3C%2Fspan%3E+%3Cgo%3E%3Cspan+class%3D%22xdoc-id%22%3EH264ENC%3C%2Fspan%3E%3C%2Fgo%3E+%7B%3Cb%3E%26nbsp%3B%26nbsp%3B...%3C%2Fb%3E'/>
17 <line tab='0' comment='inherits+%3Ca+class%3D%22xdoc-link%22+href%3D%22..%2F..%2F..%2F..%2F..%2Fti%2Fsdo%2Fce%2Fvideo2%2FIVIDENC2.html%22+title%3D%22ti.sdo.ce.video2.IVIDENC2%22%3Eti.sdo.ce.video2.IVIDENC2%3C%2Fa%3E'/>
18 <line tab='1' comment='inherits+%3Ca+class%3D%22xdoc-link%22+href%3D%22..%2F..%2F..%2F..%2F..%2Fti%2Fsdo%2Fce%2FICodec.html%22+title%3D%22ti.sdo.ce.ICodec%22%3Eti.sdo.ce.ICodec%3C%2Fa%3E'/>
19 </specInfo>
20 <synopMeta>
21 <line tab='0' content='%3Cspan+class%3D%22xdoc-kw1%22%3Evar%3C%2Fspan%3E+H264ENC+%3D+%3Cspan+class%3D%22xdoc-kw3%22%3Exdc.useModule%3C%2Fspan%3E%28%3Cspan+class%3D%22xdoc-id%22%3E%27ti.sdo.codecs.h264enc.ce.H264ENC%27%3C%2Fspan%3E%29%3B'/>
22 </synopMeta>
23 <docSect name='details'>
24 <docPara content='This+file+specifies+information+necessary+to+integrate+with+the+Codec%0A++Engine.'/>
25 <docPara content='By+inheriting+ti.sdo.ce.video2.IVIDENC2%2C+H264ENC+declares+that+it+%22is%0A++a%22+video2+algorithm.++This+allows+the+codec+engine+to+automatically%0A++supply+simple+stubs+and+skeletons+for+transparent+execution+of+DSP%0A++codecs+by+the+GPP.'/>
26 <docPara content='In+addition+to+declaring+the+type+of+the+H264ENC+algorithm%2C+we%0A++declare+the+external+symbol+required+by+xDAIS+that+identifies+the%0A++algorithms+implementation+functions.'/>
27 </docSect>
28 <group name='module-wide constants &amp; types'>
29 <decl spacer='1'/>
30 </group>
31 <group name='module-wide config parameters'>
32 <decl spacer='1'/>
33 <decl kind='config' name='alg' anchor='alg' altext='ti.sdo.codecs.h264enc.ce.H264ENC.alg' nodoc='0' external='1' overrides='0' readonly='1' instance='0' summary=''>
34 <synopSpec>
35 <line tab='0' content='%3Cspan+class%3D%22xdoc-kw1%22%3Ereadonly+%3C%2Fspan%3E%3Cspan+class%3D%22xdoc-kw1%22%3Econfig%3C%2Fspan%3E+%3Ca+class%3D%22xdoc-link%22+href%3D%22..%2F..%2F..%2F..%2F..%2Fti%2Fsdo%2Fcodecs%2Fh264enc%2FH264ENC.html%23.Module%22+title%3D%22ti.sdo.codecs.h264enc.H264ENC.Module%22%3EH264ENC.Module%3C%2Fa%3E%26nbsp%3B%3Cgo%3E%3Cspan+class%3D%22xdoc-id%22%3Ealg%3C%2Fspan%3E%3C%2Fgo%3E+%3D+%253Ca%2Bclass%253D%2522xdoc-link%2522%2Bhref%253D%2522..%252F..%252F..%252F..%252F..%252Fti%252Fsdo%252Fcodecs%252Fh264enc%252FH264ENC.html%2523module%2522%2Btitle%253D%2522ti.sdo.codecs.h264enc.H264ENC.module%2522%253EH264ENC.module%253C%252Fa%253E%3B'/>
36 </synopSpec>
37 <synopMeta>
38 <line tab='0' content='%3Cspan+class%3D%22xdoc-kw1%22%3Econst%3C%2Fspan%3E+%3Cgo%3EH264ENC.%3Cspan+class%3D%22xdoc-id%22%3Ealg%3C%2Fspan%3E%3C%2Fgo%3E+%3D+%3Ci%3E%3Ca+class%3D%22xdoc-link%22+href%3D%22..%2F..%2F..%2F..%2F..%2Fti%2Fsdo%2Fcodecs%2Fh264enc%2FH264ENC.html%23.Module%22+title%3D%22ti.sdo.codecs.h264enc.H264ENC.Module%22%3EH264ENC.Module%3C%2Fa%3E%3C%2Fi%3E+%253Ca%2Bclass%253D%2522xdoc-link%2522%2Bhref%253D%2522..%252F..%252F..%252F..%252F..%252Fti%252Fsdo%252Fcodecs%252Fh264enc%252FH264ENC.html%2523module%2522%2Btitle%253D%2522ti.sdo.codecs.h264enc.H264ENC.module%2522%253EH264ENC.module%253C%252Fa%253E%3B'/>
39 </synopMeta>
40 </decl>
41 <decl kind='config' name='codecClassConfigurable' anchor='codec.Class.Configurable' altext='ti.sdo.codecs.h264enc.ce.H264ENC.codecClassConfigurable' nodoc='1' external='1' overrides='1' readonly='1' instance='0' summary='' origin='%3Ca+class%3D%22xdoc-link%22+href%3D%22..%2F..%2F..%2F..%2F..%2Fti%2Fsdo%2Fce%2Fvideo2%2FIVIDENC2.html%23codec.Class.Configurable%22+title%3D%22ti.sdo.ce.video2.IVIDENC2.codecClassConfigurable%22%3EIVIDENC2%3C%2Fa%3E'>
42 <synopSpec>
43 <line tab='0' content='%3Cspan+class%3D%22xdoc-kw1%22%3Eoverride+%3C%2Fspan%3E%3Cspan+class%3D%22xdoc-kw1%22%3Ereadonly+%3C%2Fspan%3E%3Cspan+class%3D%22xdoc-kw1%22%3Econfig%3C%2Fspan%3E+%3Cspan+class%3D%22xdoc-kw2%22%3EBool%3C%2Fspan%3E%26nbsp%3B%3Cgo%3E%3Cspan+class%3D%22xdoc-id%22%3EcodecClassConfigurable%3C%2Fspan%3E%3C%2Fgo%3E+%3D+%253Cspan%2Bclass%253D%2522xdoc-kw2%2522%253Etrue%253C%252Fspan%253E%3B'/>
44 </synopSpec>
45 <synopMeta>
46 <line tab='0' content='%3Cspan+class%3D%22xdoc-kw1%22%3Econst%3C%2Fspan%3E+%3Cgo%3EH264ENC.%3Cspan+class%3D%22xdoc-id%22%3EcodecClassConfigurable%3C%2Fspan%3E%3C%2Fgo%3E+%3D+%3Ci%3E%3Cspan+class%3D%22xdoc-kw2%22%3EBool%3C%2Fspan%3E%3C%2Fi%3E+%253Cspan%2Bclass%253D%2522xdoc-kw2%2522%253Etrue%253C%252Fspan%253E%3B'/>
47 </synopMeta>
48 </decl>
49 <decl kind='config' name='frameRate' anchor='frame.Rate' altext='ti.sdo.codecs.h264enc.ce.H264ENC.frameRate' nodoc='1' external='1' overrides='0' readonly='1' instance='0' summary='Smallest+supported+frame+rate+%28frames+%2F+second%29' origin='%3Ca+class%3D%22xdoc-link%22+href%3D%22..%2F..%2F..%2F..%2F..%2Fti%2Fsdo%2Fce%2FICodec.html%23frame.Rate%22+title%3D%22ti.sdo.ce.ICodec.frameRate%22%3EICodec%3C%2Fa%3E'>
50 <synopSpec>
51 <line tab='0' content='%3Cspan+class%3D%22xdoc-kw1%22%3Ereadonly+%3C%2Fspan%3E%3Cspan+class%3D%22xdoc-kw1%22%3Econfig%3C%2Fspan%3E+%3Cspan+class%3D%22xdoc-kw2%22%3EInt%3C%2Fspan%3E%26nbsp%3B%3Cgo%3E%3Cspan+class%3D%22xdoc-id%22%3EframeRate%3C%2Fspan%3E%3C%2Fgo%3E%3B'/>
52 </synopSpec>
53 <synopMeta>
54 <line tab='0' content='%3Cspan+class%3D%22xdoc-kw1%22%3Econst%3C%2Fspan%3E+%3Cgo%3EH264ENC.%3Cspan+class%3D%22xdoc-id%22%3EframeRate%3C%2Fspan%3E%3C%2Fgo%3E+%3D+%3Ci%3E%3Cspan+class%3D%22xdoc-kw2%22%3EInt%3C%2Fspan%3E%3C%2Fi%3E+%3Ci%3Ecomputed+value%3C%2Fi%3E%3B'/>
55 </synopMeta>
56 <docSect name='details'>
57 <docPara content='This+is+used+to+compute+a+default+priority+assignment+for+algorithm%0A++threads+in+a+DSP+Server.'/>
58 </docSect>
59 </decl>
60 <decl kind='config' name='ialgFxns' anchor='ialg.Fxns' altext='ti.sdo.codecs.h264enc.ce.H264ENC.ialgFxns' nodoc='0' external='1' overrides='1' readonly='1' instance='0' summary='Name+of+xDAIS+alg+function+table' origin='%3Ca+class%3D%22xdoc-link%22+href%3D%22..%2F..%2F..%2F..%2F..%2Fti%2Fsdo%2Fce%2FICodec.html%23ialg.Fxns%22+title%3D%22ti.sdo.ce.ICodec.ialgFxns%22%3EICodec%3C%2Fa%3E'>
61 <synopSpec>
62 <line tab='0' content='%3Cspan+class%3D%22xdoc-kw1%22%3Eoverride+%3C%2Fspan%3E%3Cspan+class%3D%22xdoc-kw1%22%3Ereadonly+%3C%2Fspan%3E%3Cspan+class%3D%22xdoc-kw1%22%3Econfig%3C%2Fspan%3E+%3Cspan+class%3D%22xdoc-kw2%22%3EString%3C%2Fspan%3E%26nbsp%3B%3Cgo%3E%3Cspan+class%3D%22xdoc-id%22%3EialgFxns%3C%2Fspan%3E%3C%2Fgo%3E+%3D+%2522H264ENC_TI_IH264ENC%2522%3B'/>
63 </synopSpec>
64 <synopMeta>
65 <line tab='0' content='%3Cspan+class%3D%22xdoc-kw1%22%3Econst%3C%2Fspan%3E+%3Cgo%3EH264ENC.%3Cspan+class%3D%22xdoc-id%22%3EialgFxns%3C%2Fspan%3E%3C%2Fgo%3E+%3D+%3Ci%3E%3Cspan+class%3D%22xdoc-kw2%22%3EString%3C%2Fspan%3E%3C%2Fi%3E+%2522H264ENC_TI_IH264ENC%2522%3B'/>
66 </synopMeta>
67 <docSect name='details'>
68 <docPara content='All+xDAIS+algorithms+must+define+an+IALG_Fxns+structure+that%0A++contains+implementations+of+the+IALG+methods.++This+configuration%0A++parameter+is+simply+the+extern+name+of+this+structure.'/>
69 </docSect>
70 </decl>
71 <decl kind='config' name='idma3Fxns' anchor='idma3.Fxns' altext='ti.sdo.codecs.h264enc.ce.H264ENC.idma3Fxns' nodoc='0' external='1' overrides='0' readonly='1' instance='0' summary='Name+of+xDAIS+alg+IDMA3+Interface+function+table' origin='%3Ca+class%3D%22xdoc-link%22+href%3D%22..%2F..%2F..%2F..%2F..%2Fti%2Fsdo%2Fce%2FICodec.html%23idma3.Fxns%22+title%3D%22ti.sdo.ce.ICodec.idma3Fxns%22%3EICodec%3C%2Fa%3E'>
72 <synopSpec>
73 <line tab='0' content='%3Cspan+class%3D%22xdoc-kw1%22%3Ereadonly+%3C%2Fspan%3E%3Cspan+class%3D%22xdoc-kw1%22%3Econfig%3C%2Fspan%3E+%3Cspan+class%3D%22xdoc-kw2%22%3EString%3C%2Fspan%3E%26nbsp%3B%3Cgo%3E%3Cspan+class%3D%22xdoc-id%22%3Eidma3Fxns%3C%2Fspan%3E%3C%2Fgo%3E%3B'/>
74 </synopSpec>
75 <synopMeta>
76 <line tab='0' content='%3Cspan+class%3D%22xdoc-kw1%22%3Econst%3C%2Fspan%3E+%3Cgo%3EH264ENC.%3Cspan+class%3D%22xdoc-id%22%3Eidma3Fxns%3C%2Fspan%3E%3C%2Fgo%3E+%3D+%3Ci%3E%3Cspan+class%3D%22xdoc-kw2%22%3EString%3C%2Fspan%3E%3C%2Fi%3E+%3Ci%3Ecomputed+value%3C%2Fi%3E%3B'/>
77 </synopMeta>
78 <docSect name='details'>
79 <docPara content='All+xDAIS+algorithms+that+use+DMA+must+define+an+IDMA3_Fxns+structure%0A++containing+the+pointers+to+functions+implementatng+the+IDMA3+interface.%0A++If+algorithm+does+not+use+DMA+this+structure+does+not+have+to+be%0A++defined.'/>
80 <docPara content='This+configuration+parameter+is+simply+the+extern+name+of+this%0A++structure+when+defined%2C+null+otherwise.'/>
81 </docSect>
82 </decl>
83 <decl kind='config' name='iresFxns' anchor='ires.Fxns' altext='ti.sdo.codecs.h264enc.ce.H264ENC.iresFxns' nodoc='0' external='1' overrides='1' readonly='1' instance='0' summary='Name+of+xDAIS+alg+IRES+Interface+function+table' origin='%3Ca+class%3D%22xdoc-link%22+href%3D%22..%2F..%2F..%2F..%2F..%2Fti%2Fsdo%2Fce%2FICodec.html%23ires.Fxns%22+title%3D%22ti.sdo.ce.ICodec.iresFxns%22%3EICodec%3C%2Fa%3E'>
84 <synopSpec>
85 <line tab='0' content='%3Cspan+class%3D%22xdoc-kw1%22%3Eoverride+%3C%2Fspan%3E%3Cspan+class%3D%22xdoc-kw1%22%3Ereadonly+%3C%2Fspan%3E%3Cspan+class%3D%22xdoc-kw1%22%3Econfig%3C%2Fspan%3E+%3Cspan+class%3D%22xdoc-kw2%22%3EString%3C%2Fspan%3E%26nbsp%3B%3Cgo%3E%3Cspan+class%3D%22xdoc-id%22%3EiresFxns%3C%2Fspan%3E%3C%2Fgo%3E+%3D+%2522H264ENC_TI_IRES%2522%3B'/>
86 </synopSpec>
87 <synopMeta>
88 <line tab='0' content='%3Cspan+class%3D%22xdoc-kw1%22%3Econst%3C%2Fspan%3E+%3Cgo%3EH264ENC.%3Cspan+class%3D%22xdoc-id%22%3EiresFxns%3C%2Fspan%3E%3C%2Fgo%3E+%3D+%3Ci%3E%3Cspan+class%3D%22xdoc-kw2%22%3EString%3C%2Fspan%3E%3C%2Fi%3E+%2522H264ENC_TI_IRES%2522%3B'/>
89 </synopMeta>
90 <docSect name='details'>
91 <docPara content='All+xDAIS+algorithms+that+use+an+IRES+resource+must+define+an%0A++IRES_Fxns+structure+containing+the+pointers+to+functions%0A++implementatng+the+IRES+interface.%0A++If+algorithm+does+not+use+an+IRES+resource+this+structure+does+not%0A++have+to+be+defined.'/>
92 <docPara content='This+configuration+parameter+is+simply+the+extern+name+of+this%0A++structure+when+defined%2C+null+otherwise.'/>
93 </docSect>
94 <docSect name='see'>
95 <docPara content='%3Ca+class%3D%22xdoc-link%22+href%3D%22H264ENC.html%23ialg.Fxns%22+title%3D%22ialgFxns%22%3EialgFxns%3C%2Fa%3E%2C+%3Ca+class%3D%22xdoc-link%22+href%3D%22H264ENC.html%23idma3.Fxns%22+title%3D%22idma3Fxns%22%3Eidma3Fxns%3C%2Fa%3E'/>
96 </docSect>
97 </decl>
98 <decl kind='config' name='rpcProtocolVersion' anchor='rpc.Protocol.Version' altext='ti.sdo.codecs.h264enc.ce.H264ENC.rpcProtocolVersion' nodoc='0' external='1' overrides='1' readonly='1' instance='0' summary='Version+of+the+Protocol+used+between+the+stubFxns+and+the+serverFxns' origin='%3Ca+class%3D%22xdoc-link%22+href%3D%22..%2F..%2F..%2F..%2F..%2Fti%2Fsdo%2Fce%2Fvideo2%2FIVIDENC2.html%23rpc.Protocol.Version%22+title%3D%22ti.sdo.ce.video2.IVIDENC2.rpcProtocolVersion%22%3EIVIDENC2%3C%2Fa%3E'>
99 <synopSpec>
100 <line tab='0' content='%3Cspan+class%3D%22xdoc-kw1%22%3Eoverride+%3C%2Fspan%3E%3Cspan+class%3D%22xdoc-kw1%22%3Ereadonly+%3C%2Fspan%3E%3Cspan+class%3D%22xdoc-kw1%22%3Econfig%3C%2Fspan%3E+%3Cspan+class%3D%22xdoc-kw2%22%3EInt%3C%2Fspan%3E%26nbsp%3B%3Cgo%3E%3Cspan+class%3D%22xdoc-id%22%3ErpcProtocolVersion%3C%2Fspan%3E%3C%2Fgo%3E+%3D+0%3B'/>
101 </synopSpec>
102 <synopMeta>
103 <line tab='0' content='%3Cspan+class%3D%22xdoc-kw1%22%3Econst%3C%2Fspan%3E+%3Cgo%3EH264ENC.%3Cspan+class%3D%22xdoc-id%22%3ErpcProtocolVersion%3C%2Fspan%3E%3C%2Fgo%3E+%3D+%3Ci%3E%3Cspan+class%3D%22xdoc-kw2%22%3EInt%3C%2Fspan%3E%3C%2Fi%3E+0%3B'/>
104 </synopMeta>
105 <docSect name='details'>
106 <docPara content='This+is+set+by+a+particular+implementation+of+a+stub%2Fskeleton+RPC+pair%2C%0A++and+is+used+at+runtime+to+ensure+the+protocol+matches.++This+is%0A++important%2C+for+example%2C+to+ensure+that+the+protocol+used+by+skeletons%0A++built+into+a+server+matches+that+used+by+the+stubs+built+into+the%0A++application.++Specifically%2C+this+is+typically+changed+when+the%0A++marshalling%2Funmarshalling+message+format+changes.'/>
107 <docPara content='This+is+generally+not+configured+by+application+or+server+config%0A++scripts%2C+but+rather+by+developers+of+VISA-like+API+class+extensions.'/>
108 <docPara content='This+rpcProtocolVersion+is+built+into+the+local+application+executable%2C%0A++as+well+as+the+remote+server%27s+executable.'/>
109 <docPara content='Developers+of+class+extensions+should+ensure+this+config+parameter+is%0A++set+appropriately+by+each+release+of+their+stubs%2Fskeletons.++If+a+new%0A++protocol+is+introduced%2C+implying+that+updating+both+would+result+in%0A++error%2C+the+number+should+be+incremented.'/>
110 <docPara content='There+is+no+%22backward-compatibility%22+requirement+in+rpcProtocolVersion.%0A++If+the+version+is+different%2C+regardless+of+whether+it%27s+larger+or%0A++smaller%2C+the+creation+of+algorithms+of+this+class+will+fail.'/>
111 </docSect>
112 </decl>
113 <decl spacer='1'/>
114 <decl spacer='1'/>
115 <decl kind='config' name='isLocal' anchor='is.Local' altext='ti.sdo.codecs.h264enc.ce.H264ENC.isLocal' nodoc='1' external='1' overrides='0' readonly='0' instance='0' summary='Require+this+codec+to+run+%22locally%22' origin='%3Ca+class%3D%22xdoc-link%22+href%3D%22..%2F..%2F..%2F..%2F..%2Fti%2Fsdo%2Fce%2FICodec.html%23is.Local%22+title%3D%22ti.sdo.ce.ICodec.isLocal%22%3EICodec%3C%2Fa%3E'>
116 <synopSpec>
117 <line tab='0' content='%3Cspan+class%3D%22xdoc-kw1%22%3Econfig%3C%2Fspan%3E+%3Cspan+class%3D%22xdoc-kw2%22%3EBool%3C%2Fspan%3E%26nbsp%3B%3Cgo%3E%3Cspan+class%3D%22xdoc-id%22%3EisLocal%3C%2Fspan%3E%3C%2Fgo%3E+%3D+%253Cspan%2Bclass%253D%2522xdoc-kw2%2522%253Etrue%253C%252Fspan%253E%3B'/>
118 </synopSpec>
119 <synopMeta>
120 <line tab='0' content='%3Cgo%3EH264ENC.%3Cspan+class%3D%22xdoc-id%22%3EisLocal%3C%2Fspan%3E%3C%2Fgo%3E+%3D+%3Ci%3E%3Cspan+class%3D%22xdoc-kw2%22%3EBool%3C%2Fspan%3E%3C%2Fi%3E+%253Cspan%2Bclass%253D%2522xdoc-kw2%2522%253Etrue%253C%252Fspan%253E%3B'/>
121 </synopMeta>
122 <docSect name='details'>
123 <docPara content='This+configuration+parameter+determines+whether+or+not+the%0A++application+requires+the+codec%27s+library+in+order+to+link.%0A++For+example%2C+this+parameter+is+set+to+false+in+the+case+that%0A++the+application+is+running+on+a+different+CPU+than+the+codec.'/>
124 </docSect>
125 </decl>
126 <decl kind='config' name='manageInBufsMetaPlaneDescCache' anchor='manage.In.Bufs.Meta.Plane.Desc.Cache' altext='ti.sdo.codecs.h264enc.ce.H264ENC.manageInBufsMetaPlaneDescCache' nodoc='0' external='1' overrides='0' readonly='0' instance='0' summary='Codec+Class+configuration+param' origin='%3Ca+class%3D%22xdoc-link%22+href%3D%22..%2F..%2F..%2F..%2F..%2Fti%2Fsdo%2Fce%2Fvideo2%2FIVIDENC2.html%23manage.In.Bufs.Meta.Plane.Desc.Cache%22+title%3D%22ti.sdo.ce.video2.IVIDENC2.manageInBufsMetaPlaneDescCache%22%3EIVIDENC2%3C%2Fa%3E'>
127 <synopSpec>
128 <line tab='0' content='%3Cspan+class%3D%22xdoc-kw1%22%3Econfig%3C%2Fspan%3E+%3Cspan+class%3D%22xdoc-kw2%22%3EBool%3C%2Fspan%3E%26nbsp%3B%3Cgo%3E%3Cspan+class%3D%22xdoc-id%22%3EmanageInBufsMetaPlaneDescCache%3C%2Fspan%3E%3C%2Fgo%3E%5B3%5D+%3D+%255B'/>
129 <line tab='1' content='%253Cspan%2Bclass%253D%2522xdoc-kw2%2522%253Etrue%253C%252Fspan%253E%252C'/>
130 <line tab='1' content='%253Cspan%2Bclass%253D%2522xdoc-kw2%2522%253Etrue%253C%252Fspan%253E%252C'/>
131 <line tab='1' content='%253Cspan%2Bclass%253D%2522xdoc-kw2%2522%253Etrue%253C%252Fspan%253E'/>
132 <line tab='0' content='%255D%3B'/>
133 </synopSpec>
134 <synopMeta>
135 <line tab='0' content='%3Cgo%3EH264ENC.%3Cspan+class%3D%22xdoc-id%22%3EmanageInBufsMetaPlaneDescCache%3C%2Fspan%3E%3C%2Fgo%3E+%3D+%3Ci%3E%3Cspan+class%3D%22xdoc-kw2%22%3EBool%3C%2Fspan%3E%5B3%5D%3C%2Fi%3E+%255B'/>
136 <line tab='1' content='%253Cspan%2Bclass%253D%2522xdoc-kw2%2522%253Etrue%253C%252Fspan%253E%252C'/>
137 <line tab='1' content='%253Cspan%2Bclass%253D%2522xdoc-kw2%2522%253Etrue%253C%252Fspan%253E%252C'/>
138 <line tab='1' content='%253Cspan%2Bclass%253D%2522xdoc-kw2%2522%253Etrue%253C%252Fspan%253E'/>
139 <line tab='0' content='%255D%3B'/>
140 </synopMeta>
141 <docSect name='details'>
142 <docPara content='Determines+whether+cache+will+be+managed+on+the+DSP+for+each+of+the%0A++3+metadataPlaneDesc%5B%5D+input+buffers+given+to+the+codec%27s+process%28%29%0A++call.'/>
143 <docPara content='If+this+flag+is+set+to+%22false%22+for+one+or+more%0A++elements%2C+the+cache+for+the+corresponding+input+buffer+will+not+be%0A++invalidated+before+the+process%28%29+call.+Skipping+unnecessary+cache%0A++invalidation+improves+performance%2C+especially+if+a+buffer+is+large.'/>
144 <docPara content='%28If+element+%22i%22+in+this+array+is+set+to+true%2C+cache+for%0A++inBufs-%26gt%3BmetadataPlaneDesc%5Bi%5D+will+be+invalidated+only+if+the+buffer+is%0A++supplied%2C+of+course.%29'/>
145 <docPara content='For+example%2C+if+you+know+that+a+particular+codec+of+this+class+always%0A++reads+the+data+from+its+inBufs-%26gt%3BmetadataPlaneDesc%5B1%5D+buffer+only+via%0A++DMA%2C+you+can+set+manageInBufsMetaPlaneDescCache%5B1%5D+%3D+false%3B'/>
146 </docSect>
147 </decl>
148 <decl kind='config' name='manageInBufsPlaneDescCache' anchor='manage.In.Bufs.Plane.Desc.Cache' altext='ti.sdo.codecs.h264enc.ce.H264ENC.manageInBufsPlaneDescCache' nodoc='0' external='1' overrides='0' readonly='0' instance='0' summary='Codec+Class+configuration+param' origin='%3Ca+class%3D%22xdoc-link%22+href%3D%22..%2F..%2F..%2F..%2F..%2Fti%2Fsdo%2Fce%2Fvideo2%2FIVIDENC2.html%23manage.In.Bufs.Plane.Desc.Cache%22+title%3D%22ti.sdo.ce.video2.IVIDENC2.manageInBufsPlaneDescCache%22%3EIVIDENC2%3C%2Fa%3E'>
149 <synopSpec>
150 <line tab='0' content='%3Cspan+class%3D%22xdoc-kw1%22%3Econfig%3C%2Fspan%3E+%3Cspan+class%3D%22xdoc-kw2%22%3EBool%3C%2Fspan%3E%26nbsp%3B%3Cgo%3E%3Cspan+class%3D%22xdoc-id%22%3EmanageInBufsPlaneDescCache%3C%2Fspan%3E%3C%2Fgo%3E%5B3%5D+%3D+%255B'/>
151 <line tab='1' content='%253Cspan%2Bclass%253D%2522xdoc-kw2%2522%253Etrue%253C%252Fspan%253E%252C'/>
152 <line tab='1' content='%253Cspan%2Bclass%253D%2522xdoc-kw2%2522%253Etrue%253C%252Fspan%253E%252C'/>
153 <line tab='1' content='%253Cspan%2Bclass%253D%2522xdoc-kw2%2522%253Etrue%253C%252Fspan%253E'/>
154 <line tab='0' content='%255D%3B'/>
155 </synopSpec>
156 <synopMeta>
157 <line tab='0' content='%3Cgo%3EH264ENC.%3Cspan+class%3D%22xdoc-id%22%3EmanageInBufsPlaneDescCache%3C%2Fspan%3E%3C%2Fgo%3E+%3D+%3Ci%3E%3Cspan+class%3D%22xdoc-kw2%22%3EBool%3C%2Fspan%3E%5B3%5D%3C%2Fi%3E+%255B'/>
158 <line tab='1' content='%253Cspan%2Bclass%253D%2522xdoc-kw2%2522%253Etrue%253C%252Fspan%253E%252C'/>
159 <line tab='1' content='%253Cspan%2Bclass%253D%2522xdoc-kw2%2522%253Etrue%253C%252Fspan%253E%252C'/>
160 <line tab='1' content='%253Cspan%2Bclass%253D%2522xdoc-kw2%2522%253Etrue%253C%252Fspan%253E'/>
161 <line tab='0' content='%255D%3B'/>
162 </synopMeta>
163 <docSect name='details'>
164 <docPara content='Determines+whether+cache+will+be+managed+on+the+DSP+for+each+of+the%0A++3+planeDesc%5B%5D+input+buffers+given+to+the+codec%27s+%22process%28%29%22+call.'/>
165 <docPara content='If+this+flag+is+set+to+%22false%22+for+one+or+more%0A++elements%2C+the+cache+for+the+corresponding+input+buffer+will+not+be%0A++invalidated+before+the+process%28%29+call.+Skipping+unnecessary+cache%0A++invalidation+improves+performance%2C+especially+if+a+buffer+is+large.'/>
166 <docPara content='%28If+element+%22i%22+in+this+array+is+set+to+true%2C+cache+for%0A++inBufs-%26gt%3BplaneDesc%5Bi%5D+will+be+invalidated+only+if+the+buffer+is%0A++supplied%2C+of+course.%29'/>
167 <docPara content='For+example%2C+if+you+know+that+a+particular+codec+of+this+class+always%0A++reads+the+data+from+its+inBufs-%26gt%3BplaneDesc%5B1%5D+buffer+only+via+DMA%2C+you%0A++can+set+manageInBufsPlaneDescCache%5B1%5D+%3D+false%3B'/>
168 </docSect>
169 </decl>
170 <decl kind='config' name='manageOutBufsCache' anchor='manage.Out.Bufs.Cache' altext='ti.sdo.codecs.h264enc.ce.H264ENC.manageOutBufsCache' nodoc='0' external='1' overrides='0' readonly='0' instance='0' summary='Codec+Class+configuration+param' origin='%3Ca+class%3D%22xdoc-link%22+href%3D%22..%2F..%2F..%2F..%2F..%2Fti%2Fsdo%2Fce%2Fvideo2%2FIVIDENC2.html%23manage.Out.Bufs.Cache%22+title%3D%22ti.sdo.ce.video2.IVIDENC2.manageOutBufsCache%22%3EIVIDENC2%3C%2Fa%3E'>
171 <synopSpec>
172 <line tab='0' content='%3Cspan+class%3D%22xdoc-kw1%22%3Econfig%3C%2Fspan%3E+%3Cspan+class%3D%22xdoc-kw2%22%3EBool%3C%2Fspan%3E%26nbsp%3B%3Cgo%3E%3Cspan+class%3D%22xdoc-id%22%3EmanageOutBufsCache%3C%2Fspan%3E%3C%2Fgo%3E%5B16%5D+%3D+%255B'/>
173 <line tab='1' content='%253Cspan%2Bclass%253D%2522xdoc-kw2%2522%253Etrue%253C%252Fspan%253E%252C'/>
174 <line tab='1' content='%253Cspan%2Bclass%253D%2522xdoc-kw2%2522%253Etrue%253C%252Fspan%253E%252C'/>
175 <line tab='1' content='%253Cspan%2Bclass%253D%2522xdoc-kw2%2522%253Etrue%253C%252Fspan%253E%252C'/>
176 <line tab='1' content='%253Cspan%2Bclass%253D%2522xdoc-kw2%2522%253Etrue%253C%252Fspan%253E%252C'/>
177 <line tab='1' content='%253Cspan%2Bclass%253D%2522xdoc-kw2%2522%253Etrue%253C%252Fspan%253E%252C'/>
178 <line tab='1' content='%253Cspan%2Bclass%253D%2522xdoc-kw2%2522%253Etrue%253C%252Fspan%253E%252C'/>
179 <line tab='1' content='%253Cspan%2Bclass%253D%2522xdoc-kw2%2522%253Etrue%253C%252Fspan%253E%252C'/>
180 <line tab='1' content='%253Cspan%2Bclass%253D%2522xdoc-kw2%2522%253Etrue%253C%252Fspan%253E%252C'/>
181 <line tab='1' content='%253Cspan%2Bclass%253D%2522xdoc-kw2%2522%253Etrue%253C%252Fspan%253E%252C'/>
182 <line tab='1' content='%253Cspan%2Bclass%253D%2522xdoc-kw2%2522%253Etrue%253C%252Fspan%253E%252C'/>
183 <line tab='1' content='%253Cspan%2Bclass%253D%2522xdoc-kw2%2522%253Etrue%253C%252Fspan%253E%252C'/>
184 <line tab='1' content='%253Cspan%2Bclass%253D%2522xdoc-kw2%2522%253Etrue%253C%252Fspan%253E%252C'/>
185 <line tab='1' content='%253Cspan%2Bclass%253D%2522xdoc-kw2%2522%253Etrue%253C%252Fspan%253E%252C'/>
186 <line tab='1' content='%253Cspan%2Bclass%253D%2522xdoc-kw2%2522%253Etrue%253C%252Fspan%253E%252C'/>
187 <line tab='1' content='%253Cspan%2Bclass%253D%2522xdoc-kw2%2522%253Etrue%253C%252Fspan%253E%252C'/>
188 <line tab='1' content='%253Cspan%2Bclass%253D%2522xdoc-kw2%2522%253Etrue%253C%252Fspan%253E'/>
189 <line tab='0' content='%255D%3B'/>
190 </synopSpec>
191 <synopMeta>
192 <line tab='0' content='%3Cgo%3EH264ENC.%3Cspan+class%3D%22xdoc-id%22%3EmanageOutBufsCache%3C%2Fspan%3E%3C%2Fgo%3E+%3D+%3Ci%3E%3Cspan+class%3D%22xdoc-kw2%22%3EBool%3C%2Fspan%3E%5B16%5D%3C%2Fi%3E+%255B'/>
193 <line tab='1' content='%253Cspan%2Bclass%253D%2522xdoc-kw2%2522%253Etrue%253C%252Fspan%253E%252C'/>
194 <line tab='1' content='%253Cspan%2Bclass%253D%2522xdoc-kw2%2522%253Etrue%253C%252Fspan%253E%252C'/>
195 <line tab='1' content='%253Cspan%2Bclass%253D%2522xdoc-kw2%2522%253Etrue%253C%252Fspan%253E%252C'/>
196 <line tab='1' content='%253Cspan%2Bclass%253D%2522xdoc-kw2%2522%253Etrue%253C%252Fspan%253E%252C'/>
197 <line tab='1' content='%253Cspan%2Bclass%253D%2522xdoc-kw2%2522%253Etrue%253C%252Fspan%253E%252C'/>
198 <line tab='1' content='%253Cspan%2Bclass%253D%2522xdoc-kw2%2522%253Etrue%253C%252Fspan%253E%252C'/>
199 <line tab='1' content='%253Cspan%2Bclass%253D%2522xdoc-kw2%2522%253Etrue%253C%252Fspan%253E%252C'/>
200 <line tab='1' content='%253Cspan%2Bclass%253D%2522xdoc-kw2%2522%253Etrue%253C%252Fspan%253E%252C'/>
201 <line tab='1' content='%253Cspan%2Bclass%253D%2522xdoc-kw2%2522%253Etrue%253C%252Fspan%253E%252C'/>
202 <line tab='1' content='%253Cspan%2Bclass%253D%2522xdoc-kw2%2522%253Etrue%253C%252Fspan%253E%252C'/>
203 <line tab='1' content='%253Cspan%2Bclass%253D%2522xdoc-kw2%2522%253Etrue%253C%252Fspan%253E%252C'/>
204 <line tab='1' content='%253Cspan%2Bclass%253D%2522xdoc-kw2%2522%253Etrue%253C%252Fspan%253E%252C'/>
205 <line tab='1' content='%253Cspan%2Bclass%253D%2522xdoc-kw2%2522%253Etrue%253C%252Fspan%253E%252C'/>
206 <line tab='1' content='%253Cspan%2Bclass%253D%2522xdoc-kw2%2522%253Etrue%253C%252Fspan%253E%252C'/>
207 <line tab='1' content='%253Cspan%2Bclass%253D%2522xdoc-kw2%2522%253Etrue%253C%252Fspan%253E%252C'/>
208 <line tab='1' content='%253Cspan%2Bclass%253D%2522xdoc-kw2%2522%253Etrue%253C%252Fspan%253E'/>
209 <line tab='0' content='%255D%3B'/>
210 </synopMeta>
211 <docSect name='details'>
212 <docPara content='Determines+whether+cache+will+be+managed+on+the+DSP+for+each+of+the%0A++%28up+to+16%29+output+buffers+given+to+the+codec%27s+%22process%28%29%22+call.'/>
213 <docPara content='If+this+flag+is+set+to+%22false%22+for+one+or+more%0A++elements%2C+the+cache+for+the+corresponding+output+buffer+will+not+be%0A++invalidated+before+the+process%28%29+call.%0A++Skipping+unnecessary+cache+invalidation+improves%0A++performance.+Whether+the+buffer+will+be+written+back+after+the+process%28%29%0A++call+depends+on+the+algorithm+and+cannot+be+controlled+here.'/>
214 <docPara content='For+example%2C+if+you+know+that+a+particular+codec+of+this+class+always%0A++writes+the+data+to+its+outBufs-%26gt%3Bdesc%5B2%5D+buffer+only+via+DMA%2C+you+can%0A++set+manageOutBufsCache%5B2%5D+%3D+false%3B'/>
215 </docSect>
216 </decl>
217 <decl kind='config' name='serverFxns' anchor='server.Fxns' altext='ti.sdo.codecs.h264enc.ce.H264ENC.serverFxns' nodoc='0' external='1' overrides='1' readonly='0' instance='0' summary='Name+of+skeleton+fxn+table' origin='%3Ca+class%3D%22xdoc-link%22+href%3D%22..%2F..%2F..%2F..%2F..%2Fti%2Fsdo%2Fce%2Fvideo2%2FIVIDENC2.html%23server.Fxns%22+title%3D%22ti.sdo.ce.video2.IVIDENC2.serverFxns%22%3EIVIDENC2%3C%2Fa%3E'>
218 <synopSpec>
219 <line tab='0' content='%3Cspan+class%3D%22xdoc-kw1%22%3Eoverride+%3C%2Fspan%3E%3Cspan+class%3D%22xdoc-kw1%22%3Econfig%3C%2Fspan%3E+%3Cspan+class%3D%22xdoc-kw2%22%3EString%3C%2Fspan%3E%26nbsp%3B%3Cgo%3E%3Cspan+class%3D%22xdoc-id%22%3EserverFxns%3C%2Fspan%3E%3C%2Fgo%3E+%3D+%2522VIDENC2_SKEL%2522%3B'/>
220 </synopSpec>
221 <synopMeta>
222 <line tab='0' content='%3Cgo%3EH264ENC.%3Cspan+class%3D%22xdoc-id%22%3EserverFxns%3C%2Fspan%3E%3C%2Fgo%3E+%3D+%3Ci%3E%3Cspan+class%3D%22xdoc-kw2%22%3EString%3C%2Fspan%3E%3C%2Fi%3E+%2522VIDENC2_SKEL%2522%3B'/>
223 </synopMeta>
224 <docSect name='details'>
225 <docPara content='All+algorithm%27s+that+can+run+on+a+remote+processor+must+specify+a+set%0A++of+%22stub%22+functions+that+marshall+arguments+to+send+to+the+remote%0A++process+that+runs+corresponding+%22skeletons%22+to+do+the+actual%0A++processing.++This+configuration+parameter+defines+the+entry+point+for%0A++this+algorithm%27s+the+skeletons+%28which+run+on+the+remote+processor%29.'/>
226 <docPara content='This+is+generally+not+configured+by+application+or+server+config%0A++scripts%2C+but+rather+by+developers+of+VISA-like+API+class+extensions.%0A++However%2C+an+application+or+server+integrator+could+use+this+config%0A++param+to+configure+in+custom+serverFxns.'/>
227 </docSect>
228 <docSect name='see'>
229 <docPara content='%3Ca+class%3D%22xdoc-link%22+href%3D%22H264ENC.html%23stub.Fxns%22+title%3D%22stubFxns%22%3EstubFxns%3C%2Fa%3E'/>
230 </docSect>
231 </decl>
232 <decl kind='config' name='stubFxns' anchor='stub.Fxns' altext='ti.sdo.codecs.h264enc.ce.H264ENC.stubFxns' nodoc='0' external='1' overrides='1' readonly='0' instance='0' summary='Name+of+stubs+fxn+table' origin='%3Ca+class%3D%22xdoc-link%22+href%3D%22..%2F..%2F..%2F..%2F..%2Fti%2Fsdo%2Fce%2Fvideo2%2FIVIDENC2.html%23stub.Fxns%22+title%3D%22ti.sdo.ce.video2.IVIDENC2.stubFxns%22%3EIVIDENC2%3C%2Fa%3E'>
233 <synopSpec>
234 <line tab='0' content='%3Cspan+class%3D%22xdoc-kw1%22%3Eoverride+%3C%2Fspan%3E%3Cspan+class%3D%22xdoc-kw1%22%3Econfig%3C%2Fspan%3E+%3Cspan+class%3D%22xdoc-kw2%22%3EString%3C%2Fspan%3E%26nbsp%3B%3Cgo%3E%3Cspan+class%3D%22xdoc-id%22%3EstubFxns%3C%2Fspan%3E%3C%2Fgo%3E+%3D+%2522VIDENC2_STUBS%2522%3B'/>
235 </synopSpec>
236 <synopMeta>
237 <line tab='0' content='%3Cgo%3EH264ENC.%3Cspan+class%3D%22xdoc-id%22%3EstubFxns%3C%2Fspan%3E%3C%2Fgo%3E+%3D+%3Ci%3E%3Cspan+class%3D%22xdoc-kw2%22%3EString%3C%2Fspan%3E%3C%2Fi%3E+%2522VIDENC2_STUBS%2522%3B'/>
238 </synopMeta>
239 <docSect name='details'>
240 <docPara content='All+algorithm%27s+that+can+run+on+a+remote+processor+must+specify+a+set%0A++of+%22stub%22+functions+that+marshall+arguments+to+send+to+the+remote%0A++process+that+runs+corresponding+%22skeletons%22+to+do+the+actual%0A++processing.++This+configuration+parameter+defines+the+entry+point+for%0A++this+algorithm%27s+the+stubs+%28which+run+on+the+local+processor%29.'/>
241 <docPara content='This+is+generally+not+configured+by+application+or+server+config%0A++scripts%2C+but+rather+by+developers+of+VISA-like+API+class+extensions.%0A++However%2C+an+application+or+server+integrator+could+use+this+config%0A++param+to+configure+in+custom+stubFxns.'/>
242 </docSect>
243 <docSect name='see'>
244 <docPara content='%3Ca+class%3D%22xdoc-link%22+href%3D%22H264ENC.html%23server.Fxns%22+title%3D%22serverFxns%22%3EserverFxns%3C%2Fa%3E'/>
245 </docSect>
246 </decl>
247 <decl kind='config' name='useCache' anchor='use.Cache' altext='ti.sdo.codecs.h264enc.ce.H264ENC.useCache' nodoc='0' external='1' overrides='0' readonly='0' instance='0' summary='Flag+indicating+whether+the+framework+should+provide+cached+memory' origin='%3Ca+class%3D%22xdoc-link%22+href%3D%22..%2F..%2F..%2F..%2F..%2Fti%2Fsdo%2Fce%2FICodec.html%23use.Cache%22+title%3D%22ti.sdo.ce.ICodec.useCache%22%3EICodec%3C%2Fa%3E'>
248 <synopSpec>
249 <line tab='0' content='%3Cspan+class%3D%22xdoc-kw1%22%3Econfig%3C%2Fspan%3E+%3Cspan+class%3D%22xdoc-kw2%22%3EBool%3C%2Fspan%3E%26nbsp%3B%3Cgo%3E%3Cspan+class%3D%22xdoc-id%22%3EuseCache%3C%2Fspan%3E%3C%2Fgo%3E%3B'/>
250 </synopSpec>
251 <synopMeta>
252 <line tab='0' content='%3Cgo%3EH264ENC.%3Cspan+class%3D%22xdoc-id%22%3EuseCache%3C%2Fspan%3E%3C%2Fgo%3E+%3D+%3Ci%3E%3Cspan+class%3D%22xdoc-kw2%22%3EBool%3C%2Fspan%3E%3C%2Fi%3E+%3Cspan+class%3D%22xdoc-kw2%22%3Eundefined%3C%2Fspan%3E%3B'/>
253 </synopMeta>
254 <docSect name='details'>
255 <docPara content='If+set+to+true%2C+the+alg%27s+memory+requests+will+be+allocated+from%0A++cacheable+memory.++If+set+to+false%2C+the+memory+will+be+allocated+from%0A++non-cached+memory.+If+left+unset%2C+the%0A++ti.sdo.ce.alg.Algorithm.useCache+flag+will+determine+whether+the%0A++alg%27s+memory+will+be+allocated+from+cached+or+non-cached+memory.'/>
256 </docSect>
257 </decl>
258 <decl kind='config' name='uuid' anchor='uuid' altext='ti.sdo.codecs.h264enc.ce.H264ENC.uuid' nodoc='0' external='1' overrides='0' readonly='0' instance='0' summary='Unique+algorithm+implementation+ID' origin='%3Ca+class%3D%22xdoc-link%22+href%3D%22..%2F..%2F..%2F..%2F..%2Fti%2Fsdo%2Fce%2FICodec.html%23uuid%22+title%3D%22ti.sdo.ce.ICodec.uuid%22%3EICodec%3C%2Fa%3E'>
259 <synopSpec>
260 <line tab='0' content='%3Cspan+class%3D%22xdoc-kw1%22%3Econfig%3C%2Fspan%3E+%3Cspan+class%3D%22xdoc-kw2%22%3EInt%3C%2Fspan%3E%26nbsp%3B%3Cgo%3E%3Cspan+class%3D%22xdoc-id%22%3Euuid%3C%2Fspan%3E%3C%2Fgo%3E%3B'/>
261 </synopSpec>
262 <synopMeta>
263 <line tab='0' content='%3Cgo%3EH264ENC.%3Cspan+class%3D%22xdoc-id%22%3Euuid%3C%2Fspan%3E%3C%2Fgo%3E+%3D+%3Ci%3E%3Cspan+class%3D%22xdoc-kw2%22%3EInt%3C%2Fspan%3E%3C%2Fi%3E+%3Cspan+class%3D%22xdoc-kw2%22%3Eundefined%3C%2Fspan%3E%3B'/>
264 </synopMeta>
265 <docSect name='details'>
266 <docPara content='This+integer+must+be+a+unique+ID+for+every+algorithm+in+a+%22system%22%2C%0A++where+the+%22system%22+includes+all+possible+DSP+Servers.'/>
267 <docPara content='This+id+is+used+by+the+Codec+Engine+APIs+to+identify+the+algorithm%0A++implementation+that+will+create+an+instance+on+a+DSP+Server.'/>
268 <docPara content='If+a+codec+doesn%27t+explicitly+configure+this+parameter%2C+a+%22very+likely%0A++unique%22+ID+will+be+generated.++It+is+recommended+that+codecs+not%0A++explicitly+configure+this+parameter%2C+and+leave+it+to+the+system.'/>
269 </docSect>
270 </decl>
271 </group>
272 <group name='module-wide functions'>
273 <decl spacer='1'/>
274 <decl kind='fxn' name='getCreationStackSize' anchor='get.Creation.Stack.Size' altext='ti.sdo.codecs.h264enc.ce.H264ENC.getCreationStackSize' nodoc='0' external='1' overrides='0' readonly='0' instance='0' summary='Get+the+maximum+required+stack+size+%28in+octets%29+for+this+algorithm%0A++during+algorithm+instance+creation' origin='%3Ca+class%3D%22xdoc-link%22+href%3D%22..%2F..%2F..%2F..%2F..%2Fti%2Fsdo%2Fce%2FICodec.html%23get.Creation.Stack.Size%22+title%3D%22ti.sdo.ce.ICodec.getCreationStackSize%22%3EICodec%3C%2Fa%3E'>
275 <synopSpec>
276 <line tab='0' content='%3Cspan+class%3D%22xdoc-kw2%22%3EInt%3C%2Fspan%3E%26nbsp%3B%3Cgo%3E%3Cspan+class%3D%22xdoc-id%22%3EgetCreationStackSize%3C%2Fspan%3E%3C%2Fgo%3E%28+%3Ca+class%3D%22xdoc-link%22+href%3D%22..%2F..%2F..%2F..%2F..%2Fxdc%2Fcfg%2FProgram.html%23.Module%22+title%3D%22xdc.cfg.Program.Module%22%3EProgram.Module%3C%2Fa%3E%26nbsp%3B%3Cgo%3E%3Cspan+class%3D%22xdoc-id%22%3Eprog%3C%2Fspan%3E%3C%2Fgo%3E+%29%3B'/>
277 </synopSpec>
278 <synopMeta>
279 <line tab='0' content='%3Cgo%3EH264ENC.%3Cspan+class%3D%22xdoc-id%22%3EgetCreationStackSize%3C%2Fspan%3E%3C%2Fgo%3E%28+%3Ci%3E%3Ca+class%3D%22xdoc-link%22+href%3D%22..%2F..%2F..%2F..%2F..%2Fxdc%2Fcfg%2FProgram.html%23.Module%22+title%3D%22xdc.cfg.Program.Module%22%3EProgram.Module%3C%2Fa%3E%3C%2Fi%3E+%3Cgo%3E%3Cspan+class%3D%22xdoc-id%22%3Eprog%3C%2Fspan%3E%3C%2Fgo%3E+%29+%3Ci%3Ereturns%3C%2Fi%3E+%3Ci%3E%3Cspan+class%3D%22xdoc-kw2%22%3EInt%3C%2Fspan%3E%3C%2Fi%3E'/>
280 </synopMeta>
281 <docSect name='details'>
282 <docPara content='This+method+is+called+during+DSP+Server+configuration+and+is+used+to%0A++ensure+that+the+instance+creation+thread+on+the+server+has+sufficient%0A++stackspace+to+instantiate+the+algorithm.++This+stack+size+is+typically%0A++the+greater+of+the+stack+sizes+required+by+the+algorithm%27s%0A++algNumAlloc%28%29%2C+algAlloc%28%29%2C+or+algInit%28%29+methods.'/>
283 </docSect>
284 </decl>
285 <decl kind='fxn' name='getDaramScratchSize' anchor='get.Daram.Scratch.Size' altext='ti.sdo.codecs.h264enc.ce.H264ENC.getDaramScratchSize' nodoc='0' external='1' overrides='0' readonly='0' instance='0' summary='Get+the+maximum+scratch+size+%28in+octets%29+required+for+this+algorithm%0A++from+DARAM+space' origin='%3Ca+class%3D%22xdoc-link%22+href%3D%22..%2F..%2F..%2F..%2F..%2Fti%2Fsdo%2Fce%2FICodec.html%23get.Daram.Scratch.Size%22+title%3D%22ti.sdo.ce.ICodec.getDaramScratchSize%22%3EICodec%3C%2Fa%3E'>
286 <synopSpec>
287 <line tab='0' content='%3Cspan+class%3D%22xdoc-kw2%22%3EInt%3C%2Fspan%3E%26nbsp%3B%3Cgo%3E%3Cspan+class%3D%22xdoc-id%22%3EgetDaramScratchSize%3C%2Fspan%3E%3C%2Fgo%3E%28+%3Ca+class%3D%22xdoc-link%22+href%3D%22..%2F..%2F..%2F..%2F..%2Fxdc%2Fcfg%2FProgram.html%23.Module%22+title%3D%22xdc.cfg.Program.Module%22%3EProgram.Module%3C%2Fa%3E%26nbsp%3B%3Cgo%3E%3Cspan+class%3D%22xdoc-id%22%3Eprog%3C%2Fspan%3E%3C%2Fgo%3E+%29%3B'/>
288 </synopSpec>
289 <synopMeta>
290 <line tab='0' content='%3Cgo%3EH264ENC.%3Cspan+class%3D%22xdoc-id%22%3EgetDaramScratchSize%3C%2Fspan%3E%3C%2Fgo%3E%28+%3Ci%3E%3Ca+class%3D%22xdoc-link%22+href%3D%22..%2F..%2F..%2F..%2F..%2Fxdc%2Fcfg%2FProgram.html%23.Module%22+title%3D%22xdc.cfg.Program.Module%22%3EProgram.Module%3C%2Fa%3E%3C%2Fi%3E+%3Cgo%3E%3Cspan+class%3D%22xdoc-id%22%3Eprog%3C%2Fspan%3E%3C%2Fgo%3E+%29+%3Ci%3Ereturns%3C%2Fi%3E+%3Ci%3E%3Cspan+class%3D%22xdoc-kw2%22%3EInt%3C%2Fspan%3E%3C%2Fi%3E'/>
291 </synopMeta>
292 <docSect name='details'>
293 <docPara content='This+method+is+called+during+DSP+Server+configuration+and+is+used+to%0A++ensure+that+sufficient+scratch+space+is+configured+for+the+specified%0A++set+of+algorithms.'/>
294 </docSect>
295 </decl>
296 <decl kind='fxn' name='getSaramScratchSize' anchor='get.Saram.Scratch.Size' altext='ti.sdo.codecs.h264enc.ce.H264ENC.getSaramScratchSize' nodoc='0' external='1' overrides='0' readonly='0' instance='0' summary='Get+the+maximum+scratch+size+%28in+octets%29+required+for+this+algorithm%0A++from+SARAM+space' origin='%3Ca+class%3D%22xdoc-link%22+href%3D%22..%2F..%2F..%2F..%2F..%2Fti%2Fsdo%2Fce%2FICodec.html%23get.Saram.Scratch.Size%22+title%3D%22ti.sdo.ce.ICodec.getSaramScratchSize%22%3EICodec%3C%2Fa%3E'>
297 <synopSpec>
298 <line tab='0' content='%3Cspan+class%3D%22xdoc-kw2%22%3EInt%3C%2Fspan%3E%26nbsp%3B%3Cgo%3E%3Cspan+class%3D%22xdoc-id%22%3EgetSaramScratchSize%3C%2Fspan%3E%3C%2Fgo%3E%28+%3Ca+class%3D%22xdoc-link%22+href%3D%22..%2F..%2F..%2F..%2F..%2Fxdc%2Fcfg%2FProgram.html%23.Module%22+title%3D%22xdc.cfg.Program.Module%22%3EProgram.Module%3C%2Fa%3E%26nbsp%3B%3Cgo%3E%3Cspan+class%3D%22xdoc-id%22%3Eprog%3C%2Fspan%3E%3C%2Fgo%3E+%29%3B'/>
299 </synopSpec>
300 <synopMeta>
301 <line tab='0' content='%3Cgo%3EH264ENC.%3Cspan+class%3D%22xdoc-id%22%3EgetSaramScratchSize%3C%2Fspan%3E%3C%2Fgo%3E%28+%3Ci%3E%3Ca+class%3D%22xdoc-link%22+href%3D%22..%2F..%2F..%2F..%2F..%2Fxdc%2Fcfg%2FProgram.html%23.Module%22+title%3D%22xdc.cfg.Program.Module%22%3EProgram.Module%3C%2Fa%3E%3C%2Fi%3E+%3Cgo%3E%3Cspan+class%3D%22xdoc-id%22%3Eprog%3C%2Fspan%3E%3C%2Fgo%3E+%29+%3Ci%3Ereturns%3C%2Fi%3E+%3Ci%3E%3Cspan+class%3D%22xdoc-kw2%22%3EInt%3C%2Fspan%3E%3C%2Fi%3E'/>
302 </synopMeta>
303 <docSect name='details'>
304 <docPara content='This+method+is+called+during+DSP+Server+configuration+and+is+used+to%0A++ensure+that+sufficient+scratch+space+is+configured+for+the+specified%0A++set+of+algorithms.'/>
305 </docSect>
306 </decl>
307 <decl kind='fxn' name='getStackSize' anchor='get.Stack.Size' altext='ti.sdo.codecs.h264enc.ce.H264ENC.getStackSize' nodoc='0' external='1' overrides='0' readonly='0' instance='0' summary='Get+the+maximum+stack+size+%28in+octets%29+required+for+this+algorithm%0A++during+its+execution+phase' origin='%3Ca+class%3D%22xdoc-link%22+href%3D%22..%2F..%2F..%2F..%2F..%2Fti%2Fsdo%2Fce%2FICodec.html%23get.Stack.Size%22+title%3D%22ti.sdo.ce.ICodec.getStackSize%22%3EICodec%3C%2Fa%3E'>
308 <synopSpec>
309 <line tab='0' content='%3Cspan+class%3D%22xdoc-kw2%22%3EInt%3C%2Fspan%3E%26nbsp%3B%3Cgo%3E%3Cspan+class%3D%22xdoc-id%22%3EgetStackSize%3C%2Fspan%3E%3C%2Fgo%3E%28+%3Ca+class%3D%22xdoc-link%22+href%3D%22..%2F..%2F..%2F..%2F..%2Fxdc%2Fcfg%2FProgram.html%23.Module%22+title%3D%22xdc.cfg.Program.Module%22%3EProgram.Module%3C%2Fa%3E%26nbsp%3B%3Cgo%3E%3Cspan+class%3D%22xdoc-id%22%3Eprog%3C%2Fspan%3E%3C%2Fgo%3E+%29%3B'/>
310 </synopSpec>
311 <synopMeta>
312 <line tab='0' content='%3Cgo%3EH264ENC.%3Cspan+class%3D%22xdoc-id%22%3EgetStackSize%3C%2Fspan%3E%3C%2Fgo%3E%28+%3Ci%3E%3Ca+class%3D%22xdoc-link%22+href%3D%22..%2F..%2F..%2F..%2F..%2Fxdc%2Fcfg%2FProgram.html%23.Module%22+title%3D%22xdc.cfg.Program.Module%22%3EProgram.Module%3C%2Fa%3E%3C%2Fi%3E+%3Cgo%3E%3Cspan+class%3D%22xdoc-id%22%3Eprog%3C%2Fspan%3E%3C%2Fgo%3E+%29+%3Ci%3Ereturns%3C%2Fi%3E+%3Ci%3E%3Cspan+class%3D%22xdoc-kw2%22%3EInt%3C%2Fspan%3E%3C%2Fi%3E'/>
313 </synopMeta>
314 <docSect name='details'>
315 <docPara content='This+method+is+called+during+DSP+Server+configuration+and+is+used+to%0A++ensure+that+threads+on+the+server+have+sufficient+stackspace+to+run%0A++the+algorithm.'/>
316 </docSect>
317 </decl>
318 <decl kind='fxn' name='getUUID' anchor='get.U.U.I.D' altext='ti.sdo.codecs.h264enc.ce.H264ENC.getUUID' nodoc='1' external='1' overrides='0' readonly='0' instance='0' summary='Get+a+uuid+for+this+codec' origin='%3Ca+class%3D%22xdoc-link%22+href%3D%22..%2F..%2F..%2F..%2F..%2Fti%2Fsdo%2Fce%2FICodec.html%23get.U.U.I.D%22+title%3D%22ti.sdo.ce.ICodec.getUUID%22%3EICodec%3C%2Fa%3E'>
319 <synopSpec>
320 <line tab='0' content='%3Cspan+class%3D%22xdoc-kw2%22%3EInt%3C%2Fspan%3E%26nbsp%3B%3Cgo%3E%3Cspan+class%3D%22xdoc-id%22%3EgetUUID%3C%2Fspan%3E%3C%2Fgo%3E%28++%29%3B'/>
321 </synopSpec>
322 <synopMeta>
323 <line tab='0' content='%3Cgo%3EH264ENC.%3Cspan+class%3D%22xdoc-id%22%3EgetUUID%3C%2Fspan%3E%3C%2Fgo%3E%28++%29+%3Ci%3Ereturns%3C%2Fi%3E+%3Ci%3E%3Cspan+class%3D%22xdoc-kw2%22%3EInt%3C%2Fspan%3E%3C%2Fi%3E'/>
324 </synopMeta>
325 <docSect name='details'>
326 <docPara content='This+method+is+used+to+get+the+uuid+rather+than+reading+the+uuid%0A++config+parameter%3B+this+allows+the+algorithm+producer+to+let+the%0A++system+generate+a+uuid+from+the+algorithm%27s+name.'/>
327 <docPara content='Individual+algorithm%27s+should+not+implement+this+methods%3B+the+default%0A++%28base%29+implementation+provided+in+the+ti.sdo.ce+package+should+be%0A++sufficient.'/>
328 </docSect>
329 </decl>
330 </group>
331 </unit>
332</package>
diff --git a/extrel/ti/ivahd_codecs/packages/ti/sdo/codecs/h264enc/ce/package/package.ext.xml b/extrel/ti/ivahd_codecs/packages/ti/sdo/codecs/h264enc/ce/package/package.ext.xml
new file mode 100644
index 0000000..91312d2
--- /dev/null
+++ b/extrel/ti/ivahd_codecs/packages/ti/sdo/codecs/h264enc/ce/package/package.ext.xml
@@ -0,0 +1,128 @@
1<?xml version="1.0" encoding="UTF-8"?>
2<!-- This file conforms to the DTD xdc/bld/release.dtd -->
3<release name="" label="" date="" buildCount="" producerId="">
4<package name="ti.sdo.codecs.h264enc.ce"
5 version="1, 0, 0"/>
6<imports>
7 <package name="ti.sdo.ce.video2"
8 version=""/>
9 <package name="ti.sdo.codecs.h264enc"
10 version=""/>
11</imports>
12<references>
13 <package name="xdc.services.intern.cmd"
14 version="1, 0, 0, 0, 1275003755481"
15 providerId="xdccore">
16 <file name="java\package.jar"/>
17 </package>
18 <package name="xdc.services.intern.xsr"
19 version="1, 0, 0, 1275003758055"
20 providerId="xdccore">
21 <file name="java\package.jar"/>
22 </package>
23 <package name="ti.sdo.ce.video2"
24 version="1, 0, 3, 1313608070886"
25 providerId="codec_engine_3_21_00_19">
26 <file name="IVIDENC2.xdc"/>
27 <file name="package.xs"/>
28 </package>
29 <package name="xdc.platform"
30 version="1, 0, 1, 0, 1275003732659"
31 providerId="xdccore">
32 <file name="ICpuDataSheet.xdc"/>
33 <file name="IExeContext.xdc"/>
34 <file name="IPeripheral.xdc"/>
35 <file name="IPlatform.xdc"/>
36 </package>
37 <package name="ti.sdo.codecs.h264enc"
38 version="1, 0, 0, 1426850322171"
39 providerId="G:/rtsc_release">
40 <file name="H264ENC.xdc"/>
41 <file name="package.xs"/>
42 </package>
43 <package name="xdc.cfg"
44 version="1, 0, 2, 0, 1275003727109"
45 providerId="xdccore">
46 <file name="Program.xdc"/>
47 </package>
48 <package name="xdc.services.intern.gen"
49 version="1, 0, 0, 0, 1275003755582"
50 providerId="xdccore">
51 <file name="java\package.jar"/>
52 </package>
53 <package name="xdc.shelf"
54 version="1, 0, 0, 1275003774434"
55 providerId="xdccore">
56 <file name="java\antlr.jar"/>
57 <file name="java\ecj.jar"/>
58 <file name="java\js.jar"/>
59 <file name="java\jsr173_api.jar"/>
60 <file name="java\tar.jar"/>
61 <file name="java\xbean.jar"/>
62 </package>
63 <package name="ti.sdo.ce.ipc"
64 version="2, 0, 1, 1313544812640"
65 providerId="codec_engine_3_21_00_19">
66 <file name="package.xs"/>
67 </package>
68 <package name="ti.sdo.ce"
69 version="1, 0, 6, 1313607868501"
70 providerId="codec_engine_3_21_00_19">
71 <file name="CERuntime.xs"/>
72 <file name="Engine.xs"/>
73 <file name="ICodec.xdc"/>
74 <file name="ICodec.xs"/>
75 <file name="Server.xs"/>
76 <file name="package.xs"/>
77 </package>
78 <package name="xdc.bld"
79 version="1, 0, 2, 1275003727887"
80 providerId="xdccore">
81 <file name="BuildEnvironment.xs"/>
82 <file name="Executable.xs"/>
83 <file name="ITarget.xs"/>
84 <file name="ITargetFilter.xs"/>
85 <file name="Library.xs"/>
86 <file name="Manifest.xs"/>
87 <file name="PackageContents.xs"/>
88 <file name="Repository.xs"/>
89 <file name="Script.xs"/>
90 <file name="Utils.xs"/>
91 <file name="_gen.xs"/>
92 <file name="bld.js"/>
93 <file name="package.xs"/>
94 </package>
95 <package name="xdc"
96 version="1, 1, 1, 1275003718877"
97 providerId="xdccore">
98 <file name="IPackage.xdc"/>
99 <file name="IPackage.xs"/>
100 <file name="om2.xs"/>
101 <file name="package.xs"/>
102 <file name="template.xs"/>
103 <file name="xdc.tci"/>
104 <file name="xmlgen.xs"/>
105 <file name="xmlgen2.xs"/>
106 </package>
107 <package name="xdc.services.spec"
108 version="1, 0, 0, 0, 1275003766499"
109 providerId="xdccore">
110 <file name="java\package.jar"/>
111 </package>
112 <package name="xdc.services.global"
113 version="1, 0, 0, 1275003751833"
114 providerId="xdccore">
115 <file name="Clock.xs"/>
116 <file name="Trace.xs"/>
117 <file name="java\package.jar"/>
118 </package>
119 <xdcRoot base="D:/CCSV4_install/xdctools_3_20_01_42_eng/">
120 <file name="/packages/xdc/package.xdc"/>
121 <file name="etc\config.bld"/>
122 <file name="include\utils.tci"/>
123 <xdcCorePkg version="16, 0, 2, 0, 1275003728128" producerId="undefined" buildCount="266" releaseName="xdc_corevers" label="default" date="1275003728128"/>
124 </xdcRoot>
125</references>
126<orphans>
127</orphans>
128</release>
diff --git a/extrel/ti/ivahd_codecs/packages/ti/sdo/codecs/h264enc/ce/package/package.rel.dot b/extrel/ti/ivahd_codecs/packages/ti/sdo/codecs/h264enc/ce/package/package.rel.dot
new file mode 100644
index 0000000..c74a085
--- /dev/null
+++ b/extrel/ti/ivahd_codecs/packages/ti/sdo/codecs/h264enc/ce/package/package.rel.dot
@@ -0,0 +1,2156 @@
1digraph dependencies {
2 label="\nPackage ti.sdo.codecs.h264enc.ce Dependency Graph";
3 size="7.5,10";
4 rankdir=LR;
5 ranksep=".75";
6 concentrate="true";
7 node [fixedsize=true, width=1.5, style=filled, color=black];
8 node [font=Helvetica, fontsize=12, fillcolor=lightgrey];
9 ti_sdo_codecs_h264enc_ce [shape=record,label="ti.sdo.codecs.h264enc.ce|1, 0, 0", URL="package.rel.xml"];
10 node [fontsize=10, fillcolor=white];
11
12 edge [style=solid, color=blue]
13 ti_sdo_ce_video2 [shape=record,label="ti.sdo.ce.video2|1, 0, 3", URL="../C:\RTSC_GEN_TOOLS\codec_engine_3_21_00_19\packages\ti\sdo\ce\video2\package/package.rel.svg"];
14 ti_sdo_codecs_h264enc_ce -> ti_sdo_ce_video2;
15 ti_sdo_codecs_h264enc [shape=record,label="ti.sdo.codecs.h264enc|1, 0, 0", URL="../G:\rtsc_release\ti\sdo\codecs\h264enc\package/package.rel.svg"];
16 ti_sdo_codecs_h264enc_ce -> ti_sdo_codecs_h264enc;
17
18 edge [style=solid, color=lightgrey]
19 xdc_services_intern_cmd [shape=record,label="xdc.services.intern.cmd|1, 0, 0, 0", URL="../D:\CCSV4_install\xdctools_3_20_01_42_eng\packages\xdc\services\intern\cmd\package/package.rel.svg"];
20 ti_sdo_codecs_h264enc_ce -> xdc_services_intern_cmd;
21 xdc_services_intern_xsr [shape=record,label="xdc.services.intern.xsr|1, 0, 0", URL="../D:\CCSV4_install\xdctools_3_20_01_42_eng\packages\xdc\services\intern\xsr\package/package.rel.svg"];
22 ti_sdo_codecs_h264enc_ce -> xdc_services_intern_xsr;
23 ti_sdo_codecs_h264enc_ce -> ti_sdo_ce_video2;
24 xdc_platform [shape=record,label="xdc.platform|1, 0, 1, 0", URL="../D:\CCSV4_install\xdctools_3_20_01_42_eng\packages\xdc\platform\package/package.rel.svg"];
25 ti_sdo_codecs_h264enc_ce -> xdc_platform;
26 ti_sdo_codecs_h264enc_ce -> ti_sdo_codecs_h264enc;
27 xdc_cfg [shape=record,label="xdc.cfg|1, 0, 2, 0", URL="../D:\CCSV4_install\xdctools_3_20_01_42_eng\packages\xdc\cfg\package/package.rel.svg"];
28 ti_sdo_codecs_h264enc_ce -> xdc_cfg;
29 xdc_services_intern_gen [shape=record,label="xdc.services.intern.gen|1, 0, 0, 0", URL="../D:\CCSV4_install\xdctools_3_20_01_42_eng\packages\xdc\services\intern\gen\package/package.rel.svg"];
30 ti_sdo_codecs_h264enc_ce -> xdc_services_intern_gen;
31 xdc_shelf [shape=record,label="xdc.shelf|1, 0, 0", URL="../D:\CCSV4_install\xdctools_3_20_01_42_eng\packages\xdc\shelf\package/package.rel.svg"];
32 ti_sdo_codecs_h264enc_ce -> xdc_shelf;
33 ti_sdo_ce_ipc [shape=record,label="ti.sdo.ce.ipc|2, 0, 1", URL="../C:\RTSC_GEN_TOOLS\codec_engine_3_21_00_19\packages\ti\sdo\ce\ipc\package/package.rel.svg"];
34 ti_sdo_codecs_h264enc_ce -> ti_sdo_ce_ipc;
35 ti_sdo_ce [shape=record,label="ti.sdo.ce|1, 0, 6", URL="../C:\RTSC_GEN_TOOLS\codec_engine_3_21_00_19\packages\ti\sdo\ce\package/package.rel.svg"];
36 ti_sdo_codecs_h264enc_ce -> ti_sdo_ce;
37 xdc_bld [shape=record,label="xdc.bld|1, 0, 2", URL="../D:\CCSV4_install\xdctools_3_20_01_42_eng\packages\xdc\bld\package/package.rel.svg"];
38 ti_sdo_codecs_h264enc_ce -> xdc_bld;
39 xdc [shape=record,label="xdc|1, 1, 1", URL="../D:\CCSV4_install\xdctools_3_20_01_42_eng\packages\xdc\package/package.rel.svg"];
40 ti_sdo_codecs_h264enc_ce -> xdc;
41 xdc_services_spec [shape=record,label="xdc.services.spec|1, 0, 0, 0", URL="../D:\CCSV4_install\xdctools_3_20_01_42_eng\packages\xdc\services\spec\package/package.rel.svg"];
42 ti_sdo_codecs_h264enc_ce -> xdc_services_spec;
43 xdc_services_global [shape=record,label="xdc.services.global|1, 0, 0", URL="../D:\CCSV4_install\xdctools_3_20_01_42_eng\packages\xdc\services\global\package/package.rel.svg"];
44 ti_sdo_codecs_h264enc_ce -> xdc_services_global;
45
46 edge [style=solid, color=blue]
47
48 edge [style=solid, color=lightgrey]
49 xdc_services_global -> xdc_shelf;
50 xdc_services_global -> xdc_services_spec;
51 xdc_utils_tconf [shape=record,label="xdc.utils.tconf|not found"style=rounded, ];
52 xdc_services_global -> xdc_utils_tconf;
53 xdc_services_global -> xdc_services_intern_cmd;
54 xdc_services_global -> xdc_services_intern_xsr;
55 xdc_services_global -> xdc_services_intern_gen;
56
57 edge [style=solid, color=blue]
58
59 edge [style=solid, color=lightgrey]
60
61 edge [style=solid, color=blue]
62 xdc_services_spec -> xdc_shelf;
63
64 edge [style=solid, color=lightgrey]
65 xdc_services_spec -> xdc_shelf;
66 xdc_services_spec -> xdc_utils_tconf;
67 xdc_services_spec -> xdc_services_global;
68 xdc_services_spec -> xdc_services_intern_cmd;
69 xdc_services_spec -> xdc_services_intern_xsr;
70 xdc_services_spec -> xdc_services_intern_gen;
71
72 edge [style=solid, color=blue]
73
74 edge [style=solid, color=lightgrey]
75 xdc -> xdc_services_global;
76 xdc -> xdc_utils_tconf;
77
78 edge [style=solid, color=blue]
79 xdc_bld -> xdc_services_global;
80 xdc_bld -> xdc_services_intern_cmd;
81
82 edge [style=solid, color=lightgrey]
83 xdc_bld -> xdc_shelf;
84 xdc_bld -> xdc_services_spec;
85 xdc_bld -> xdc_utils_tconf;
86 xdc_bld -> xdc_services_global;
87 xdc_bld -> xdc;
88 xdc_bld -> xdc_services_intern_cmd;
89 xdc_bld -> xdc_services_intern_xsr;
90 xdc_bld -> xdc_services_intern_gen;
91
92 edge [style=solid, color=blue]
93
94 edge [style=solid, color=lightgrey]
95 ti_sdo_ce -> xdc_services_global;
96 ti_targets [shape=record,label="ti.targets|1, 0, 3", URL="../D:\CCSV4_install\xdctools_3_20_01_42_eng\packages\ti\targets\package/package.rel.svg"];
97 ti_sdo_ce -> ti_targets;
98 ti_targets_elf [shape=record,label="ti.targets.elf|1, 0, 0", URL="../D:\CCSV4_install\xdctools_3_20_01_42_eng\packages\ti\targets\elf\package/package.rel.svg"];
99 ti_sdo_ce -> ti_targets_elf;
100 gnu_targets [shape=record,label="gnu.targets|1, 0, 1", URL="../C:\RTSC_GEN_TOOLS\codec_engine_3_21_00_19\cetools\packages\gnu\targets\package/package.rel.svg"];
101 ti_sdo_ce -> gnu_targets;
102 gnu_targets_arm [shape=record,label="gnu.targets.arm|1, 0, 0, 0", URL="../C:\RTSC_GEN_TOOLS\codec_engine_3_21_00_19\cetools\packages\gnu\targets\arm\package/package.rel.svg"];
103 ti_sdo_ce -> gnu_targets_arm;
104 ti_targets_arm [shape=record,label="ti.targets.arm|2, 0, 1, 0", URL="../D:\CCSV4_install\xdctools_3_20_01_42_eng\packages\ti\targets\arm\package/package.rel.svg"];
105 ti_sdo_ce -> ti_targets_arm;
106 ti_targets_arm_elf [shape=record,label="ti.targets.arm.elf|1, 0, 0", URL="../D:\CCSV4_install\xdctools_3_20_01_42_eng\packages\ti\targets\arm\elf\package/package.rel.svg"];
107 ti_sdo_ce -> ti_targets_arm_elf;
108 build_filter [shape=record,label="build.filter|not found"style=rounded, ];
109 ti_sdo_ce -> build_filter;
110 ti_sdo_ce -> xdc_cfg;
111 ti_sdo_ce -> xdc_platform;
112 ti_sdo_ce -> ti_sdo_ce_ipc;
113 ti_sdo_ce -> xdc_services_intern_cmd;
114 ti_sdo_ce -> xdc_services_intern_gen;
115 ti_sdo_ce -> xdc_services_intern_xsr;
116 ti_sdo_ce -> xdc_shelf;
117 ti_sdo_ce -> xdc_services_spec;
118 xdc_runtime [shape=record,label="xdc.runtime|2, 1, 0", URL="../C:\RTSC_GEN_TOOLS\codec_engine_3_21_00_19\cetools\packages\xdc\runtime\package/package.rel.svg"];
119 ti_sdo_ce -> xdc_runtime;
120 xdc_runtime_knl [shape=record,label="xdc.runtime.knl|1, 0, 0", URL="../C:\RTSC_GEN_TOOLS\codec_engine_3_21_00_19\cetools\packages\xdc\runtime\knl\package/package.rel.svg"];
121 ti_sdo_ce -> xdc_runtime_knl;
122 ti_xdais [shape=record,label="ti.xdais|1, 2.0, 1", URL="../C:\RTSC_GEN_TOOLS\codec_engine_3_21_00_19\cetools\packages\ti\xdais\package/package.rel.svg"];
123 ti_sdo_ce -> ti_xdais;
124 ti_sdo_utils_loggers [shape=record,label="ti.sdo.utils.loggers|1, 0, 0", URL="../C:\RTSC_GEN_TOOLS\codec_engine_3_21_00_19\cetools\packages\ti\sdo\utils\loggers\package/package.rel.svg"];
125 ti_sdo_ce -> ti_sdo_utils_loggers;
126 ti_sdo_utils_trace [shape=record,label="ti.sdo.utils.trace|1, 0, 0", URL="../C:\RTSC_GEN_TOOLS\codec_engine_3_21_00_19\cetools\packages\ti\sdo\utils\trace\package/package.rel.svg"];
127 ti_sdo_ce -> ti_sdo_utils_trace;
128 ti_sdo_ce_osal [shape=record,label="ti.sdo.ce.osal|2, 0, 2", URL="../C:\RTSC_GEN_TOOLS\codec_engine_3_21_00_19\packages\ti\sdo\ce\osal\package/package.rel.svg"];
129 ti_sdo_ce -> ti_sdo_ce_osal;
130 ti_sdo_ce_global [shape=record,label="ti.sdo.ce.global|1, 0, 0", URL="../C:\RTSC_GEN_TOOLS\codec_engine_3_21_00_19\packages\ti\sdo\ce\global\package/package.rel.svg"];
131 ti_sdo_ce -> ti_sdo_ce_global;
132 ti_sdo_ce_alg [shape=record,label="ti.sdo.ce.alg|1, 0, 1", URL="../C:\RTSC_GEN_TOOLS\codec_engine_3_21_00_19\packages\ti\sdo\ce\alg\package/package.rel.svg"];
133 ti_sdo_ce -> ti_sdo_ce_alg;
134 ti_sdo_ce_node [shape=record,label="ti.sdo.ce.node|1, 0, 0", URL="../C:\RTSC_GEN_TOOLS\codec_engine_3_21_00_19\packages\ti\sdo\ce\node\package/package.rel.svg"];
135 ti_sdo_ce -> ti_sdo_ce_node;
136
137 edge [style=solid, color=blue]
138
139 edge [style=solid, color=lightgrey]
140 ti_sdo_ce_node -> xdc_services_global;
141 ti_sdo_ce_node -> ti_targets;
142 ti_sdo_ce_node -> ti_targets_elf;
143 ti_sdo_ce_node -> gnu_targets;
144 ti_sdo_ce_node -> gnu_targets_arm;
145 ti_sdo_ce_node -> ti_targets_arm;
146 ti_sdo_ce_node -> ti_targets_arm_elf;
147 ti_sdo_ce_node -> build_filter;
148 ti_sdo_ce_node -> xdc_services_intern_cmd;
149 ti_sdo_ce_node -> xdc_services_intern_gen;
150 ti_sdo_ce_node -> xdc_services_intern_xsr;
151 ti_sdo_ce_node -> xdc_shelf;
152 ti_sdo_ce_node -> xdc_services_spec;
153 ti_sdo_ce_node -> xdc_runtime;
154 ti_sdo_ce_node -> ti_sdo_ce_global;
155 ti_sdo_ce_node -> ti_sdo_ce_ipc;
156 ti_sdo_ce_node -> xdc_runtime_knl;
157 ti_sdo_ce_node -> ti_sdo_ce;
158 ti_sdo_ce_node -> ti_xdais;
159
160 edge [style=solid, color=blue]
161
162 edge [style=solid, color=lightgrey]
163 ti_sdo_ce_alg -> xdc_services_global;
164 ti_sdo_ce_alg -> ti_targets;
165 ti_sdo_ce_alg -> ti_targets_elf;
166 ti_sdo_ce_alg -> gnu_targets;
167 ti_sdo_ce_alg -> gnu_targets_arm;
168 ti_sdo_ce_alg -> ti_targets_arm;
169 ti_sdo_ce_alg -> ti_targets_arm_elf;
170 ti_sdo_ce_alg -> build_filter;
171 ti_sdo_ce_alg -> xdc_services_intern_cmd;
172 ti_sdo_ce_alg -> xdc_services_intern_gen;
173 ti_sdo_ce_alg -> xdc_services_intern_xsr;
174 ti_sdo_ce_alg -> xdc_shelf;
175 ti_sdo_ce_alg -> xdc_services_spec;
176 ti_sdo_ce_alg -> xdc_runtime;
177 ti_sdo_fc_dskt2 [shape=record,label="ti.sdo.fc.dskt2|1, 0, 4", URL="../C:\RTSC_GEN_TOOLS\codec_engine_3_21_00_19\cetools\packages\ti\sdo\fc\dskt2\package/package.rel.svg"];
178 ti_sdo_ce_alg -> ti_sdo_fc_dskt2;
179 ti_sdo_fc_dman3 [shape=record,label="ti.sdo.fc.dman3|1, 0, 4", URL="../C:\RTSC_GEN_TOOLS\codec_engine_3_21_00_19\cetools\packages\ti\sdo\fc\dman3\package/package.rel.svg"];
180 ti_sdo_ce_alg -> ti_sdo_fc_dman3;
181 ti_sdo_fc_rman [shape=record,label="ti.sdo.fc.rman|2, 0, 0", URL="../C:\RTSC_GEN_TOOLS\codec_engine_3_21_00_19\cetools\packages\ti\sdo\fc\rman\package/package.rel.svg"];
182 ti_sdo_ce_alg -> ti_sdo_fc_rman;
183 ti_sdo_ce_alg -> ti_xdais;
184 ti_sdo_ce_alg -> ti_sdo_ce_osal;
185 ti_sdo_ce_alg -> ti_sdo_ce_global;
186 ti_sdo_fc_ires [shape=record,label="ti.sdo.fc.ires|1, 0, 0", URL="../C:\RTSC_GEN_TOOLS\codec_engine_3_21_00_19\cetools\packages\ti\sdo\fc\ires\package/package.rel.svg"];
187 ti_sdo_ce_alg -> ti_sdo_fc_ires;
188 ti_sdo_ce_alg -> xdc_runtime_knl;
189
190 edge [style=solid, color=blue]
191
192 edge [style=solid, color=lightgrey]
193 ti_sdo_fc_ires -> xdc_services_global;
194 ti_sdo_fc_ires -> ti_targets;
195 ti_sdo_fc_ires -> ti_targets_elf;
196 ti_targets_elf_arp32 [shape=record,label="ti.targets.elf.arp32|not found"style=rounded, ];
197 ti_sdo_fc_ires -> ti_targets_elf_arp32;
198 ti_sdo_fc_ires -> gnu_targets;
199 ti_sdo_fc_ires -> gnu_targets_arm;
200 ti_sdo_fc_ires -> ti_targets_arm;
201 ti_sdo_fc_ires -> ti_targets_arm_elf;
202 ti_sdo_fc_ires -> build_filter;
203 ti_sdo_fc_ires -> xdc_services_intern_cmd;
204 ti_sdo_fc_ires -> xdc_services_intern_gen;
205 ti_sdo_fc_ires -> xdc_services_intern_xsr;
206 ti_sdo_fc_ires -> xdc_shelf;
207 ti_sdo_fc_ires -> xdc_services_spec;
208
209 edge [style=solid, color=blue]
210
211 edge [style=solid, color=lightgrey]
212
213 edge [style=solid, color=blue]
214
215 edge [style=solid, color=lightgrey]
216 ti_sdo_fc_rman -> xdc_services_global;
217 ti_sdo_fc_rman -> ti_targets;
218 ti_sdo_fc_rman -> ti_targets_elf;
219 ti_sdo_fc_rman -> ti_targets_elf_arp32;
220 ti_sdo_fc_rman -> gnu_targets;
221 ti_sdo_fc_rman -> gnu_targets_arm;
222 ti_sdo_fc_rman -> ti_targets_arm;
223 ti_sdo_fc_rman -> ti_targets_arm_elf;
224 ti_sdo_fc_rman -> build_filter;
225 ti_sdo_fc_rman -> xdc_services_intern_cmd;
226 ti_sdo_fc_rman -> xdc_services_intern_gen;
227 ti_sdo_fc_rman -> xdc_services_intern_xsr;
228 ti_sdo_fc_rman -> xdc_shelf;
229 ti_sdo_fc_rman -> xdc_services_spec;
230 ti_sdo_fc_rman -> xdc_runtime;
231 ti_sdo_fc_rman -> ti_sdo_fc_dskt2;
232 ti_sdo_fc_memutils [shape=record,label="ti.sdo.fc.memutils|1, 0, 0", URL="../C:\RTSC_GEN_TOOLS\codec_engine_3_21_00_19\cetools\packages\ti\sdo\fc\memutils\package/package.rel.svg"];
233 ti_sdo_fc_rman -> ti_sdo_fc_memutils;
234 ti_sdo_fc_utils_osalsupport [shape=record,label="ti.sdo.fc.utils.osalsupport|1, 0, 0", URL="../C:\RTSC_GEN_TOOLS\codec_engine_3_21_00_19\cetools\packages\ti\sdo\fc\utils\osalsupport\package/package.rel.svg"];
235 ti_sdo_fc_rman -> ti_sdo_fc_utils_osalsupport;
236 ti_sdo_fc_global [shape=record,label="ti.sdo.fc.global|1, 0, 0", URL="../C:\RTSC_GEN_TOOLS\codec_engine_3_21_00_19\cetools\packages\ti\sdo\fc\global\package/package.rel.svg"];
237 ti_sdo_fc_rman -> ti_sdo_fc_global;
238 ti_sdo_fc_utils [shape=record,label="ti.sdo.fc.utils|1, 0, 3", URL="../C:\RTSC_GEN_TOOLS\codec_engine_3_21_00_19\cetools\packages\ti\sdo\fc\utils\package/package.rel.svg"];
239 ti_sdo_fc_rman -> ti_sdo_fc_utils;
240 ti_sdo_fc_ires_nullresource [shape=record,label="ti.sdo.fc.ires.nullresource|1, 0, 0", URL="../C:\RTSC_GEN_TOOLS\codec_engine_3_21_00_19\cetools\packages\ti\sdo\fc\ires\nullresource\package/package.rel.svg"];
241 ti_sdo_fc_rman -> ti_sdo_fc_ires_nullresource;
242 ti_sdo_fc_rman -> ti_xdais;
243 ti_sdo_fc_rman -> xdc_runtime_knl;
244 ti_sdo_fc_rman -> ti_sdo_fc_ires;
245
246 edge [style=solid, color=blue]
247
248 edge [style=solid, color=lightgrey]
249 ti_sdo_fc_ires_nullresource -> xdc_services_global;
250 ti_sdo_fc_ires_nullresource -> ti_targets;
251 ti_sdo_fc_ires_nullresource -> ti_targets_elf;
252 ti_sdo_fc_ires_nullresource -> ti_targets_elf_arp32;
253 ti_sdo_fc_ires_nullresource -> gnu_targets;
254 ti_sdo_fc_ires_nullresource -> gnu_targets_arm;
255 ti_sdo_fc_ires_nullresource -> ti_targets_arm;
256 ti_sdo_fc_ires_nullresource -> ti_targets_arm_elf;
257 ti_sdo_fc_ires_nullresource -> build_filter;
258 ti_sdo_fc_ires_nullresource -> ti_sdo_fc_ires;
259 ti_sdo_fc_ires_nullresource -> xdc_services_intern_cmd;
260 ti_sdo_fc_ires_nullresource -> xdc_services_intern_gen;
261 ti_sdo_fc_ires_nullresource -> xdc_services_intern_xsr;
262 ti_sdo_fc_ires_nullresource -> xdc_shelf;
263 ti_sdo_fc_ires_nullresource -> xdc_services_spec;
264 ti_sdo_fc_ires_nullresource -> xdc_runtime;
265 ti_sdo_fc_ires_nullresource -> ti_sdo_fc_global;
266 ti_sdo_fc_ires_nullresource -> ti_xdais;
267
268 edge [style=solid, color=blue]
269
270 edge [style=solid, color=lightgrey]
271 ti_sdo_fc_utils -> xdc_services_global;
272 ti_sdo_fc_utils -> ti_targets;
273 ti_sdo_fc_utils -> ti_targets_elf;
274 ti_sdo_fc_utils -> ti_targets_elf_arp32;
275 ti_sdo_fc_utils -> gnu_targets;
276 ti_sdo_fc_utils -> gnu_targets_arm;
277 ti_sdo_fc_utils -> ti_targets_arm;
278 ti_sdo_fc_utils -> ti_targets_arm_elf;
279 ti_sdo_fc_utils -> build_filter;
280 ti_sdo_fc_utils -> xdc_services_intern_cmd;
281 ti_sdo_fc_utils -> xdc_services_intern_gen;
282 ti_sdo_fc_utils -> xdc_services_intern_xsr;
283 ti_sdo_fc_utils -> xdc_shelf;
284 ti_sdo_fc_utils -> xdc_services_spec;
285 ti_sdo_fc_utils -> xdc_runtime;
286 ti_sdo_fc_utils -> ti_sdo_fc_global;
287 ti_sdo_fc_utils -> ti_xdais;
288 ti_sdo_fc_utils -> xdc_runtime_knl;
289 ti_sdo_fc_utils -> ti_sdo_fc_memutils;
290
291 edge [style=solid, color=blue]
292
293 edge [style=solid, color=lightgrey]
294 ti_sdo_fc_global -> xdc_services_global;
295 ti_sdo_fc_global -> ti_targets;
296 ti_sdo_fc_global -> ti_targets_elf;
297 ti_sdo_fc_global -> ti_targets_elf_arp32;
298 ti_sdo_fc_global -> gnu_targets;
299 ti_sdo_fc_global -> gnu_targets_arm;
300 ti_sdo_fc_global -> ti_targets_arm;
301 ti_sdo_fc_global -> ti_targets_arm_elf;
302 ti_sdo_fc_global -> build_filter;
303 ti_sdo_tools_build [shape=record,label="ti.sdo.tools.build|1, 0, 0", URL="../C:\RTSC_GEN_TOOLS\codec_engine_3_21_00_19\cetools\packages\ti\sdo\tools\build\package/package.rel.svg"];
304 ti_sdo_fc_global -> ti_sdo_tools_build;
305 ti_sdo_fc_global -> xdc_services_intern_cmd;
306 ti_sdo_fc_global -> xdc_services_intern_gen;
307 ti_sdo_fc_global -> xdc_services_intern_xsr;
308 ti_sdo_fc_global -> xdc_shelf;
309 ti_sdo_fc_global -> xdc_services_spec;
310 ti_sdo_fc_global -> xdc_runtime;
311
312 edge [style=solid, color=blue]
313
314 edge [style=solid, color=lightgrey]
315 ti_sdo_tools_build -> xdc_services_global;
316 ti_sdo_tools_build -> ti_targets;
317 ti_sdo_tools_build -> ti_targets_elf;
318 ti_sdo_tools_build -> ti_targets_arm;
319 ti_sdo_tools_build -> ti_targets_arm_elf;
320 ti_sdo_tools_build -> gnu_targets;
321 ti_sdo_tools_build -> gnu_targets_arm;
322 ti_sdo_tools_build -> xdc_services_intern_cmd;
323 ti_sdo_tools_build -> xdc_services_intern_gen;
324 ti_sdo_tools_build -> xdc_services_intern_xsr;
325 ti_sdo_tools_build -> xdc_shelf;
326 ti_sdo_tools_build -> xdc_services_spec;
327
328 edge [style=solid, color=blue]
329
330 edge [style=solid, color=lightgrey]
331 ti_sdo_fc_utils_osalsupport -> xdc_services_global;
332 ti_sdo_fc_utils_osalsupport -> ti_targets;
333 ti_sdo_fc_utils_osalsupport -> ti_targets_elf;
334 ti_sdo_fc_utils_osalsupport -> ti_targets_elf_arp32;
335 ti_sdo_fc_utils_osalsupport -> gnu_targets;
336 ti_sdo_fc_utils_osalsupport -> gnu_targets_arm;
337 ti_sdo_fc_utils_osalsupport -> ti_targets_arm;
338 ti_sdo_fc_utils_osalsupport -> ti_targets_arm_elf;
339 ti_sdo_fc_utils_osalsupport -> build_filter;
340 ti_sdo_fc_utils_osalsupport -> xdc_services_intern_cmd;
341 ti_sdo_fc_utils_osalsupport -> xdc_services_intern_gen;
342 ti_sdo_fc_utils_osalsupport -> xdc_services_intern_xsr;
343 ti_sdo_fc_utils_osalsupport -> xdc_shelf;
344 ti_sdo_fc_utils_osalsupport -> xdc_services_spec;
345 ti_sdo_fc_utils_osalsupport -> xdc_runtime;
346 ti_sdo_fc_utils_osalsupport -> xdc_runtime_knl;
347
348 edge [style=solid, color=blue]
349
350 edge [style=solid, color=lightgrey]
351 ti_sdo_fc_memutils -> xdc_services_global;
352 ti_sdo_fc_memutils -> ti_targets;
353 ti_sdo_fc_memutils -> ti_targets_elf;
354 ti_sdo_fc_memutils -> ti_targets_elf_arp32;
355 ti_sdo_fc_memutils -> gnu_targets;
356 ti_sdo_fc_memutils -> gnu_targets_arm;
357 ti_sdo_fc_memutils -> ti_targets_arm;
358 ti_sdo_fc_memutils -> ti_targets_arm_elf;
359 ti_sdo_fc_memutils -> build_filter;
360 ti_sdo_fc_memutils -> xdc_services_intern_cmd;
361 ti_sdo_fc_memutils -> xdc_services_intern_gen;
362 ti_sdo_fc_memutils -> xdc_services_intern_xsr;
363 ti_sdo_fc_memutils -> xdc_shelf;
364 ti_sdo_fc_memutils -> xdc_services_spec;
365 ti_sdo_fc_memutils -> xdc_runtime;
366 ti_sdo_fc_memutils -> ti_sdo_fc_global;
367 ti_sysbios_hal [shape=record,label="ti.sysbios.hal|2, 0, 0, 0", URL="../C:\RTSC_GEN_TOOLS\bios_6_32_01_38\packages\ti\sysbios\hal\package/package.rel.svg"];
368 ti_sdo_fc_memutils -> ti_sysbios_hal;
369 ti_sysbios_interfaces [shape=record,label="ti.sysbios.interfaces|2, 0, 0, 0", URL="../C:\RTSC_GEN_TOOLS\bios_6_32_01_38\packages\ti\sysbios\interfaces\package/package.rel.svg"];
370 ti_sdo_fc_memutils -> ti_sysbios_interfaces;
371 ti_sdo_linuxutils_cmem [shape=record,label="ti.sdo.linuxutils.cmem|2, 2, 0", URL="../C:\RTSC_GEN_TOOLS\codec_engine_3_21_00_19\cetools\packages\ti\sdo\linuxutils\cmem\package/package.rel.svg"];
372 ti_sdo_fc_memutils -> ti_sdo_linuxutils_cmem;
373
374 edge [style=solid, color=blue]
375
376 edge [style=solid, color=lightgrey]
377 ti_sdo_linuxutils_cmem -> xdc_services_global;
378 ti_sdo_linuxutils_cmem -> ti_targets;
379 ti_sdo_linuxutils_cmem -> ti_targets_elf;
380 ti_sdo_linuxutils_cmem -> gnu_targets;
381 ti_sdo_linuxutils_cmem -> gnu_targets_arm;
382 ti_sdo_linuxutils_cmem -> ti_targets_arm;
383 ti_sdo_linuxutils_cmem -> ti_targets_arm_elf;
384 ti_sdo_linuxutils_cmem -> xdc_services_intern_cmd;
385 ti_sdo_linuxutils_cmem -> xdc_services_intern_gen;
386 ti_sdo_linuxutils_cmem -> xdc_services_intern_xsr;
387 ti_sdo_linuxutils_cmem -> xdc_shelf;
388 ti_sdo_linuxutils_cmem -> xdc_services_spec;
389
390 edge [style=solid, color=blue]
391
392 edge [style=solid, color=lightgrey]
393 ti_sysbios_interfaces -> xdc_services_global;
394 ti_sysbios_interfaces -> ti_targets;
395 ti_targets_msp430 [shape=record,label="ti.targets.msp430|1, 0, 0", URL="../D:\CCSV4_install\xdctools_3_20_01_42_eng\packages\ti\targets\msp430\package/package.rel.svg"];
396 ti_sysbios_interfaces -> ti_targets_msp430;
397 ti_sysbios_interfaces -> ti_targets_elf_arp32;
398 ti_sysbios_interfaces -> ti_targets_elf;
399 ti_sysbios_interfaces -> ti_targets_arm;
400 ti_sysbios_interfaces -> ti_targets_arm_elf;
401 ti_sysbios_interfaces -> gnu_targets;
402 microsoft_targets [shape=record,label="microsoft.targets|1, 0, 2, 0", URL="../D:\CCSV4_install\xdctools_3_20_01_42_eng\packages\microsoft\targets\package/package.rel.svg"];
403 ti_sysbios_interfaces -> microsoft_targets;
404 ti_sysbios_interfaces -> xdc_runtime;
405 ti_sysbios_interfaces -> xdc_shelf;
406 ti_sysbios_interfaces -> xdc_services_intern_gen;
407 ti_sysbios_interfaces -> xdc_services_intern_cmd;
408 ti_sysbios_interfaces -> xdc_services_intern_xsr;
409 ti_sysbios_interfaces -> xdc_services_spec;
410
411 edge [style=solid, color=blue]
412
413 edge [style=solid, color=lightgrey]
414 microsoft_targets -> xdc_services_spec;
415 microsoft_targets -> xdc_shelf;
416 microsoft_targets -> xdc_services_global;
417 microsoft_targets -> xdc_services_intern_cmd;
418 microsoft_targets -> xdc_services_intern_xsr;
419 microsoft_targets -> xdc_services_intern_gen;
420
421 edge [style=solid, color=blue]
422
423 edge [style=solid, color=lightgrey]
424 ti_targets_msp430 -> xdc_shelf;
425 ti_targets_msp430 -> ti_targets;
426 ti_targets_msp430 -> xdc_services_spec;
427 ti_targets_msp430 -> xdc_services_intern_cmd;
428 ti_targets_msp430 -> xdc_services_global;
429 ti_targets_msp430 -> xdc_services_intern_xsr;
430 ti_targets_msp430 -> xdc_services_intern_gen;
431
432 edge [style=solid, color=blue]
433 ti_sysbios_hal -> ti_sysbios_interfaces;
434 ti_sysbios_family [shape=record,label="ti.sysbios.family|2, 0, 0, 0", URL="../C:\RTSC_GEN_TOOLS\bios_6_32_01_38\packages\ti\sysbios\family\package/package.rel.svg"];
435 ti_sysbios_hal -> ti_sysbios_family;
436
437 edge [style=solid, color=lightgrey]
438 ti_sysbios_hal -> xdc_services_global;
439 ti_sysbios_hal -> ti_targets;
440 ti_sysbios_hal -> ti_targets_msp430;
441 ti_sysbios_hal -> ti_targets_elf_arp32;
442 ti_sysbios_hal -> ti_targets_elf;
443 ti_sysbios_hal -> ti_targets_arm;
444 ti_sysbios_hal -> ti_targets_arm_elf;
445 ti_sysbios_hal -> gnu_targets;
446 ti_sysbios_hal -> microsoft_targets;
447 ti_sysbios_build [shape=record,label="ti.sysbios.build|2, 0, 0, 0", URL="../C:\RTSC_GEN_TOOLS\bios_6_32_01_38\packages\ti\sysbios\build\package/package.rel.svg"];
448 ti_sysbios_hal -> ti_sysbios_build;
449 tisb_release_filters [shape=record,label="tisb.release.filters|not found"style=rounded, ];
450 ti_sysbios_hal -> tisb_release_filters;
451 ti_sysbios_hal -> ti_sysbios_interfaces;
452 ti_sysbios_hal -> xdc_shelf;
453 ti_sysbios_hal -> xdc_services_intern_gen;
454 ti_sysbios_hal -> xdc_services_intern_cmd;
455 ti_sysbios_hal -> xdc_services_intern_xsr;
456 ti_sysbios_hal -> xdc_services_spec;
457 ti_sysbios_hal -> xdc_runtime;
458 ti_sysbios_family_arm_m3 [shape=record,label="ti.sysbios.family.arm.m3|2, 0, 0, 0", URL="../C:\RTSC_GEN_TOOLS\bios_6_32_01_38\packages\ti\sysbios\family\arm\m3\package/package.rel.svg"];
459 ti_sysbios_hal -> ti_sysbios_family_arm_m3;
460 ti_sysbios_family_c28 [shape=record,label="ti.sysbios.family.c28|2, 0, 0, 0", URL="../C:\RTSC_GEN_TOOLS\bios_6_32_01_38\packages\ti\sysbios\family\c28\package/package.rel.svg"];
461 ti_sysbios_hal -> ti_sysbios_family_c28;
462 ti_sysbios [shape=record,label="ti.sysbios|2, 0, 0, 0", URL="../C:\RTSC_GEN_TOOLS\bios_6_32_01_38\packages\ti\sysbios\package/package.rel.svg"];
463 ti_sysbios_hal -> ti_sysbios;
464
465 edge [style=solid, color=blue]
466 ti_sysbios -> ti_sysbios_family;
467
468 edge [style=solid, color=lightgrey]
469 ti_sysbios -> xdc_services_global;
470 ti_sysbios -> ti_targets;
471 ti_sysbios -> ti_targets_msp430;
472 ti_sysbios -> ti_targets_elf_arp32;
473 ti_sysbios -> ti_targets_elf;
474 ti_sysbios -> ti_targets_arm;
475 ti_sysbios -> ti_targets_arm_elf;
476 ti_sysbios -> gnu_targets;
477 ti_sysbios -> microsoft_targets;
478 ti_sysbios -> ti_sysbios_build;
479 ti_sysbios -> tisb_release_filters;
480 ti_sysbios -> xdc_shelf;
481 ti_sysbios -> xdc_services_intern_gen;
482 ti_sysbios -> xdc_services_intern_cmd;
483 ti_sysbios -> xdc_services_intern_xsr;
484 ti_sysbios -> xdc_services_spec;
485 ti_sysbios -> xdc_runtime;
486 ti_catalog_c2800 [shape=record,label="ti.catalog.c2800|1, 0, 0, 0", URL="../D:\CCSV4_install\xdctools_3_20_01_42_eng\packages\ti\catalog\c2800\package/package.rel.svg"];
487 ti_sysbios -> ti_catalog_c2800;
488 ti_catalog_c2800_init [shape=record,label="ti.catalog.c2800.init|1, 0, 0", URL="../D:\CCSV4_install\xdctools_3_20_01_42_eng\packages\ti\catalog\c2800\init\package/package.rel.svg"];
489 ti_sysbios -> ti_catalog_c2800_init;
490 ti_platforms_ezdsp28235 [shape=record,label="ti.platforms.ezdsp28235|1, 0, 0", URL="../D:\CCSV4_install\xdctools_3_20_01_42_eng\packages\ti\platforms\ezdsp28235\package/package.rel.svg"];
491 ti_sysbios -> ti_platforms_ezdsp28235;
492 ti_targets_rts2800 [shape=record,label="ti.targets.rts2800|1, 0, 0, 0", URL="../D:\CCSV4_install\xdctools_3_20_01_42_eng\packages\ti\targets\rts2800\package/package.rel.svg"];
493 ti_sysbios -> ti_targets_rts2800;
494 ti_sysbios -> xdc_cfg;
495 ti_sysbios -> xdc_platform;
496 xdc_rov [shape=record,label="xdc.rov|1, 0, 0", URL="../D:\CCSV4_install\xdctools_3_20_01_42_eng\packages\xdc\rov\package/package.rel.svg"];
497 ti_sysbios -> xdc_rov;
498 ti_sysbios -> xdc_runtime_knl;
499 xdc_services_getset [shape=record,label="xdc.services.getset|1, 0, 0", URL="../D:\CCSV4_install\xdctools_3_20_01_42_eng\packages\xdc\services\getset\package/package.rel.svg"];
500 ti_sysbios -> xdc_services_getset;
501 xdc_services_io [shape=record,label="xdc.services.io|1, 0, 0", URL="../D:\CCSV4_install\xdctools_3_20_01_42_eng\packages\xdc\services\io\package/package.rel.svg"];
502 ti_sysbios -> xdc_services_io;
503 ti_platforms_ezdsp28335 [shape=record,label="ti.platforms.ezdsp28335|1, 0, 0", URL="../D:\CCSV4_install\xdctools_3_20_01_42_eng\packages\ti\platforms\ezdsp28335\package/package.rel.svg"];
504 ti_sysbios -> ti_platforms_ezdsp28335;
505 ti_catalog_c6000 [shape=record,label="ti.catalog.c6000|1, 0, 0, 0", URL="../D:\CCSV4_install\xdctools_3_20_01_42_eng\packages\ti\catalog\c6000\package/package.rel.svg"];
506 ti_sysbios -> ti_catalog_c6000;
507 ti_platforms_dsk6416 [shape=record,label="ti.platforms.dsk6416|1, 0, 0", URL="../D:\CCSV4_install\xdctools_3_20_01_42_eng\packages\ti\platforms\dsk6416\package/package.rel.svg"];
508 ti_sysbios -> ti_platforms_dsk6416;
509 ti_targets_rts6000 [shape=record,label="ti.targets.rts6000|1, 0, 0, 0", URL="../D:\CCSV4_install\xdctools_3_20_01_42_eng\packages\ti\targets\rts6000\package/package.rel.svg"];
510 ti_sysbios -> ti_targets_rts6000;
511 ti_platforms_evmDM6446 [shape=record,label="ti.platforms.evmDM6446|1, 0, 0, 1", URL="../D:\CCSV4_install\xdctools_3_20_01_42_eng\packages\ti\platforms\evmDM6446\package/package.rel.svg"];
512 ti_sysbios -> ti_platforms_evmDM6446;
513 ti_platforms_evmDM6437 [shape=record,label="ti.platforms.evmDM6437|1, 0, 0", URL="../D:\CCSV4_install\xdctools_3_20_01_42_eng\packages\ti\platforms\evmDM6437\package/package.rel.svg"];
514 ti_sysbios -> ti_platforms_evmDM6437;
515 ti_platforms_evmDA830 [shape=record,label="ti.platforms.evmDA830|1, 0, 0", URL="../D:\CCSV4_install\xdctools_3_20_01_42_eng\packages\ti\platforms\evmDA830\package/package.rel.svg"];
516 ti_sysbios -> ti_platforms_evmDA830;
517 ti_catalog_msp430 [shape=record,label="ti.catalog.msp430|1, 0, 0", URL="../D:\CCSV4_install\xdctools_3_20_01_42_eng\packages\ti\catalog\msp430\package/package.rel.svg"];
518 ti_sysbios -> ti_catalog_msp430;
519 ti_catalog_msp430_init [shape=record,label="ti.catalog.msp430.init|1, 0, 0", URL="../D:\CCSV4_install\xdctools_3_20_01_42_eng\packages\ti\catalog\msp430\init\package/package.rel.svg"];
520 ti_sysbios -> ti_catalog_msp430_init;
521 ti_catalog_msp430_peripherals_adc [shape=record,label="ti.catalog.msp430.peripherals.adc|", URL="../D:\CCSV4_install\xdctools_3_20_01_42_eng\packages\ti\catalog\msp430\peripherals\adc\package/package.rel.svg"];
522 ti_sysbios -> ti_catalog_msp430_peripherals_adc;
523 ti_catalog_msp430_peripherals_clock [shape=record,label="ti.catalog.msp430.peripherals.clock|", URL="../D:\CCSV4_install\xdctools_3_20_01_42_eng\packages\ti\catalog\msp430\peripherals\clock\package/package.rel.svg"];
524 ti_sysbios -> ti_catalog_msp430_peripherals_clock;
525 ti_catalog_msp430_peripherals_communication [shape=record,label="ti.catalog.msp430.peripherals.communication|", URL="../D:\CCSV4_install\xdctools_3_20_01_42_eng\packages\ti\catalog\msp430\peripherals\communication\package/package.rel.svg"];
526 ti_sysbios -> ti_catalog_msp430_peripherals_communication;
527 ti_catalog_msp430_peripherals_comparator [shape=record,label="ti.catalog.msp430.peripherals.comparator|not found"style=rounded, ];
528 ti_sysbios -> ti_catalog_msp430_peripherals_comparator;
529 ti_catalog_msp430_peripherals_dac [shape=record,label="ti.catalog.msp430.peripherals.dac|not found"style=rounded, ];
530 ti_sysbios -> ti_catalog_msp430_peripherals_dac;
531 ti_catalog_msp430_peripherals_gpio [shape=record,label="ti.catalog.msp430.peripherals.gpio|", URL="../D:\CCSV4_install\xdctools_3_20_01_42_eng\packages\ti\catalog\msp430\peripherals\gpio\package/package.rel.svg"];
532 ti_sysbios -> ti_catalog_msp430_peripherals_gpio;
533 ti_catalog_msp430_peripherals_memory [shape=record,label="ti.catalog.msp430.peripherals.memory|", URL="../D:\CCSV4_install\xdctools_3_20_01_42_eng\packages\ti\catalog\msp430\peripherals\memory\package/package.rel.svg"];
534 ti_sysbios -> ti_catalog_msp430_peripherals_memory;
535 ti_catalog_msp430_peripherals_oa [shape=record,label="ti.catalog.msp430.peripherals.oa|", URL="../D:\CCSV4_install\xdctools_3_20_01_42_eng\packages\ti\catalog\msp430\peripherals\oa\package/package.rel.svg"];
536 ti_sysbios -> ti_catalog_msp430_peripherals_oa;
537 ti_catalog_msp430_peripherals_special_function [shape=record,label="ti.catalog.msp430.peripherals.special_function|", URL="../D:\CCSV4_install\xdctools_3_20_01_42_eng\packages\ti\catalog\msp430\peripherals\special_function\package/package.rel.svg"];
538 ti_sysbios -> ti_catalog_msp430_peripherals_special_function;
539 ti_catalog_msp430_peripherals_svs [shape=record,label="ti.catalog.msp430.peripherals.svs|not found"style=rounded, ];
540 ti_sysbios -> ti_catalog_msp430_peripherals_svs;
541 ti_catalog_msp430_peripherals_timer [shape=record,label="ti.catalog.msp430.peripherals.timer|", URL="../D:\CCSV4_install\xdctools_3_20_01_42_eng\packages\ti\catalog\msp430\peripherals\timer\package/package.rel.svg"];
542 ti_sysbios -> ti_catalog_msp430_peripherals_timer;
543 ti_catalog_msp430_peripherals_watchdog [shape=record,label="ti.catalog.msp430.peripherals.watchdog|", URL="../D:\CCSV4_install\xdctools_3_20_01_42_eng\packages\ti\catalog\msp430\peripherals\watchdog\package/package.rel.svg"];
544 ti_sysbios -> ti_catalog_msp430_peripherals_watchdog;
545 ti_platforms_exp430F5438 [shape=record,label="ti.platforms.exp430F5438|1, 0, 0, 0", URL="../D:\CCSV4_install\xdctools_3_20_01_42_eng\packages\ti\platforms\exp430F5438\package/package.rel.svg"];
546 ti_sysbios -> ti_platforms_exp430F5438;
547 ti_targets_msp430_rts430 [shape=record,label="ti.targets.msp430.rts430|1, 0, 0", URL="../D:\CCSV4_install\xdctools_3_20_01_42_eng\packages\ti\targets\msp430\rts430\package/package.rel.svg"];
548 ti_sysbios -> ti_targets_msp430_rts430;
549 ti_platforms_evm6472 [shape=record,label="ti.platforms.evm6472|1, 0, 0", URL="../D:\CCSV4_install\xdctools_3_20_01_42_eng\packages\ti\platforms\evm6472\package/package.rel.svg"];
550 ti_sysbios -> ti_platforms_evm6472;
551 ti_platforms_padk6727 [shape=record,label="ti.platforms.padk6727|1, 0, 0", URL="../D:\CCSV4_install\xdctools_3_20_01_42_eng\packages\ti\platforms\padk6727\package/package.rel.svg"];
552 ti_sysbios -> ti_platforms_padk6727;
553 ti_catalog_arm_cortexm3 [shape=record,label="ti.catalog.arm.cortexm3|1, 0, 0", URL="../D:\CCSV4_install\xdctools_3_20_01_42_eng\packages\ti\catalog\arm\cortexm3\package/package.rel.svg"];
554 ti_sysbios -> ti_catalog_arm_cortexm3;
555 ti_platforms_sdp4430 [shape=record,label="ti.platforms.sdp4430|1, 0, 0, 0", URL="../D:\CCSV4_install\xdctools_3_20_01_42_eng\packages\ti\platforms\sdp4430\package/package.rel.svg"];
556 ti_sysbios -> ti_platforms_sdp4430;
557 ti_platforms_evm6670 [shape=record,label="ti.platforms.evm6670|not found"style=rounded, ];
558 ti_sysbios -> ti_platforms_evm6670;
559 ti_catalog_arp32 [shape=record,label="ti.catalog.arp32|not found"style=rounded, ];
560 ti_sysbios -> ti_catalog_arp32;
561 ti_platforms_simArctic [shape=record,label="ti.platforms.simArctic|not found"style=rounded, ];
562 ti_sysbios -> ti_platforms_simArctic;
563 ti_targets_elf_arp32_rts [shape=record,label="ti.targets.elf.arp32.rts|not found"style=rounded, ];
564 ti_sysbios -> ti_targets_elf_arp32_rts;
565 ti_catalog_arm [shape=record,label="ti.catalog.arm|1, 0, 1", URL="../D:\CCSV4_install\xdctools_3_20_01_42_eng\packages\ti\catalog\arm\package/package.rel.svg"];
566 ti_sysbios -> ti_catalog_arm;
567 ti_platforms_expOMAPL138 [shape=record,label="ti.platforms.expOMAPL138|1, 0, 0", URL="../D:\CCSV4_install\xdctools_3_20_01_42_eng\packages\ti\platforms\expOMAPL138\package/package.rel.svg"];
568 ti_sysbios -> ti_platforms_expOMAPL138;
569 ti_targets_arm_rtsarm [shape=record,label="ti.targets.arm.rtsarm|1, 0, 0, 0", URL="../D:\CCSV4_install\xdctools_3_20_01_42_eng\packages\ti\targets\arm\rtsarm\package/package.rel.svg"];
570 ti_sysbios -> ti_targets_arm_rtsarm;
571 ti_catalog_arm_cortexa8 [shape=record,label="ti.catalog.arm.cortexa8|1, 0, 0", URL="../D:\CCSV4_install\xdctools_3_20_01_42_eng\packages\ti\catalog\arm\cortexa8\package/package.rel.svg"];
572 ti_sysbios -> ti_catalog_arm_cortexa8;
573 ti_platforms_sdp3430 [shape=record,label="ti.platforms.sdp3430|1, 0, 0", URL="../D:\CCSV4_install\xdctools_3_20_01_42_eng\packages\ti\platforms\sdp3430\package/package.rel.svg"];
574 ti_sysbios -> ti_platforms_sdp3430;
575 ti_catalog_arm_cortexm3_lm3init [shape=record,label="ti.catalog.arm.cortexm3.lm3init|1, 0, 0", URL="../D:\CCSV4_install\xdctools_3_20_01_42_eng\packages\ti\catalog\arm\cortexm3\lm3init\package/package.rel.svg"];
576 ti_sysbios -> ti_catalog_arm_cortexm3_lm3init;
577 ti_platforms_evmLM3S8962 [shape=record,label="ti.platforms.evmLM3S8962|1, 0, 0", URL="../D:\CCSV4_install\xdctools_3_20_01_42_eng\packages\ti\platforms\evmLM3S8962\package/package.rel.svg"];
578 ti_sysbios -> ti_platforms_evmLM3S8962;
579 ti_catalog_arm_cortexr4 [shape=record,label="ti.catalog.arm.cortexr4|1, 0, 0", URL="../D:\CCSV4_install\xdctools_3_20_01_42_eng\packages\ti\catalog\arm\cortexr4\package/package.rel.svg"];
580 ti_sysbios -> ti_catalog_arm_cortexr4;
581 ti_platforms_evmTMS570LS20216 [shape=record,label="ti.platforms.evmTMS570LS20216|1, 0, 1, 1", URL="../D:\CCSV4_install\xdctools_3_20_01_42_eng\packages\ti\platforms\evmTMS570LS20216\package/package.rel.svg"];
582 ti_sysbios -> ti_platforms_evmTMS570LS20216;
583
584 edge [style=solid, color=blue]
585 ti_platforms_evmTMS570LS20216 -> ti_catalog_arm_cortexr4;
586 ti_platforms_evmTMS570LS20216 -> xdc_platform;
587
588 edge [style=solid, color=lightgrey]
589 ti_platforms_evmTMS570LS20216 -> ti_targets_arm;
590 ti_platforms_evmTMS570LS20216 -> ti_targets_elf;
591 ti_platforms_evmTMS570LS20216 -> gnu_targets;
592 ti_platforms_evmTMS570LS20216 -> xdc_services_intern_gen;
593 ti_platforms_evmTMS570LS20216 -> xdc_services_global;
594 ti_platforms_evmTMS570LS20216 -> xdc_platform;
595 ti_platforms_evmTMS570LS20216 -> xdc_shelf;
596 ti_platforms_evmTMS570LS20216 -> xdc_services_intern_xsr;
597 ti_platforms_evmTMS570LS20216 -> ti_targets;
598 ti_platforms_evmTMS570LS20216 -> xdc_services_spec;
599 ti_platforms_evmTMS570LS20216 -> ti_catalog_arm_cortexr4;
600 ti_platforms_evmTMS570LS20216 -> microsoft_targets;
601 ti_platforms_evmTMS570LS20216 -> xdc_services_intern_cmd;
602 ti_platforms_evmTMS570LS20216 -> gnu_targets_arm;
603 ti_platforms_evmTMS570LS20216 -> ti_targets_arm_elf;
604
605 edge [style=solid, color=blue]
606 ti_catalog_arm_cortexr4 -> xdc_platform;
607
608 edge [style=solid, color=lightgrey]
609 ti_catalog_arm_cortexr4 -> ti_targets_arm;
610 ti_catalog_arm_cortexr4 -> ti_targets_elf;
611 ti_catalog_arm_cortexr4 -> gnu_targets;
612 ti_catalog_arm_cortexr4 -> xdc_services_intern_gen;
613 ti_catalog_arm_cortexr4 -> xdc_services_global;
614 ti_catalog_arm_cortexr4 -> xdc_platform;
615 ti_catalog_arm_cortexr4 -> xdc_shelf;
616 ti_catalog_arm_cortexr4 -> xdc_services_intern_xsr;
617 ti_catalog [shape=record,label="ti.catalog|1, 0, 0", URL="../D:\CCSV4_install\xdctools_3_20_01_42_eng\packages\ti\catalog\package/package.rel.svg"];
618 ti_catalog_arm_cortexr4 -> ti_catalog;
619 ti_catalog_arm_cortexr4 -> ti_targets;
620 ti_catalog_arm_cortexr4 -> xdc_services_spec;
621 ti_catalog_arm_cortexr4 -> microsoft_targets;
622 ti_catalog_arm_cortexr4 -> xdc_services_intern_cmd;
623 ti_catalog_arm_cortexr4 -> gnu_targets_arm;
624 ti_catalog_arm_cortexr4 -> ti_targets_arm_elf;
625
626 edge [style=solid, color=blue]
627
628 edge [style=solid, color=lightgrey]
629 ti_catalog -> microsoft_targets;
630 ti_catalog -> gnu_targets;
631 ti_catalog -> gnu_targets_arm;
632 ti_catalog -> xdc_services_global;
633 ti_catalog -> xdc_platform;
634 ti_catalog -> ti_targets_arm_elf;
635 ti_catalog -> ti_targets_elf;
636 ti_catalog -> xdc_services_intern_cmd;
637 ti_catalog -> ti_targets_arm;
638 ti_catalog -> xdc_services_intern_xsr;
639 ti_catalog -> xdc_shelf;
640 ti_catalog -> ti_targets;
641 ti_catalog -> xdc_services_intern_gen;
642 ti_catalog -> xdc_services_spec;
643
644 edge [style=solid, color=blue]
645 ti_platforms_evmLM3S8962 -> ti_catalog_c6000;
646 ti_platforms_evmLM3S8962 -> xdc_platform;
647
648 edge [style=solid, color=lightgrey]
649 ti_platforms_evmLM3S8962 -> ti_targets_arm;
650 ti_platforms_evmLM3S8962 -> ti_targets_elf;
651 ti_platforms_evmLM3S8962 -> gnu_targets;
652 ti_platforms_evmLM3S8962 -> xdc_services_intern_gen;
653 ti_platforms_evmLM3S8962 -> xdc_rov;
654 ti_platforms_evmLM3S8962 -> xdc_services_global;
655 ti_platforms_evmLM3S8962 -> xdc_platform;
656 ti_platforms_evmLM3S8962 -> xdc_shelf;
657 ti_platforms_evmLM3S8962 -> xdc_services_intern_xsr;
658 ti_platforms_evmLM3S8962 -> ti_targets;
659 ti_platforms_evmLM3S8962 -> xdc_services_spec;
660 ti_platforms_evmLM3S8962 -> microsoft_targets;
661 ti_platforms_evmLM3S8962 -> ti_catalog_c6000;
662 ti_platforms_evmLM3S8962 -> xdc_services_intern_cmd;
663 ti_platforms_evmLM3S8962 -> gnu_targets_arm;
664 ti_platforms_evmLM3S8962 -> ti_catalog_arm_cortexm3_lm3init;
665 ti_platforms_evmLM3S8962 -> ti_targets_arm_elf;
666
667 edge [style=solid, color=blue]
668
669 edge [style=solid, color=lightgrey]
670 ti_catalog_arm_cortexm3_lm3init -> ti_targets_arm;
671 ti_catalog_arm_cortexm3_lm3init -> ti_targets_elf;
672 ti_catalog_arm_cortexm3_lm3init -> gnu_targets;
673 ti_catalog_arm_cortexm3_lm3init -> xdc_services_intern_gen;
674 ti_catalog_arm_cortexm3_lm3init -> xdc_rov;
675 ti_catalog_arm_cortexm3_lm3init -> xdc_services_global;
676 ti_catalog_arm_cortexm3_lm3init -> xdc_shelf;
677 ti_catalog_arm_cortexm3_lm3init -> xdc_services_intern_xsr;
678 ti_catalog_arm_cortexm3_lm3init -> ti_targets;
679 ti_catalog_arm_cortexm3_lm3init -> xdc_services_spec;
680 ti_catalog_arm_cortexm3_lm3init -> microsoft_targets;
681 ti_catalog_arm_cortexm3_lm3init -> xdc_services_intern_cmd;
682 ti_catalog_arm_cortexm3_lm3init -> gnu_targets_arm;
683 ti_catalog_arm_cortexm3_lm3init -> ti_targets_arm_elf;
684
685 edge [style=solid, color=blue]
686 ti_platforms_sdp3430 -> ti_catalog_c6000;
687 ti_platforms_sdp3430 -> ti_catalog_arm_cortexa8;
688 ti_platforms_sdp3430 -> xdc_platform;
689
690 edge [style=solid, color=lightgrey]
691 ti_platforms_sdp3430 -> ti_targets_arm;
692 ti_platforms_sdp3430 -> ti_targets_elf;
693 ti_platforms_sdp3430 -> gnu_targets;
694 ti_platforms_sdp3430 -> xdc_services_intern_gen;
695 ti_platforms_sdp3430 -> xdc_services_global;
696 ti_platforms_sdp3430 -> xdc_platform;
697 ti_platforms_sdp3430 -> xdc_shelf;
698 ti_platforms_sdp3430 -> xdc_services_intern_xsr;
699 ti_platforms_sdp3430 -> ti_targets;
700 ti_platforms_sdp3430 -> xdc_services_spec;
701 ti_platforms_sdp3430 -> microsoft_targets;
702 ti_platforms_sdp3430 -> ti_catalog_c6000;
703 ti_platforms_sdp3430 -> xdc_services_intern_cmd;
704 ti_platforms_sdp3430 -> ti_catalog_arm_cortexa8;
705 ti_platforms_sdp3430 -> gnu_targets_arm;
706 ti_platforms_sdp3430 -> ti_targets_arm_elf;
707
708 edge [style=solid, color=blue]
709 ti_catalog_arm_cortexa8 -> xdc_platform;
710 ti_catalog_peripherals_hdvicp2 [shape=record,label="ti.catalog.peripherals.hdvicp2|", URL="../D:\CCSV4_install\xdctools_3_20_01_42_eng\packages\ti\catalog\peripherals\hdvicp2\package/package.rel.svg"];
711 ti_catalog_arm_cortexa8 -> ti_catalog_peripherals_hdvicp2;
712
713 edge [style=solid, color=lightgrey]
714 ti_catalog_arm_cortexa8 -> ti_targets_arm;
715 ti_catalog_arm_cortexa8 -> ti_targets_elf;
716 ti_catalog_arm_cortexa8 -> gnu_targets;
717 ti_catalog_arm_cortexa8 -> xdc_services_intern_gen;
718 ti_catalog_arm_cortexa8 -> xdc_services_global;
719 ti_catalog_arm_cortexa8 -> xdc_platform;
720 ti_catalog_arm_cortexa8 -> xdc_shelf;
721 ti_catalog_arm_cortexa8 -> xdc_services_intern_xsr;
722 ti_catalog_arm_cortexa8 -> ti_catalog_peripherals_hdvicp2;
723 ti_catalog_arm_cortexa8 -> ti_catalog;
724 ti_catalog_arm_cortexa8 -> ti_targets;
725 ti_catalog_arm_cortexa8 -> xdc_services_spec;
726 ti_catalog_arm_cortexa8 -> microsoft_targets;
727 ti_catalog_arm_cortexa8 -> xdc_services_intern_cmd;
728 ti_catalog_arm_cortexa8 -> gnu_targets_arm;
729 ti_catalog_arm_cortexa8 -> ti_targets_arm_elf;
730
731 edge [style=solid, color=blue]
732
733 edge [style=solid, color=lightgrey]
734 ti_catalog_peripherals_hdvicp2 -> microsoft_targets;
735 ti_catalog_peripherals_hdvicp2 -> gnu_targets;
736 ti_catalog_peripherals_hdvicp2 -> gnu_targets_arm;
737 ti_catalog_peripherals_hdvicp2 -> xdc_services_global;
738 ti_catalog_peripherals_hdvicp2 -> xdc_platform;
739 ti_catalog_peripherals_hdvicp2 -> ti_targets_arm_elf;
740 ti_catalog_peripherals_hdvicp2 -> ti_targets_elf;
741 ti_catalog_peripherals_hdvicp2 -> xdc_services_intern_cmd;
742 ti_catalog_peripherals_hdvicp2 -> ti_targets_arm;
743 ti_catalog_peripherals_hdvicp2 -> xdc_services_intern_xsr;
744 ti_catalog_peripherals_hdvicp2 -> xdc_shelf;
745 ti_catalog_peripherals_hdvicp2 -> ti_targets;
746 ti_catalog_peripherals_hdvicp2 -> xdc_services_intern_gen;
747 ti_catalog_peripherals_hdvicp2 -> xdc_services_spec;
748
749 edge [style=solid, color=blue]
750 ti_targets_arm_rtsarm -> xdc_runtime;
751
752 edge [style=solid, color=lightgrey]
753 ti_targets_arm_rtsarm -> microsoft_targets;
754 ti_targets_arm_rtsarm -> xdc_shelf;
755 ti_targets_arm_rtsarm -> gnu_targets_arm;
756 ti_targets_arm_rtsarm -> ti_targets;
757 ti_targets_arm_rtsarm -> xdc_services_global;
758 ti_targets_arm_rtsarm -> xdc_services_intern_gen;
759 ti_targets_arm_rtsarm -> ti_targets_arm;
760 ti_targets_arm_rtsarm -> ti_targets_elf;
761 ti_targets_arm_rtsarm -> xdc_runtime;
762 ti_targets_arm_rtsarm -> ti_targets_arm_elf;
763 ti_targets_arm_rtsarm -> xdc_services_intern_xsr;
764 ti_targets_arm_rtsarm -> gnu_targets;
765 ti_targets_arm_rtsarm -> xdc_services_spec;
766 ti_targets_arm_rtsarm -> xdc_rov;
767 ti_targets_arm_rtsarm -> xdc_services_intern_cmd;
768 ti_targets_arm_rtsarm -> xdc_runtime_knl;
769 microsoft_targets_arm [shape=record,label="microsoft.targets.arm|1, 0, 0, 0", URL="../D:\CCSV4_install\xdctools_3_20_01_42_eng\packages\microsoft\targets\arm\package/package.rel.svg"];
770 ti_targets_arm_rtsarm -> microsoft_targets_arm;
771
772 edge [style=solid, color=blue]
773 microsoft_targets_arm -> microsoft_targets;
774
775 edge [style=solid, color=lightgrey]
776 microsoft_targets_arm -> xdc_services_spec;
777 microsoft_targets_arm -> xdc_shelf;
778 microsoft_targets_arm -> xdc_services_global;
779 microsoft_targets_arm -> xdc_services_intern_cmd;
780 microsoft_targets_arm -> xdc_services_intern_xsr;
781 microsoft_targets_arm -> xdc_services_intern_gen;
782 microsoft_targets_arm -> microsoft_targets;
783
784 edge [style=solid, color=blue]
785 ti_platforms_expOMAPL138 -> ti_catalog_c6000;
786 ti_platforms_expOMAPL138 -> xdc_platform;
787
788 edge [style=solid, color=lightgrey]
789 ti_platforms_expOMAPL138 -> ti_targets_arm;
790 ti_platforms_expOMAPL138 -> ti_targets_elf;
791 ti_platforms_expOMAPL138 -> gnu_targets;
792 ti_platforms_expOMAPL138 -> xdc_services_intern_gen;
793 ti_platforms_expOMAPL138 -> xdc_services_global;
794 ti_platforms_expOMAPL138 -> xdc_platform;
795 ti_platforms_expOMAPL138 -> xdc_shelf;
796 ti_platforms_expOMAPL138 -> xdc_services_intern_xsr;
797 ti_platforms_expOMAPL138 -> ti_targets;
798 ti_platforms_expOMAPL138 -> xdc_services_spec;
799 ti_platforms_expOMAPL138 -> microsoft_targets;
800 ti_platforms_expOMAPL138 -> ti_catalog_c6000;
801 ti_platforms_expOMAPL138 -> xdc_services_intern_cmd;
802 ti_platforms_expOMAPL138 -> gnu_targets_arm;
803 ti_platforms_expOMAPL138 -> ti_targets_arm_elf;
804
805 edge [style=solid, color=blue]
806 ti_catalog_arm -> xdc_platform;
807 ti_catalog_arm_peripherals_timers [shape=record,label="ti.catalog.arm.peripherals.timers|", URL="../D:\CCSV4_install\xdctools_3_20_01_42_eng\packages\ti\catalog\arm\peripherals\timers\package/package.rel.svg"];
808 ti_catalog_arm -> ti_catalog_arm_peripherals_timers;
809
810 edge [style=solid, color=lightgrey]
811 ti_catalog_arm -> ti_targets_arm;
812 ti_catalog_arm -> ti_catalog_arm_peripherals_timers;
813 ti_catalog_arm -> ti_targets_elf;
814 ti_catalog_arm -> gnu_targets;
815 ti_catalog_arm -> xdc_services_intern_gen;
816 ti_catalog_arm -> xdc_services_global;
817 ti_catalog_arm -> xdc_platform;
818 ti_catalog_arm -> xdc_shelf;
819 ti_catalog_arm -> xdc_services_intern_xsr;
820 ti_catalog_arm -> ti_catalog;
821 ti_catalog_arm -> ti_targets;
822 ti_catalog_arm -> xdc_services_spec;
823 ti_catalog_arm -> microsoft_targets;
824 ti_catalog_arm -> xdc_services_intern_cmd;
825 ti_catalog_arm -> gnu_targets_arm;
826 ti_catalog_arm -> ti_targets_arm_elf;
827
828 edge [style=solid, color=blue]
829
830 edge [style=solid, color=lightgrey]
831 ti_catalog_arm_peripherals_timers -> microsoft_targets;
832 ti_catalog_arm_peripherals_timers -> gnu_targets;
833 ti_catalog_arm_peripherals_timers -> gnu_targets_arm;
834 ti_catalog_arm_peripherals_timers -> xdc_services_global;
835 ti_catalog_arm_peripherals_timers -> xdc_platform;
836 ti_catalog_arm_peripherals_timers -> ti_targets_arm_elf;
837 ti_catalog_arm_peripherals_timers -> ti_targets_elf;
838 ti_catalog_arm_peripherals_timers -> xdc_services_intern_cmd;
839 ti_catalog_arm_peripherals_timers -> ti_targets_arm;
840 ti_catalog_arm_peripherals_timers -> xdc_services_intern_xsr;
841 ti_catalog_arm_peripherals_timers -> xdc_shelf;
842 ti_catalog_arm_peripherals_timers -> ti_targets;
843 ti_catalog_arm_peripherals_timers -> xdc_services_intern_gen;
844 ti_catalog_arm_peripherals_timers -> xdc_services_spec;
845
846 edge [style=solid, color=blue]
847
848 edge [style=solid, color=lightgrey]
849
850 edge [style=solid, color=blue]
851
852 edge [style=solid, color=lightgrey]
853
854 edge [style=solid, color=blue]
855
856 edge [style=solid, color=lightgrey]
857
858 edge [style=solid, color=blue]
859
860 edge [style=solid, color=lightgrey]
861
862 edge [style=solid, color=blue]
863 ti_platforms_sdp4430 -> ti_catalog_c6000;
864 ti_platforms_sdp4430 -> ti_catalog_arm_cortexm3;
865 ti_platforms_sdp4430 -> xdc_platform;
866
867 edge [style=solid, color=lightgrey]
868 ti_platforms_sdp4430 -> ti_targets_arm;
869 ti_platforms_sdp4430 -> ti_targets_elf;
870 ti_platforms_sdp4430 -> gnu_targets;
871 ti_platforms_sdp4430 -> xdc_services_intern_gen;
872 ti_platforms_sdp4430 -> xdc_services_global;
873 ti_platforms_sdp4430 -> xdc_platform;
874 ti_platforms_sdp4430 -> xdc_shelf;
875 ti_platforms_sdp4430 -> xdc_services_intern_xsr;
876 ti_platforms_sdp4430 -> ti_targets;
877 ti_platforms_sdp4430 -> xdc_services_spec;
878 ti_platforms_sdp4430 -> microsoft_targets;
879 ti_platforms_sdp4430 -> ti_catalog_c6000;
880 ti_platforms_sdp4430 -> xdc_services_intern_cmd;
881 ti_platforms_sdp4430 -> gnu_targets_arm;
882 ti_platforms_sdp4430 -> ti_catalog_arm_cortexm3;
883 ti_platforms_sdp4430 -> ti_targets_arm_elf;
884
885 edge [style=solid, color=blue]
886 ti_catalog_arm_cortexm3 -> xdc_platform;
887 ti_catalog_arm_cortexm3 -> ti_catalog_peripherals_hdvicp2;
888
889 edge [style=solid, color=lightgrey]
890 ti_catalog_arm_cortexm3 -> ti_targets_arm;
891 ti_catalog_arm_cortexm3 -> ti_catalog_arm_peripherals_timers;
892 ti_catalog_arm_cortexm3 -> ti_targets_elf;
893 ti_catalog_arm_cortexm3 -> gnu_targets;
894 ti_catalog_arm_cortexm3 -> xdc_services_intern_gen;
895 ti_catalog_arm_cortexm3 -> xdc_services_global;
896 ti_catalog_arm_cortexm3 -> xdc_platform;
897 ti_catalog_arm_cortexm3 -> xdc_shelf;
898 ti_catalog_arm_cortexm3 -> xdc_services_intern_xsr;
899 ti_catalog_arm_cortexm3 -> ti_catalog_peripherals_hdvicp2;
900 ti_catalog_arm_cortexm3 -> ti_catalog;
901 ti_catalog_arm_cortexm3 -> ti_targets;
902 ti_catalog_arm_cortexm3 -> xdc_services_spec;
903 ti_catalog_arm_cortexm3 -> microsoft_targets;
904 ti_catalog_arm_cortexm3 -> xdc_services_intern_cmd;
905 ti_catalog_arm_cortexm3 -> gnu_targets_arm;
906 ti_catalog_arm_cortexm3 -> ti_targets_arm_elf;
907
908 edge [style=solid, color=blue]
909 ti_platforms_padk6727 -> ti_catalog_c6000;
910 ti_platforms_padk6727 -> xdc_platform;
911
912 edge [style=solid, color=lightgrey]
913 ti_platforms_padk6727 -> ti_targets_arm;
914 ti_platforms_padk6727 -> ti_targets_elf;
915 ti_platforms_padk6727 -> gnu_targets;
916 ti_platforms_padk6727 -> xdc_services_intern_gen;
917 ti_platforms_padk6727 -> xdc_services_global;
918 ti_platforms_padk6727 -> xdc_platform;
919 ti_platforms_padk6727 -> xdc_shelf;
920 ti_platforms_padk6727 -> xdc_services_intern_xsr;
921 ti_platforms_padk6727 -> ti_targets;
922 ti_platforms_padk6727 -> xdc_services_spec;
923 ti_platforms_padk6727 -> microsoft_targets;
924 ti_platforms_padk6727 -> ti_catalog_c6000;
925 ti_platforms_padk6727 -> xdc_services_intern_cmd;
926 ti_platforms_padk6727 -> gnu_targets_arm;
927 ti_platforms_padk6727 -> ti_targets_arm_elf;
928
929 edge [style=solid, color=blue]
930 ti_platforms_evm6472 -> ti_catalog_c6000;
931 ti_platforms_evm6472 -> xdc_platform;
932
933 edge [style=solid, color=lightgrey]
934 ti_platforms_evm6472 -> ti_targets_arm;
935 ti_platforms_evm6472 -> ti_targets_elf;
936 ti_platforms_evm6472 -> gnu_targets;
937 ti_platforms_evm6472 -> xdc_services_intern_gen;
938 ti_platforms_evm6472 -> xdc_services_global;
939 ti_platforms_evm6472 -> xdc_platform;
940 ti_platforms_evm6472 -> xdc_shelf;
941 ti_platforms_evm6472 -> xdc_services_intern_xsr;
942 ti_platforms_evm6472 -> ti_targets;
943 ti_platforms_evm6472 -> xdc_services_spec;
944 ti_platforms_evm6472 -> microsoft_targets;
945 ti_platforms_evm6472 -> ti_catalog_c6000;
946 ti_platforms_evm6472 -> xdc_services_intern_cmd;
947 ti_platforms_evm6472 -> gnu_targets_arm;
948 ti_platforms_evm6472 -> ti_targets_arm_elf;
949
950 edge [style=solid, color=blue]
951 ti_targets_msp430_rts430 -> xdc_runtime;
952
953 edge [style=solid, color=lightgrey]
954 ti_targets_msp430_rts430 -> xdc_shelf;
955 ti_targets_msp430_rts430 -> ti_targets;
956 ti_targets_msp430_rts430 -> xdc_runtime;
957 ti_targets_msp430_rts430 -> xdc_runtime_knl;
958 ti_targets_msp430_rts430 -> xdc_services_spec;
959 ti_targets_msp430_rts430 -> xdc_services_intern_cmd;
960 ti_targets_msp430_rts430 -> xdc_services_global;
961 ti_targets_msp430_rts430 -> xdc_services_intern_xsr;
962 ti_targets_msp430_rts430 -> ti_targets_msp430;
963 ti_targets_msp430_rts430 -> xdc_rov;
964 ti_targets_msp430_rts430 -> xdc_services_intern_gen;
965
966 edge [style=solid, color=blue]
967 ti_platforms_exp430F5438 -> ti_catalog_msp430;
968 ti_platforms_exp430F5438 -> xdc_platform;
969
970 edge [style=solid, color=lightgrey]
971 ti_platforms_exp430F5438 -> xdc_services_global;
972 ti_platforms_exp430F5438 -> xdc_services_spec;
973 ti_platforms_exp430F5438 -> ti_catalog_msp430_init;
974 ti_platforms_exp430F5438 -> ti_catalog_msp430;
975 ti_platforms_exp430F5438 -> xdc_services_intern_xsr;
976 ti_platforms_exp430F5438 -> xdc_rov;
977 ti_platforms_exp430F5438 -> ti_catalog_msp430_peripherals_clock;
978 ti_platforms_exp430F5438 -> xdc_platform;
979 ti_platforms_exp430F5438 -> ti_catalog_msp430_peripherals_timer;
980 ti_platforms_exp430F5438 -> xdc_services_getset;
981 ti_platforms_exp430F5438 -> xdc_services_intern_cmd;
982 ti_platforms_exp430F5438 -> ti_catalog_msp430_peripherals_oa;
983 ti_platforms_exp430F5438 -> ti_catalog_msp430_peripherals_watchdog;
984 ti_platforms_exp430F5438 -> ti_catalog_msp430_peripherals_communication;
985 ti_platforms_exp430F5438 -> ti_catalog_msp430_peripherals_adc;
986 ti_platforms_exp430F5438 -> ti_catalog_msp430_peripherals_special_function;
987 ti_platforms_exp430F5438 -> xdc_runtime;
988 ti_platforms_exp430F5438 -> xdc_shelf;
989 ti_platforms_exp430F5438 -> ti_catalog_msp430_peripherals_gpio;
990 ti_platforms_exp430F5438 -> xdc_services_intern_gen;
991
992 edge [style=solid, color=blue]
993 ti_catalog_msp430_peripherals_watchdog -> ti_catalog_msp430_peripherals_clock;
994 ti_catalog_msp430_peripherals_watchdog -> ti_catalog_msp430_peripherals_special_function;
995
996 edge [style=solid, color=lightgrey]
997 ti_catalog_msp430_peripherals_watchdog -> xdc_shelf;
998 ti_catalog_msp430_peripherals_watchdog -> xdc_services_spec;
999 ti_catalog_msp430_peripherals_watchdog -> ti_catalog_msp430_peripherals_special_function;
1000 ti_catalog_msp430_peripherals_watchdog -> xdc_services_getset;
1001 ti_catalog_msp430_peripherals_watchdog -> xdc_services_intern_cmd;
1002 ti_catalog_msp430_peripherals_watchdog -> ti_catalog_msp430_peripherals_clock;
1003 ti_catalog_msp430_peripherals_watchdog -> xdc_services_global;
1004 ti_catalog_msp430_peripherals_watchdog -> xdc_services_intern_xsr;
1005 ti_catalog_msp430_peripherals_watchdog -> xdc_platform;
1006 ti_catalog_msp430_peripherals_watchdog -> xdc_services_intern_gen;
1007
1008 edge [style=solid, color=blue]
1009 ti_catalog_msp430_peripherals_timer -> ti_catalog_msp430_peripherals_clock;
1010
1011 edge [style=solid, color=lightgrey]
1012 ti_catalog_msp430_peripherals_timer -> xdc_shelf;
1013 ti_catalog_msp430_peripherals_timer -> xdc_services_spec;
1014 ti_catalog_msp430_peripherals_timer -> ti_catalog_msp430_peripherals_special_function;
1015 ti_catalog_msp430_peripherals_timer -> xdc_services_getset;
1016 ti_catalog_msp430_peripherals_timer -> xdc_services_intern_cmd;
1017 ti_catalog_msp430_peripherals_timer -> ti_catalog_msp430_peripherals_clock;
1018 ti_catalog_msp430_peripherals_timer -> xdc_services_global;
1019 ti_catalog_msp430_peripherals_timer -> xdc_services_intern_xsr;
1020 ti_catalog_msp430_peripherals_timer -> xdc_platform;
1021 ti_catalog_msp430_peripherals_timer -> xdc_services_intern_gen;
1022
1023 edge [style=solid, color=blue]
1024
1025 edge [style=solid, color=lightgrey]
1026
1027 edge [style=solid, color=blue]
1028
1029 edge [style=solid, color=lightgrey]
1030 ti_catalog_msp430_peripherals_special_function -> xdc_shelf;
1031 ti_catalog_msp430_peripherals_special_function -> xdc_services_spec;
1032 ti_catalog_msp430_peripherals_special_function -> xdc_services_intern_cmd;
1033 ti_catalog_msp430_peripherals_special_function -> xdc_services_global;
1034 ti_catalog_msp430_peripherals_special_function -> xdc_services_intern_xsr;
1035 ti_catalog_msp430_peripherals_special_function -> xdc_platform;
1036 ti_catalog_msp430_peripherals_special_function -> xdc_services_intern_gen;
1037
1038 edge [style=solid, color=blue]
1039
1040 edge [style=solid, color=lightgrey]
1041 ti_catalog_msp430_peripherals_oa -> xdc_shelf;
1042 ti_catalog_msp430_peripherals_oa -> xdc_services_spec;
1043 ti_catalog_msp430_peripherals_oa -> xdc_services_intern_cmd;
1044 ti_catalog_msp430_peripherals_oa -> xdc_services_global;
1045 ti_catalog_msp430_peripherals_oa -> xdc_services_intern_xsr;
1046 ti_catalog_msp430_peripherals_oa -> xdc_platform;
1047 ti_catalog_msp430_peripherals_oa -> xdc_services_intern_gen;
1048
1049 edge [style=solid, color=blue]
1050
1051 edge [style=solid, color=lightgrey]
1052 ti_catalog_msp430_peripherals_memory -> xdc_shelf;
1053 ti_catalog_msp430_peripherals_memory -> xdc_services_spec;
1054 ti_catalog_msp430_peripherals_memory -> ti_catalog_msp430_peripherals_special_function;
1055 ti_catalog_msp430_peripherals_memory -> xdc_services_getset;
1056 ti_catalog_msp430_peripherals_memory -> xdc_services_intern_cmd;
1057 ti_catalog_msp430_peripherals_memory -> ti_catalog_msp430_peripherals_clock;
1058 ti_catalog_msp430_peripherals_memory -> xdc_services_global;
1059 ti_catalog_msp430_peripherals_memory -> xdc_services_intern_xsr;
1060 ti_catalog_msp430_peripherals_memory -> xdc_platform;
1061 ti_catalog_msp430_peripherals_memory -> xdc_services_intern_gen;
1062
1063 edge [style=solid, color=blue]
1064
1065 edge [style=solid, color=lightgrey]
1066 ti_catalog_msp430_peripherals_gpio -> xdc_shelf;
1067 ti_catalog_msp430_peripherals_gpio -> xdc_services_spec;
1068 ti_catalog_msp430_peripherals_gpio -> xdc_services_intern_cmd;
1069 ti_catalog_msp430_peripherals_gpio -> xdc_services_global;
1070 ti_catalog_msp430_peripherals_gpio -> xdc_services_intern_xsr;
1071 ti_catalog_msp430_peripherals_gpio -> xdc_platform;
1072 ti_catalog_msp430_peripherals_gpio -> xdc_services_intern_gen;
1073
1074 edge [style=solid, color=blue]
1075
1076 edge [style=solid, color=lightgrey]
1077
1078 edge [style=solid, color=blue]
1079
1080 edge [style=solid, color=lightgrey]
1081
1082 edge [style=solid, color=blue]
1083 ti_catalog_msp430_peripherals_communication -> ti_catalog_msp430_peripherals_clock;
1084 ti_catalog_msp430_peripherals_communication -> ti_catalog_msp430_peripherals_special_function;
1085
1086 edge [style=solid, color=lightgrey]
1087 ti_catalog_msp430_peripherals_communication -> xdc_shelf;
1088 ti_catalog_msp430_peripherals_communication -> xdc_services_spec;
1089 ti_catalog_msp430_peripherals_communication -> ti_catalog_msp430_peripherals_special_function;
1090 ti_catalog_msp430_peripherals_communication -> xdc_services_getset;
1091 ti_catalog_msp430_peripherals_communication -> xdc_services_intern_cmd;
1092 ti_catalog_msp430_peripherals_communication -> ti_catalog_msp430_peripherals_clock;
1093 ti_catalog_msp430_peripherals_communication -> xdc_services_global;
1094 ti_catalog_msp430_peripherals_communication -> xdc_services_intern_xsr;
1095 ti_catalog_msp430_peripherals_communication -> xdc_platform;
1096 ti_catalog_msp430_peripherals_communication -> xdc_services_intern_gen;
1097
1098 edge [style=solid, color=blue]
1099 ti_catalog_msp430_peripherals_clock -> ti_catalog_msp430_peripherals_special_function;
1100
1101 edge [style=solid, color=lightgrey]
1102 ti_catalog_msp430_peripherals_clock -> xdc_shelf;
1103 ti_catalog_msp430_peripherals_clock -> xdc_services_spec;
1104 ti_catalog_msp430_peripherals_clock -> ti_catalog_msp430_peripherals_special_function;
1105 ti_catalog_msp430_peripherals_clock -> xdc_services_getset;
1106 ti_catalog_msp430_peripherals_clock -> xdc_services_intern_cmd;
1107 ti_catalog_msp430_peripherals_clock -> xdc_services_global;
1108 ti_catalog_msp430_peripherals_clock -> xdc_services_intern_xsr;
1109 ti_catalog_msp430_peripherals_clock -> xdc_platform;
1110 ti_catalog_msp430_peripherals_clock -> xdc_services_intern_gen;
1111
1112 edge [style=solid, color=blue]
1113
1114 edge [style=solid, color=lightgrey]
1115 ti_catalog_msp430_peripherals_adc -> xdc_shelf;
1116 ti_catalog_msp430_peripherals_adc -> xdc_services_spec;
1117 ti_catalog_msp430_peripherals_adc -> ti_catalog_msp430_peripherals_special_function;
1118 ti_catalog_msp430_peripherals_adc -> ti_catalog_msp430_peripherals_timer;
1119 ti_catalog_msp430_peripherals_adc -> xdc_services_getset;
1120 ti_catalog_msp430_peripherals_adc -> xdc_services_intern_cmd;
1121 ti_catalog_msp430_peripherals_adc -> ti_catalog_msp430_peripherals_clock;
1122 ti_catalog_msp430_peripherals_adc -> xdc_services_global;
1123 ti_catalog_msp430_peripherals_adc -> xdc_services_intern_xsr;
1124 ti_catalog_msp430_peripherals_adc -> xdc_platform;
1125 ti_catalog_msp430_peripherals_adc -> xdc_services_intern_gen;
1126
1127 edge [style=solid, color=blue]
1128 ti_catalog_msp430_init -> xdc_runtime;
1129
1130 edge [style=solid, color=lightgrey]
1131 ti_catalog_msp430_init -> xdc_shelf;
1132 ti_catalog_msp430_init -> ti_targets;
1133 ti_catalog_msp430_init -> xdc_runtime;
1134 ti_catalog_msp430_init -> xdc_services_spec;
1135 ti_catalog_msp430_init -> xdc_services_intern_cmd;
1136 ti_catalog_msp430_init -> xdc_services_global;
1137 ti_catalog_msp430_init -> xdc_services_intern_xsr;
1138 ti_catalog_msp430_init -> ti_targets_msp430;
1139 ti_catalog_msp430_init -> xdc_rov;
1140 ti_catalog_msp430_init -> xdc_services_intern_gen;
1141
1142 edge [style=solid, color=blue]
1143 ti_catalog_msp430 -> xdc_platform;
1144 ti_catalog_msp430 -> ti_catalog;
1145 ti_catalog_msp430 -> ti_catalog_msp430_peripherals_timer;
1146 ti_catalog_msp430 -> ti_catalog_msp430_peripherals_adc;
1147 ti_catalog_msp430 -> ti_catalog_msp430_peripherals_clock;
1148 ti_catalog_msp430 -> ti_catalog_msp430_peripherals_communication;
1149 ti_catalog_msp430 -> ti_catalog_msp430_peripherals_gpio;
1150 ti_catalog_msp430 -> ti_catalog_msp430_peripherals_oa;
1151 ti_catalog_msp430 -> ti_catalog_msp430_peripherals_special_function;
1152 ti_catalog_msp430 -> ti_catalog_msp430_peripherals_watchdog;
1153
1154 edge [style=solid, color=lightgrey]
1155 ti_catalog_msp430 -> xdc_services_global;
1156 ti_catalog_msp430 -> xdc_services_spec;
1157 ti_catalog_msp430 -> xdc_services_intern_xsr;
1158 ti_catalog_msp430 -> ti_catalog_msp430_peripherals_clock;
1159 ti_catalog_msp430 -> xdc_platform;
1160 ti_catalog_msp430 -> ti_catalog_msp430_peripherals_timer;
1161 ti_catalog_msp430 -> xdc_services_getset;
1162 ti_catalog_msp430 -> xdc_services_intern_cmd;
1163 ti_catalog_msp430 -> ti_catalog_msp430_peripherals_oa;
1164 ti_catalog_msp430 -> ti_catalog;
1165 ti_catalog_msp430 -> ti_catalog_msp430_peripherals_watchdog;
1166 ti_catalog_msp430 -> ti_catalog_msp430_peripherals_communication;
1167 ti_catalog_msp430 -> ti_catalog_msp430_peripherals_memory;
1168 ti_catalog_msp430 -> ti_catalog_msp430_peripherals_adc;
1169 ti_catalog_msp430 -> ti_catalog_msp430_peripherals_special_function;
1170 ti_catalog_msp430 -> ti_catalog_msp430_peripherals_gpio;
1171 ti_catalog_msp430 -> xdc_shelf;
1172 ti_catalog_msp430 -> xdc_services_intern_gen;
1173
1174 edge [style=solid, color=blue]
1175 ti_platforms_evmDA830 -> ti_catalog_c6000;
1176 ti_platforms_evmDA830 -> xdc_platform;
1177
1178 edge [style=solid, color=lightgrey]
1179 ti_platforms_evmDA830 -> ti_targets_arm;
1180 ti_platforms_evmDA830 -> ti_targets_elf;
1181 ti_platforms_evmDA830 -> gnu_targets;
1182 ti_platforms_evmDA830 -> xdc_services_intern_gen;
1183 ti_platforms_evmDA830 -> xdc_services_global;
1184 ti_platforms_evmDA830 -> xdc_platform;
1185 ti_platforms_evmDA830 -> xdc_shelf;
1186 ti_platforms_evmDA830 -> xdc_services_intern_xsr;
1187 ti_platforms_evmDA830 -> ti_targets;
1188 ti_platforms_evmDA830 -> xdc_services_spec;
1189 ti_platforms_evmDA830 -> microsoft_targets;
1190 ti_platforms_evmDA830 -> ti_catalog_c6000;
1191 ti_platforms_evmDA830 -> xdc_services_intern_cmd;
1192 ti_platforms_evmDA830 -> gnu_targets_arm;
1193 ti_platforms_evmDA830 -> ti_targets_arm_elf;
1194
1195 edge [style=solid, color=blue]
1196 ti_platforms_evmDM6437 -> ti_catalog_c6000;
1197 ti_platforms_evmDM6437 -> xdc_platform;
1198
1199 edge [style=solid, color=lightgrey]
1200 ti_platforms_evmDM6437 -> ti_targets_arm;
1201 ti_platforms_evmDM6437 -> ti_targets_elf;
1202 ti_platforms_evmDM6437 -> gnu_targets;
1203 ti_platforms_evmDM6437 -> xdc_services_intern_gen;
1204 ti_platforms_evmDM6437 -> xdc_services_global;
1205 ti_platforms_evmDM6437 -> xdc_platform;
1206 ti_platforms_evmDM6437 -> xdc_shelf;
1207 ti_platforms_evmDM6437 -> xdc_services_intern_xsr;
1208 ti_platforms_evmDM6437 -> ti_targets;
1209 ti_platforms_evmDM6437 -> xdc_services_spec;
1210 ti_platforms_evmDM6437 -> microsoft_targets;
1211 ti_platforms_evmDM6437 -> ti_catalog_c6000;
1212 ti_platforms_evmDM6437 -> xdc_services_intern_cmd;
1213 ti_platforms_evmDM6437 -> gnu_targets_arm;
1214 ti_platforms_evmDM6437 -> ti_targets_arm_elf;
1215
1216 edge [style=solid, color=blue]
1217 ti_platforms_evmDM6446 -> xdc_platform;
1218
1219 edge [style=solid, color=lightgrey]
1220 ti_platforms_evmDM6446 -> microsoft_targets;
1221 ti_platforms_evmDM6446 -> gnu_targets;
1222 ti_platforms_evmDM6446 -> gnu_targets_arm;
1223 ti_platforms_evmDM6446 -> xdc_services_global;
1224 ti_platforms_evmDM6446 -> xdc_platform;
1225 ti_platforms_evmDM6446 -> ti_targets_arm_elf;
1226 ti_platforms_evmDM6446 -> ti_targets_elf;
1227 ti_platforms_evmDM6446 -> xdc_services_intern_cmd;
1228 ti_platforms_evmDM6446 -> ti_targets_arm;
1229 ti_platforms_evmDM6446 -> xdc_services_intern_xsr;
1230 ti_platforms_evmDM6446 -> xdc_shelf;
1231 ti_platforms_evmDM6446 -> ti_targets;
1232 ti_platforms_evmDM6446 -> xdc_services_intern_gen;
1233 ti_platforms_evmDM6446 -> xdc_services_spec;
1234
1235 edge [style=solid, color=blue]
1236 ti_targets_rts6000 -> xdc_runtime;
1237
1238 edge [style=solid, color=lightgrey]
1239 ti_targets_rts6000 -> microsoft_targets;
1240 ti_targets_rts6000 -> xdc_shelf;
1241 ti_targets_rts6000 -> gnu_targets_arm;
1242 ti_targets_rts6000 -> ti_targets;
1243 ti_targets_rts6000 -> xdc_services_global;
1244 ti_targets_rts6000 -> xdc_services_intern_gen;
1245 ti_targets_rts6000 -> ti_targets_arm;
1246 ti_targets_rts6000 -> ti_targets_elf;
1247 ti_targets_rts6000 -> xdc_runtime;
1248 ti_targets_rts6000 -> ti_targets_arm_elf;
1249 ti_targets_rts6000 -> xdc_services_intern_xsr;
1250 ti_targets_rts6000 -> gnu_targets;
1251 ti_targets_rts6000 -> xdc_services_spec;
1252 ti_targets_rts6000 -> xdc_rov;
1253 ti_targets_rts6000 -> xdc_services_intern_cmd;
1254 ti_targets_rts6000 -> xdc_runtime_knl;
1255 ti_targets_rts6000 -> microsoft_targets_arm;
1256
1257 edge [style=solid, color=blue]
1258 ti_platforms_dsk6416 -> ti_catalog_c6000;
1259 ti_platforms_dsk6416 -> xdc_platform;
1260
1261 edge [style=solid, color=lightgrey]
1262 ti_platforms_dsk6416 -> ti_targets_arm;
1263 ti_platforms_dsk6416 -> ti_targets_elf;
1264 ti_platforms_dsk6416 -> gnu_targets;
1265 ti_platforms_dsk6416 -> xdc_services_intern_gen;
1266 ti_platforms_dsk6416 -> xdc_services_global;
1267 ti_platforms_dsk6416 -> xdc_platform;
1268 ti_platforms_dsk6416 -> xdc_shelf;
1269 ti_platforms_dsk6416 -> xdc_services_intern_xsr;
1270 ti_platforms_dsk6416 -> ti_targets;
1271 ti_platforms_dsk6416 -> xdc_services_spec;
1272 ti_platforms_dsk6416 -> microsoft_targets;
1273 ti_platforms_dsk6416 -> ti_catalog_c6000;
1274 ti_platforms_dsk6416 -> xdc_services_intern_cmd;
1275 ti_platforms_dsk6416 -> gnu_targets_arm;
1276 ti_platforms_dsk6416 -> ti_targets_arm_elf;
1277
1278 edge [style=solid, color=blue]
1279 ti_catalog_c6000 -> xdc_platform;
1280
1281 edge [style=solid, color=lightgrey]
1282 ti_catalog_c6000 -> ti_targets_arm;
1283 ti_catalog_c6000 -> ti_targets_elf;
1284 ti_catalog_c6000 -> gnu_targets;
1285 ti_catalog_c6000 -> xdc_services_intern_gen;
1286 ti_catalog_c6000 -> xdc_services_global;
1287 ti_catalog_c6000 -> xdc_platform;
1288 ti_catalog_c6000 -> xdc_shelf;
1289 ti_catalog_c6000 -> xdc_services_intern_xsr;
1290 ti_catalog_c6000 -> ti_catalog_peripherals_hdvicp2;
1291 ti_catalog_c6000 -> ti_catalog;
1292 ti_catalog_c6000 -> ti_targets;
1293 ti_catalog_c6000 -> xdc_services_spec;
1294 ti_catalog_c6000 -> microsoft_targets;
1295 ti_catalog_c6000 -> xdc_services_intern_cmd;
1296 ti_catalog_c6000 -> gnu_targets_arm;
1297 ti_catalog_c6000 -> ti_targets_arm_elf;
1298
1299 edge [style=solid, color=blue]
1300 ti_platforms_ezdsp28335 -> ti_catalog_c2800;
1301 ti_platforms_ezdsp28335 -> xdc_platform;
1302
1303 edge [style=solid, color=lightgrey]
1304 ti_platforms_ezdsp28335 -> ti_targets_arm;
1305 ti_platforms_ezdsp28335 -> ti_catalog_c2800;
1306 ti_platforms_ezdsp28335 -> ti_targets_elf;
1307 ti_platforms_ezdsp28335 -> gnu_targets;
1308 ti_platforms_ezdsp28335 -> xdc_services_intern_gen;
1309 ti_platforms_ezdsp28335 -> xdc_rov;
1310 ti_platforms_ezdsp28335 -> xdc_services_global;
1311 ti_platforms_ezdsp28335 -> xdc_platform;
1312 ti_platforms_ezdsp28335 -> xdc_shelf;
1313 ti_platforms_ezdsp28335 -> xdc_services_intern_xsr;
1314 ti_platforms_ezdsp28335 -> ti_targets;
1315 ti_platforms_ezdsp28335 -> xdc_services_spec;
1316 ti_platforms_ezdsp28335 -> microsoft_targets;
1317 ti_platforms_ezdsp28335 -> xdc_services_intern_cmd;
1318 ti_platforms_ezdsp28335 -> gnu_targets_arm;
1319 ti_platforms_ezdsp28335 -> ti_catalog_c2800_init;
1320 ti_platforms_ezdsp28335 -> ti_targets_arm_elf;
1321
1322 edge [style=solid, color=blue]
1323
1324 edge [style=solid, color=lightgrey]
1325 xdc_services_io -> xdc_services_intern_gen;
1326 xdc_services_io -> gnu_targets;
1327 microsoft_targets_rts [shape=record,label="microsoft.targets.rts|1, 0, 0, 0", URL="../D:\CCSV4_install\xdctools_3_20_01_42_eng\packages\microsoft\targets\rts\package/package.rel.svg"];
1328 xdc_services_io -> microsoft_targets_rts;
1329 xdc_services_io -> xdc_platform;
1330 xdc_services_io -> xdc_services_global;
1331 xdc_services_io -> xdc_cfg;
1332 xdc_services_io -> xdc_services_intern_xsr;
1333 host_platforms_PC [shape=record,label="host.platforms.PC|1, 0, 0", URL="../D:\CCSV4_install\xdctools_3_20_01_42_eng\packages\host\platforms\PC\package/package.rel.svg"];
1334 xdc_services_io -> host_platforms_PC;
1335 xdc_corevers [shape=record,label="xdc.corevers|16, 0, 2, 0", URL="../D:\CCSV4_install\xdctools_3_20_01_42_eng\packages\xdc\corevers\package/package.rel.svg"];
1336 xdc_services_io -> xdc_corevers;
1337 xdc_services_io -> xdc_services_intern_cmd;
1338 xdc_services_io -> xdc_services_spec;
1339 xdc_services_io -> xdc_shelf;
1340 xdc_services_io -> microsoft_targets;
1341 xdc_services_io -> xdc_utils_tconf;
1342 xdc_services_io -> xdc_runtime;
1343 xdc_services_io -> xdc_rov;
1344
1345 edge [style=solid, color=blue]
1346
1347 edge [style=solid, color=lightgrey]
1348 xdc_corevers -> xdc_shelf;
1349 xdc_corevers -> xdc_services_spec;
1350 xdc_corevers -> xdc_utils_tconf;
1351 xdc_corevers -> xdc_services_global;
1352 xdc_corevers -> xdc_services_intern_cmd;
1353 xdc_corevers -> xdc_services_intern_xsr;
1354 xdc_corevers -> xdc_services_intern_gen;
1355
1356 edge [style=solid, color=blue]
1357 host_platforms_PC -> xdc_platform;
1358
1359 edge [style=solid, color=lightgrey]
1360 host_platforms_PC -> xdc_shelf;
1361 host_platforms_PC -> xdc_services_spec;
1362 host_platforms_PC -> xdc_utils_tconf;
1363 host_platforms_PC -> xdc_platform;
1364 host_platforms_PC -> xdc_services_global;
1365 host_platforms_PC -> xdc_services_intern_cmd;
1366 host_platforms_PC -> gnu_targets;
1367 host_platforms_PC -> xdc_services_intern_xsr;
1368 host_platforms_PC -> xdc_services_intern_gen;
1369 host_platforms_PC -> microsoft_targets;
1370
1371 edge [style=solid, color=blue]
1372 microsoft_targets_rts -> xdc_runtime;
1373
1374 edge [style=solid, color=lightgrey]
1375 microsoft_targets_rts -> microsoft_targets;
1376 microsoft_targets_rts -> xdc_shelf;
1377 microsoft_targets_rts -> gnu_targets_arm;
1378 microsoft_targets_rts -> ti_targets;
1379 microsoft_targets_rts -> xdc_services_global;
1380 microsoft_targets_rts -> xdc_services_intern_gen;
1381 microsoft_targets_rts -> ti_targets_arm;
1382 microsoft_targets_rts -> ti_targets_elf;
1383 microsoft_targets_rts -> xdc_runtime;
1384 microsoft_targets_rts -> ti_targets_arm_elf;
1385 microsoft_targets_rts -> xdc_services_intern_xsr;
1386 microsoft_targets_rts -> gnu_targets;
1387 microsoft_targets_rts -> xdc_services_spec;
1388 microsoft_targets_rts -> xdc_rov;
1389 microsoft_targets_rts -> xdc_services_intern_cmd;
1390 microsoft_targets_rts -> xdc_runtime_knl;
1391 microsoft_targets_rts -> microsoft_targets_arm;
1392
1393 edge [style=solid, color=blue]
1394
1395 edge [style=solid, color=lightgrey]
1396 xdc_services_getset -> xdc_shelf;
1397 xdc_services_getset -> xdc_services_spec;
1398 xdc_services_getset -> xdc_utils_tconf;
1399 xdc_services_getset -> xdc_services_global;
1400 xdc_services_getset -> xdc_services_intern_cmd;
1401 xdc_services_getset -> xdc_services_intern_xsr;
1402 xdc_services_getset -> xdc_services_intern_gen;
1403
1404 edge [style=solid, color=blue]
1405
1406 edge [style=solid, color=lightgrey]
1407 xdc_rov -> xdc_shelf;
1408 xdc_rov -> xdc_services_spec;
1409 xdc_rov -> xdc_utils_tconf;
1410 xdc_rov -> xdc_services_global;
1411 xdc_rov -> xdc_services_intern_cmd;
1412 xdc_rov -> gnu_targets;
1413 xdc_rov -> xdc_services_intern_xsr;
1414 xdc_rov -> xdc_services_intern_gen;
1415 xdc_rov -> microsoft_targets;
1416
1417 edge [style=solid, color=blue]
1418 ti_targets_rts2800 -> xdc_runtime;
1419
1420 edge [style=solid, color=lightgrey]
1421 ti_targets_rts2800 -> microsoft_targets;
1422 ti_targets_rts2800 -> xdc_shelf;
1423 ti_targets_rts2800 -> gnu_targets_arm;
1424 ti_targets_rts2800 -> ti_targets;
1425 ti_targets_rts2800 -> xdc_services_global;
1426 ti_targets_rts2800 -> xdc_services_intern_gen;
1427 ti_targets_rts2800 -> ti_targets_arm;
1428 ti_targets_rts2800 -> ti_targets_elf;
1429 ti_targets_rts2800 -> xdc_runtime;
1430 ti_targets_rts2800 -> ti_targets_arm_elf;
1431 ti_targets_rts2800 -> xdc_services_intern_xsr;
1432 ti_targets_rts2800 -> gnu_targets;
1433 ti_targets_rts2800 -> xdc_services_spec;
1434 ti_targets_rts2800 -> xdc_rov;
1435 ti_targets_rts2800 -> xdc_services_intern_cmd;
1436 ti_targets_rts2800 -> xdc_runtime_knl;
1437 ti_targets_rts2800 -> microsoft_targets_arm;
1438
1439 edge [style=solid, color=blue]
1440 ti_platforms_ezdsp28235 -> ti_catalog_c2800;
1441 ti_platforms_ezdsp28235 -> xdc_platform;
1442
1443 edge [style=solid, color=lightgrey]
1444 ti_platforms_ezdsp28235 -> ti_targets_arm;
1445 ti_platforms_ezdsp28235 -> ti_catalog_c2800;
1446 ti_platforms_ezdsp28235 -> ti_targets_elf;
1447 ti_platforms_ezdsp28235 -> gnu_targets;
1448 ti_platforms_ezdsp28235 -> xdc_services_intern_gen;
1449 ti_platforms_ezdsp28235 -> xdc_rov;
1450 ti_platforms_ezdsp28235 -> xdc_services_global;
1451 ti_platforms_ezdsp28235 -> xdc_platform;
1452 ti_platforms_ezdsp28235 -> xdc_shelf;
1453 ti_platforms_ezdsp28235 -> xdc_services_intern_xsr;
1454 ti_platforms_ezdsp28235 -> ti_targets;
1455 ti_platforms_ezdsp28235 -> xdc_services_spec;
1456 ti_platforms_ezdsp28235 -> microsoft_targets;
1457 ti_platforms_ezdsp28235 -> xdc_services_intern_cmd;
1458 ti_platforms_ezdsp28235 -> gnu_targets_arm;
1459 ti_platforms_ezdsp28235 -> ti_catalog_c2800_init;
1460 ti_platforms_ezdsp28235 -> ti_targets_arm_elf;
1461
1462 edge [style=solid, color=blue]
1463
1464 edge [style=solid, color=lightgrey]
1465 ti_catalog_c2800_init -> ti_targets_arm;
1466 ti_catalog_c2800_init -> ti_targets_elf;
1467 ti_catalog_c2800_init -> gnu_targets;
1468 ti_catalog_c2800_init -> xdc_services_intern_gen;
1469 ti_catalog_c2800_init -> xdc_rov;
1470 ti_catalog_c2800_init -> xdc_services_global;
1471 ti_catalog_c2800_init -> xdc_shelf;
1472 ti_catalog_c2800_init -> xdc_services_intern_xsr;
1473 ti_catalog_c2800_init -> ti_targets;
1474 ti_catalog_c2800_init -> xdc_services_spec;
1475 ti_catalog_c2800_init -> microsoft_targets;
1476 ti_catalog_c2800_init -> xdc_services_intern_cmd;
1477 ti_catalog_c2800_init -> gnu_targets_arm;
1478 ti_catalog_c2800_init -> ti_targets_arm_elf;
1479
1480 edge [style=solid, color=blue]
1481 ti_catalog_c2800 -> xdc_platform;
1482
1483 edge [style=solid, color=lightgrey]
1484 ti_catalog_c2800 -> ti_targets_arm;
1485 ti_catalog_c2800 -> ti_targets_elf;
1486 ti_catalog_c2800 -> gnu_targets;
1487 ti_catalog_c2800 -> xdc_services_intern_gen;
1488 ti_catalog_c2800 -> xdc_services_global;
1489 ti_catalog_c2800 -> xdc_platform;
1490 ti_catalog_c2800 -> xdc_shelf;
1491 ti_catalog_c2800 -> xdc_services_intern_xsr;
1492 ti_catalog_c2800 -> ti_catalog;
1493 ti_catalog_c2800 -> ti_targets;
1494 ti_catalog_c2800 -> xdc_services_spec;
1495 ti_catalog_c2800 -> microsoft_targets;
1496 ti_catalog_c2800 -> xdc_services_intern_cmd;
1497 ti_catalog_c2800 -> gnu_targets_arm;
1498 ti_catalog_c2800 -> ti_targets_arm_elf;
1499
1500 edge [style=solid, color=blue]
1501 ti_sysbios_family_c28 -> ti_sysbios_interfaces;
1502
1503 edge [style=solid, color=lightgrey]
1504 ti_sysbios_family_c28 -> xdc_services_global;
1505 ti_sysbios_family_c28 -> ti_targets;
1506 ti_sysbios_family_c28 -> ti_targets_msp430;
1507 ti_sysbios_family_c28 -> ti_targets_elf_arp32;
1508 ti_sysbios_family_c28 -> ti_targets_elf;
1509 ti_sysbios_family_c28 -> ti_targets_arm;
1510 ti_sysbios_family_c28 -> ti_targets_arm_elf;
1511 ti_sysbios_family_c28 -> gnu_targets;
1512 ti_sysbios_family_c28 -> microsoft_targets;
1513 ti_sysbios_family_c28 -> ti_sysbios_build;
1514 ti_sysbios_family_c28 -> tisb_release_filters;
1515 ti_sysbios_family_c28 -> xdc_runtime;
1516 ti_sysbios_family_c28 -> ti_sysbios_interfaces;
1517 ti_sysbios_family_c28 -> xdc_shelf;
1518 ti_sysbios_family_c28 -> xdc_services_intern_gen;
1519 ti_sysbios_family_c28 -> xdc_services_intern_cmd;
1520 ti_sysbios_family_c28 -> xdc_services_intern_xsr;
1521 ti_sysbios_family_c28 -> xdc_services_spec;
1522 ti_sysbios_knl [shape=record,label="ti.sysbios.knl|2, 0, 0, 0", URL="../C:\RTSC_GEN_TOOLS\bios_6_32_01_38\packages\ti\sysbios\knl\package/package.rel.svg"];
1523 ti_sysbios_family_c28 -> ti_sysbios_knl;
1524 ti_sysbios_family_c28 -> ti_sysbios_hal;
1525 ti_sysbios_family_c28 -> ti_sysbios;
1526
1527 edge [style=solid, color=blue]
1528 ti_sysbios_knl -> ti_sysbios_interfaces;
1529 ti_sysbios_knl -> ti_sysbios_family;
1530
1531 edge [style=solid, color=lightgrey]
1532 ti_sysbios_knl -> xdc_services_global;
1533 ti_sysbios_knl -> ti_targets;
1534 ti_sysbios_knl -> ti_targets_msp430;
1535 ti_sysbios_knl -> ti_targets_elf_arp32;
1536 ti_sysbios_knl -> ti_targets_elf;
1537 ti_sysbios_knl -> ti_targets_arm;
1538 ti_sysbios_knl -> ti_targets_arm_elf;
1539 ti_sysbios_knl -> gnu_targets;
1540 ti_sysbios_knl -> microsoft_targets;
1541 ti_sysbios_knl -> ti_sysbios_build;
1542 ti_sysbios_knl -> tisb_release_filters;
1543 ti_sysbios_knl -> xdc_runtime;
1544 ti_sysbios_knl -> ti_sysbios_hal;
1545 ti_sysbios_knl -> ti_sysbios_interfaces;
1546 ti_sysbios_knl -> xdc_shelf;
1547 ti_sysbios_knl -> xdc_services_intern_gen;
1548 ti_sysbios_knl -> xdc_services_intern_cmd;
1549 ti_sysbios_knl -> xdc_services_intern_xsr;
1550 ti_sysbios_knl -> xdc_services_spec;
1551 ti_sysbios_knl -> ti_sysbios;
1552 ti_sysbios_knl -> ti_sysbios_family_arm_m3;
1553 ti_sysbios_knl -> ti_sysbios_family_c28;
1554
1555 edge [style=solid, color=blue]
1556 ti_sysbios_family_arm_m3 -> ti_sysbios_interfaces;
1557
1558 edge [style=solid, color=lightgrey]
1559 ti_sysbios_family_arm_m3 -> xdc_services_global;
1560 ti_sysbios_family_arm_m3 -> ti_targets;
1561 ti_sysbios_family_arm_m3 -> ti_targets_msp430;
1562 ti_sysbios_family_arm_m3 -> ti_targets_elf_arp32;
1563 ti_sysbios_family_arm_m3 -> ti_targets_elf;
1564 ti_sysbios_family_arm_m3 -> ti_targets_arm;
1565 ti_sysbios_family_arm_m3 -> ti_targets_arm_elf;
1566 ti_sysbios_family_arm_m3 -> gnu_targets;
1567 ti_sysbios_family_arm_m3 -> microsoft_targets;
1568 ti_sysbios_family_arm_m3 -> ti_sysbios_build;
1569 ti_sysbios_family_arm_m3 -> tisb_release_filters;
1570 ti_sysbios_family_arm_m3 -> xdc_runtime;
1571 ti_sysbios_family_arm_m3 -> ti_sysbios;
1572 ti_sysbios_family_arm_m3 -> ti_sysbios_interfaces;
1573 ti_sysbios_family_arm_m3 -> xdc_shelf;
1574 ti_sysbios_family_arm_m3 -> xdc_services_intern_gen;
1575 ti_sysbios_family_arm_m3 -> xdc_services_intern_cmd;
1576 ti_sysbios_family_arm_m3 -> xdc_services_intern_xsr;
1577 ti_sysbios_family_arm_m3 -> xdc_services_spec;
1578 ti_sysbios_family_arm_m3 -> ti_sysbios_knl;
1579 ti_sysbios_family_arm_m3 -> ti_sysbios_hal;
1580
1581 edge [style=solid, color=blue]
1582
1583 edge [style=solid, color=lightgrey]
1584
1585 edge [style=solid, color=blue]
1586
1587 edge [style=solid, color=lightgrey]
1588 ti_sysbios_build -> xdc_services_global;
1589 ti_sysbios_build -> ti_targets;
1590 ti_sysbios_build -> ti_targets_msp430;
1591 ti_sysbios_build -> ti_targets_elf_arp32;
1592 ti_sysbios_build -> ti_targets_elf;
1593 ti_sysbios_build -> ti_targets_arm;
1594 ti_sysbios_build -> ti_targets_arm_elf;
1595 ti_sysbios_build -> gnu_targets;
1596 ti_sysbios_build -> microsoft_targets;
1597 ti_sysbios_build -> xdc_shelf;
1598 ti_sysbios_build -> xdc_services_intern_gen;
1599 ti_sysbios_build -> xdc_services_intern_cmd;
1600 ti_sysbios_build -> xdc_services_intern_xsr;
1601 ti_sysbios_build -> xdc_services_spec;
1602
1603 edge [style=solid, color=blue]
1604 ti_sysbios_family -> ti_sysbios_interfaces;
1605
1606 edge [style=solid, color=lightgrey]
1607 ti_sysbios_family -> xdc_services_global;
1608 ti_sysbios_family -> ti_targets;
1609 ti_sysbios_family -> ti_targets_msp430;
1610 ti_sysbios_family -> ti_targets_elf_arp32;
1611 ti_sysbios_family -> ti_targets_elf;
1612 ti_sysbios_family -> ti_targets_arm;
1613 ti_sysbios_family -> ti_targets_arm_elf;
1614 ti_sysbios_family -> gnu_targets;
1615 ti_sysbios_family -> microsoft_targets;
1616 ti_sysbios_family_c64p [shape=record,label="ti.sysbios.family.c64p|2, 0, 0, 0", URL="../C:\RTSC_GEN_TOOLS\bios_6_32_01_38\packages\ti\sysbios\family\c64p\package/package.rel.svg"];
1617 ti_sysbios_family -> ti_sysbios_family_c64p;
1618 ti_sysbios_family -> ti_sysbios_family_c28;
1619 ti_sysbios_family_arm [shape=record,label="ti.sysbios.family.arm|2, 0, 0, 0", URL="../C:\RTSC_GEN_TOOLS\bios_6_32_01_38\packages\ti\sysbios\family\arm\package/package.rel.svg"];
1620 ti_sysbios_family -> ti_sysbios_family_arm;
1621 ti_sysbios_family -> xdc_platform;
1622 ti_sysbios_family -> ti_catalog_arm;
1623 ti_sysbios_family -> ti_catalog_arm_cortexm3;
1624 ti_catalog_arm_nda [shape=record,label="ti.catalog.arm.nda|1, 0, 0, 0", URL="../D:\CCSV4_install\xdctools_3_20_01_42_eng\packages\ti\catalog\arm\nda\package/package.rel.svg"];
1625 ti_sysbios_family -> ti_catalog_arm_nda;
1626 ti_sysbios_family -> ti_catalog_arm_cortexa8;
1627 ti_sysbios_family_msp430 [shape=record,label="ti.sysbios.family.msp430|1, 0, 0, 0", URL="../C:\RTSC_GEN_TOOLS\bios_6_32_01_38\packages\ti\sysbios\family\msp430\package/package.rel.svg"];
1628 ti_sysbios_family -> ti_sysbios_family_msp430;
1629 ti_sysbios_family -> ti_sysbios_interfaces;
1630 ti_sysbios_family -> xdc_shelf;
1631 ti_sysbios_family -> xdc_services_intern_gen;
1632 ti_sysbios_family -> xdc_services_intern_cmd;
1633 ti_sysbios_family -> xdc_services_intern_xsr;
1634 ti_sysbios_family -> xdc_services_spec;
1635
1636 edge [style=solid, color=blue]
1637 ti_sysbios_family_msp430 -> ti_sysbios_interfaces;
1638
1639 edge [style=solid, color=lightgrey]
1640 ti_sysbios_family_msp430 -> xdc_services_global;
1641 ti_sysbios_family_msp430 -> ti_targets;
1642 ti_sysbios_family_msp430 -> ti_targets_msp430;
1643 ti_sysbios_family_msp430 -> ti_targets_elf_arp32;
1644 ti_sysbios_family_msp430 -> ti_targets_elf;
1645 ti_sysbios_family_msp430 -> ti_targets_arm;
1646 ti_sysbios_family_msp430 -> ti_targets_arm_elf;
1647 ti_sysbios_family_msp430 -> gnu_targets;
1648 ti_sysbios_family_msp430 -> microsoft_targets;
1649 ti_sysbios_family_msp430 -> ti_sysbios_build;
1650 ti_sysbios_family_msp430 -> tisb_release_filters;
1651 ti_sysbios_family_msp430 -> xdc_runtime;
1652 ti_sysbios_family_msp430 -> ti_sysbios_interfaces;
1653 ti_sysbios_family_msp430 -> xdc_shelf;
1654 ti_sysbios_family_msp430 -> xdc_services_intern_gen;
1655 ti_sysbios_family_msp430 -> xdc_services_intern_cmd;
1656 ti_sysbios_family_msp430 -> xdc_services_intern_xsr;
1657 ti_sysbios_family_msp430 -> xdc_services_spec;
1658 ti_sysbios_family_msp430 -> ti_sysbios_knl;
1659 ti_sysbios_family_msp430 -> ti_sysbios_hal;
1660 ti_sysbios_family_msp430 -> ti_sysbios;
1661 ti_sysbios_family_msp430 -> ti_catalog_msp430_peripherals_timer;
1662 ti_sysbios_family_msp430 -> ti_sysbios_family_arm_m3;
1663 ti_sysbios_family_msp430 -> ti_sysbios_family_c28;
1664
1665 edge [style=solid, color=blue]
1666 ti_catalog_arm_nda -> xdc_platform;
1667
1668 edge [style=solid, color=lightgrey]
1669 ti_catalog_arm_nda -> ti_targets_arm;
1670 ti_catalog_arm_nda -> ti_targets_elf;
1671 ti_catalog_arm_nda -> gnu_targets;
1672 ti_catalog_arm_nda -> xdc_services_intern_gen;
1673 ti_catalog_arm_nda -> xdc_services_global;
1674 ti_catalog_arm_nda -> xdc_platform;
1675 ti_catalog_arm_nda -> xdc_shelf;
1676 ti_catalog_arm_nda -> xdc_services_intern_xsr;
1677 ti_catalog_arm_nda -> ti_catalog;
1678 ti_catalog_arm_nda -> ti_targets;
1679 ti_catalog_arm_nda -> xdc_services_spec;
1680 ti_catalog_arm_nda -> microsoft_targets;
1681 ti_catalog_arm_nda -> xdc_services_intern_cmd;
1682 ti_catalog_arm_nda -> gnu_targets_arm;
1683 ti_catalog_arm_nda -> ti_targets_arm_elf;
1684
1685 edge [style=solid, color=blue]
1686 ti_sysbios_family_arm -> ti_sysbios_interfaces;
1687
1688 edge [style=solid, color=lightgrey]
1689 ti_sysbios_family_arm -> xdc_services_global;
1690 ti_sysbios_family_arm -> ti_targets;
1691 ti_sysbios_family_arm -> ti_targets_msp430;
1692 ti_sysbios_family_arm -> ti_targets_elf_arp32;
1693 ti_sysbios_family_arm -> ti_targets_elf;
1694 ti_sysbios_family_arm -> ti_targets_arm;
1695 ti_sysbios_family_arm -> ti_targets_arm_elf;
1696 ti_sysbios_family_arm -> gnu_targets;
1697 ti_sysbios_family_arm -> microsoft_targets;
1698 ti_sysbios_family_arm -> ti_sysbios_build;
1699 ti_sysbios_family_arm -> tisb_release_filters;
1700 ti_sysbios_family_arm -> ti_sysbios_interfaces;
1701 ti_sysbios_family_arm -> xdc_shelf;
1702 ti_sysbios_family_arm -> xdc_services_intern_gen;
1703 ti_sysbios_family_arm -> xdc_services_intern_cmd;
1704 ti_sysbios_family_arm -> xdc_services_intern_xsr;
1705 ti_sysbios_family_arm -> xdc_services_spec;
1706 ti_sysbios_family_arm -> xdc_runtime;
1707 ti_sysbios_family_arm -> ti_sysbios_knl;
1708 ti_sysbios_family_arm -> ti_sysbios_hal;
1709
1710 edge [style=solid, color=blue]
1711 ti_sysbios_family_c64p -> ti_sysbios_interfaces;
1712
1713 edge [style=solid, color=lightgrey]
1714 ti_sysbios_family_c64p -> xdc_services_global;
1715 ti_sysbios_family_c64p -> ti_targets;
1716 ti_sysbios_family_c64p -> ti_targets_msp430;
1717 ti_sysbios_family_c64p -> ti_targets_elf_arp32;
1718 ti_sysbios_family_c64p -> ti_targets_elf;
1719 ti_sysbios_family_c64p -> ti_targets_arm;
1720 ti_sysbios_family_c64p -> ti_targets_arm_elf;
1721 ti_sysbios_family_c64p -> gnu_targets;
1722 ti_sysbios_family_c64p -> microsoft_targets;
1723 ti_sysbios_family_c64p -> ti_sysbios_build;
1724 ti_sysbios_family_c64p -> tisb_release_filters;
1725 ti_sysbios_family_c64p -> ti_sysbios_interfaces;
1726 ti_sysbios_family_c64p -> xdc_runtime;
1727 ti_sysbios_family_c64p -> xdc_shelf;
1728 ti_sysbios_family_c64p -> xdc_services_intern_gen;
1729 ti_sysbios_family_c64p -> xdc_services_intern_cmd;
1730 ti_sysbios_family_c64p -> xdc_services_intern_xsr;
1731 ti_sysbios_family_c64p -> xdc_services_spec;
1732 ti_sysbios_family_c64p -> ti_sysbios_knl;
1733 ti_sysbios_family_c64p -> ti_sysbios;
1734 ti_sysbios_family_c64p -> ti_sysbios_hal;
1735 ti_sysbios_family_c64p -> ti_sysbios_family_arm_m3;
1736 ti_sysbios_family_c64p -> ti_sysbios_family_c28;
1737
1738 edge [style=solid, color=blue]
1739
1740 edge [style=solid, color=lightgrey]
1741 ti_sdo_fc_dman3 -> xdc_services_global;
1742 ti_sdo_fc_dman3 -> ti_targets;
1743 ti_sdo_fc_dman3 -> ti_targets_elf;
1744 ti_sdo_fc_dman3 -> ti_targets_elf_arp32;
1745 ti_sdo_fc_dman3 -> gnu_targets;
1746 ti_sdo_fc_dman3 -> gnu_targets_arm;
1747 ti_sdo_fc_dman3 -> ti_targets_arm;
1748 ti_sdo_fc_dman3 -> ti_targets_arm_elf;
1749 ti_sdo_fc_dman3 -> build_filter;
1750 ti_sdo_fc_dman3 -> xdc_services_intern_cmd;
1751 ti_sdo_fc_dman3 -> xdc_services_intern_gen;
1752 ti_sdo_fc_dman3 -> xdc_services_intern_xsr;
1753 ti_sdo_fc_dman3 -> xdc_shelf;
1754 ti_sdo_fc_dman3 -> xdc_services_spec;
1755 ti_sdo_fc_dman3 -> xdc_runtime;
1756 ti_sdo_fc_dman3 -> ti_xdais;
1757 ti_sdo_fc_dman3 -> xdc_runtime_knl;
1758 ti_sdo_fc_dman3 -> ti_sdo_fc_utils_osalsupport;
1759 ti_sdo_fc_dman3 -> ti_sdo_fc_global;
1760 ti_sdo_fc_dman3 -> ti_sdo_utils_trace;
1761 ti_sdo_fc_utils_gtinfra [shape=record,label="ti.sdo.fc.utils.gtinfra|1, 0, 0", URL="../C:\RTSC_GEN_TOOLS\codec_engine_3_21_00_19\cetools\packages\ti\sdo\fc\utils\gtinfra\package/package.rel.svg"];
1762 ti_sdo_fc_dman3 -> ti_sdo_fc_utils_gtinfra;
1763 ti_sdo_fc_edma3 [shape=record,label="ti.sdo.fc.edma3|3, 0, 0", URL="../C:\RTSC_GEN_TOOLS\codec_engine_3_21_00_19\cetools\packages\ti\sdo\fc\edma3\package/package.rel.svg"];
1764 ti_sdo_fc_dman3 -> ti_sdo_fc_edma3;
1765 ti_sdo_edma3_rm [shape=record,label="ti.sdo.edma3.rm|02, 02, 02", URL="../C:\RTSC_GEN_TOOLS\codec_engine_3_21_00_19\cetools\packages\ti\sdo\edma3\rm\package/package.rel.svg"];
1766 ti_sdo_fc_dman3 -> ti_sdo_edma3_rm;
1767 ti_sdo_fc_dman3 -> ti_sdo_fc_ires;
1768
1769 edge [style=solid, color=blue]
1770
1771 edge [style=solid, color=lightgrey]
1772
1773 edge [style=solid, color=blue]
1774
1775 edge [style=solid, color=lightgrey]
1776 ti_sdo_fc_edma3 -> xdc_services_global;
1777 ti_sdo_fc_edma3 -> ti_targets;
1778 ti_sdo_fc_edma3 -> ti_targets_elf;
1779 ti_sdo_fc_edma3 -> ti_targets_elf_arp32;
1780 ti_sdo_fc_edma3 -> gnu_targets;
1781 ti_sdo_fc_edma3 -> gnu_targets_arm;
1782 ti_sdo_fc_edma3 -> ti_targets_arm;
1783 ti_sdo_fc_edma3 -> ti_targets_arm_elf;
1784 ti_sdo_fc_edma3 -> build_filter;
1785 ti_sdo_fc_edma3 -> xdc_services_intern_cmd;
1786 ti_sdo_fc_edma3 -> xdc_services_intern_gen;
1787 ti_sdo_fc_edma3 -> xdc_services_intern_xsr;
1788 ti_sdo_fc_edma3 -> xdc_shelf;
1789 ti_sdo_fc_edma3 -> xdc_services_spec;
1790 ti_sdo_fc_edma3 -> xdc_runtime;
1791 ti_sdo_fc_edma3 -> ti_sysbios_knl;
1792 ti_sdo_fc_edma3 -> ti_sysbios_hal;
1793 ti_sdo_fc_edma3 -> ti_sdo_fc_global;
1794 ti_sdo_fc_edma3 -> ti_xdais;
1795 ti_sdo_fc_edma3 -> ti_sdo_edma3_rm;
1796 ti_sdo_fc_edma3 -> xdc_runtime_knl;
1797 ti_sdo_fc_edma3 -> ti_sdo_fc_utils_osalsupport;
1798 ti_sdo_fc_edma3 -> ti_sysbios_interfaces;
1799 ti_sdo_fc_edma3 -> ti_sdo_fc_ires;
1800 ti_sdo_fc_edma3 -> ti_sysbios_family_arm_m3;
1801 ti_sdo_fc_edma3 -> ti_sysbios_family_c28;
1802 ti_sdo_fc_edma3 -> ti_sysbios;
1803
1804 edge [style=solid, color=blue]
1805
1806 edge [style=solid, color=lightgrey]
1807 ti_sdo_fc_utils_gtinfra -> xdc_services_global;
1808 ti_sdo_fc_utils_gtinfra -> ti_targets;
1809 ti_sdo_fc_utils_gtinfra -> ti_targets_elf;
1810 ti_sdo_fc_utils_gtinfra -> ti_targets_elf_arp32;
1811 ti_sdo_fc_utils_gtinfra -> gnu_targets;
1812 ti_sdo_fc_utils_gtinfra -> gnu_targets_arm;
1813 ti_sdo_fc_utils_gtinfra -> ti_targets_arm;
1814 ti_sdo_fc_utils_gtinfra -> ti_targets_arm_elf;
1815 ti_sdo_fc_utils_gtinfra -> build_filter;
1816 ti_sdo_fc_utils_gtinfra -> xdc_services_intern_cmd;
1817 ti_sdo_fc_utils_gtinfra -> xdc_services_intern_gen;
1818 ti_sdo_fc_utils_gtinfra -> xdc_services_intern_xsr;
1819 ti_sdo_fc_utils_gtinfra -> xdc_shelf;
1820 ti_sdo_fc_utils_gtinfra -> xdc_services_spec;
1821 ti_sdo_fc_utils_gtinfra -> xdc_runtime;
1822 ti_sdo_fc_utils_gtinfra -> xdc_runtime_knl;
1823 ti_sdo_fc_utils_gtinfra -> ti_sysbios;
1824 ti_sdo_fc_utils_gtinfra -> ti_sysbios_knl;
1825 ti_sdo_fc_utils_gtinfra -> ti_sdo_utils_trace;
1826 ti_sdo_fc_utils_gtinfra -> ti_sysbios_interfaces;
1827 ti_sdo_fc_utils_gtinfra -> ti_sysbios_hal;
1828
1829 edge [style=solid, color=blue]
1830
1831 edge [style=solid, color=lightgrey]
1832 ti_sdo_fc_dskt2 -> xdc_services_global;
1833 ti_sdo_fc_dskt2 -> ti_targets;
1834 ti_sdo_fc_dskt2 -> ti_targets_elf;
1835 ti_sdo_fc_dskt2 -> ti_targets_elf_arp32;
1836 ti_sdo_fc_dskt2 -> gnu_targets;
1837 ti_sdo_fc_dskt2 -> gnu_targets_arm;
1838 ti_sdo_fc_dskt2 -> ti_targets_arm;
1839 ti_sdo_fc_dskt2 -> ti_targets_arm_elf;
1840 ti_sdo_fc_dskt2 -> build_filter;
1841 ti_sdo_fc_dskt2 -> xdc_services_intern_cmd;
1842 ti_sdo_fc_dskt2 -> xdc_services_intern_gen;
1843 ti_sdo_fc_dskt2 -> xdc_services_intern_xsr;
1844 ti_sdo_fc_dskt2 -> xdc_shelf;
1845 ti_sdo_fc_dskt2 -> xdc_services_spec;
1846 ti_sdo_fc_dskt2 -> xdc_runtime;
1847 ti_sdo_fc_dskt2 -> ti_xdais;
1848 ti_sdo_fc_dskt2 -> ti_sdo_fc_utils_osalsupport;
1849 ti_sdo_fc_dskt2 -> ti_sdo_fc_global;
1850 ti_sdo_fc_dskt2 -> ti_sdo_fc_utils_gtinfra;
1851 ti_sdo_fc_dskt2 -> xdc_runtime_knl;
1852 ti_sdo_fc_dskt2 -> ti_sdo_fc_utils;
1853 ti_sdo_fc_dskt2 -> ti_sysbios_hal;
1854 ti_sdo_fc_dskt2 -> ti_sysbios_interfaces;
1855 ti_sdo_fc_dskt2 -> ti_sysbios_knl;
1856
1857 edge [style=solid, color=blue]
1858
1859 edge [style=solid, color=lightgrey]
1860 ti_sdo_ce_global -> xdc_services_global;
1861 ti_sdo_ce_global -> ti_targets;
1862 ti_sdo_ce_global -> ti_targets_elf;
1863 ti_sdo_ce_global -> gnu_targets;
1864 ti_sdo_ce_global -> gnu_targets_arm;
1865 ti_sdo_ce_global -> ti_targets_arm;
1866 ti_sdo_ce_global -> ti_targets_arm_elf;
1867 ti_sdo_ce_global -> build_filter;
1868 ti_sdo_ce_global -> ti_sdo_tools_build;
1869 ti_sdo_ce_global -> xdc_services_intern_cmd;
1870 ti_sdo_ce_global -> xdc_services_intern_gen;
1871 ti_sdo_ce_global -> xdc_services_intern_xsr;
1872 ti_sdo_ce_global -> xdc_shelf;
1873 ti_sdo_ce_global -> xdc_services_spec;
1874 ti_sdo_ce_global -> xdc_runtime;
1875
1876 edge [style=solid, color=blue]
1877
1878 edge [style=solid, color=lightgrey]
1879 ti_sdo_ce_osal -> xdc_services_global;
1880 ti_sdo_ce_osal -> ti_targets;
1881 ti_sdo_ce_osal -> ti_targets_elf;
1882 ti_sdo_ce_osal -> gnu_targets;
1883 ti_sdo_ce_osal -> gnu_targets_arm;
1884 ti_sdo_ce_osal -> ti_targets_arm;
1885 ti_sdo_ce_osal -> ti_targets_arm_elf;
1886 ti_sdo_ce_osal -> build_filter;
1887 ti_sdo_ce_osal -> xdc_services_intern_cmd;
1888 ti_sdo_ce_osal -> xdc_services_intern_gen;
1889 ti_sdo_ce_osal -> xdc_services_intern_xsr;
1890 ti_sdo_ce_osal -> xdc_shelf;
1891 ti_sdo_ce_osal -> xdc_services_spec;
1892 ti_sdo_ce_osal -> xdc_runtime;
1893
1894 edge [style=solid, color=blue]
1895
1896 edge [style=solid, color=lightgrey]
1897 ti_sdo_utils_trace -> xdc_services_global;
1898 ti_sdo_utils_trace -> ti_targets;
1899 ti_sdo_utils_trace -> ti_targets_elf;
1900 ti_sdo_utils_trace -> ti_targets_elf_arp32;
1901 ti_sdo_utils_trace -> gnu_targets;
1902 ti_sdo_utils_trace -> gnu_targets_arm;
1903 ti_sdo_utils_trace -> ti_targets_arm;
1904 ti_sdo_utils_trace -> ti_targets_arm_elf;
1905 ti_sdo_utils_trace -> build_filter;
1906 ti_sdo_utils_trace -> xdc_services_intern_cmd;
1907 ti_sdo_utils_trace -> xdc_services_intern_gen;
1908 ti_sdo_utils_trace -> xdc_services_intern_xsr;
1909 ti_sdo_utils_trace -> xdc_shelf;
1910 ti_sdo_utils_trace -> xdc_services_spec;
1911
1912 edge [style=solid, color=blue]
1913
1914 edge [style=solid, color=lightgrey]
1915 ti_sdo_utils_loggers -> xdc_services_global;
1916 ti_sdo_utils_loggers -> ti_targets;
1917 ti_sdo_utils_loggers -> ti_targets_elf;
1918 ti_sdo_utils_loggers -> ti_targets_arm;
1919 ti_sdo_utils_loggers -> ti_targets_arm_elf;
1920 ti_sdo_utils_loggers -> gnu_targets;
1921 ti_sdo_utils_loggers -> gnu_targets_arm;
1922 ti_sdo_utils_loggers -> xdc_runtime;
1923 ti_sdo_utils_loggers -> xdc_services_intern_cmd;
1924 ti_sdo_utils_loggers -> xdc_services_intern_gen;
1925 ti_sdo_utils_loggers -> xdc_services_intern_xsr;
1926 ti_sdo_utils_loggers -> xdc_shelf;
1927 ti_sdo_utils_loggers -> xdc_services_spec;
1928 ti_sdo_utils_loggers -> xdc_runtime_knl;
1929
1930 edge [style=solid, color=blue]
1931
1932 edge [style=solid, color=lightgrey]
1933 ti_xdais -> xdc_services_intern_gen;
1934 ti_xdais -> gnu_targets_arm;
1935 ti_xdais -> ti_targets_arm_elf;
1936 ti_xdais -> ti_targets_elf;
1937 ti_xdais -> xdc_shelf;
1938 ti_xdais -> ti_targets_arm;
1939 ti_xdais -> xdc_services_spec;
1940 ti_xdais -> gnu_targets;
1941 ti_xdais -> ti_targets;
1942 ti_xdais -> microsoft_targets;
1943 ti_xdais -> xdc_services_intern_cmd;
1944 ti_xdais -> xdc_services_intern_xsr;
1945 ti_xdais -> microsoft_targets_arm;
1946 ti_xdais -> xdc_services_global;
1947
1948 edge [style=solid, color=blue]
1949
1950 edge [style=solid, color=lightgrey]
1951 xdc_runtime_knl -> xdc_utils_tconf;
1952 xdc_runtime_knl -> xdc_services_global;
1953 xdc_runtime_knl -> xdc_runtime;
1954 xdc_runtime_knl -> xdc_shelf;
1955 xdc_runtime_knl -> xdc_services_intern_xsr;
1956 xdc_runtime_knl -> xdc_services_intern_gen;
1957 xdc_runtime_knl -> xdc_services_spec;
1958 xdc_runtime_knl -> xdc_services_intern_cmd;
1959
1960 edge [style=solid, color=blue]
1961
1962 edge [style=solid, color=lightgrey]
1963 xdc_runtime -> xdc_utils_tconf;
1964 xdc_runtime -> xdc_services_global;
1965 xdc_runtime -> xdc_rov;
1966 xdc_runtime -> xdc_shelf;
1967 xdc_runtime -> xdc_services_intern_xsr;
1968 xdc_runtime -> xdc_services_intern_gen;
1969 xdc_runtime -> xdc_services_spec;
1970 xdc_runtime -> xdc_services_intern_cmd;
1971
1972 edge [style=solid, color=blue]
1973
1974 edge [style=solid, color=lightgrey]
1975
1976 edge [style=solid, color=blue]
1977
1978 edge [style=solid, color=lightgrey]
1979 ti_targets_arm_elf -> xdc_services_spec;
1980 ti_targets_arm_elf -> ti_targets_arm;
1981 ti_targets_arm_elf -> xdc_shelf;
1982 ti_targets_arm_elf -> xdc_services_global;
1983 ti_targets_arm_elf -> xdc_services_intern_cmd;
1984 ti_targets_arm_elf -> xdc_services_intern_xsr;
1985 ti_targets_arm_elf -> ti_targets;
1986 ti_targets_arm_elf -> xdc_services_intern_gen;
1987
1988 edge [style=solid, color=blue]
1989 ti_targets_arm -> ti_targets;
1990
1991 edge [style=solid, color=lightgrey]
1992 ti_targets_arm -> xdc_services_spec;
1993 ti_targets_arm -> xdc_shelf;
1994 ti_targets_arm -> xdc_services_global;
1995 ti_targets_arm -> xdc_services_intern_cmd;
1996 ti_targets_arm -> xdc_services_intern_xsr;
1997 ti_targets_arm -> ti_targets;
1998 ti_targets_arm -> xdc_services_intern_gen;
1999
2000 edge [style=solid, color=blue]
2001 gnu_targets_arm -> gnu_targets;
2002
2003 edge [style=solid, color=lightgrey]
2004 gnu_targets_arm -> xdc_services_global;
2005 gnu_targets_arm -> gnu_targets;
2006 gnu_targets_arm -> xdc_shelf;
2007 gnu_targets_arm -> xdc_services_spec;
2008 gnu_targets_arm -> xdc_services_intern_cmd;
2009 gnu_targets_arm -> xdc_services_intern_xsr;
2010 gnu_targets_arm -> xdc_services_intern_gen;
2011
2012 edge [style=solid, color=blue]
2013
2014 edge [style=solid, color=lightgrey]
2015 gnu_targets -> xdc_services_global;
2016 gnu_targets -> xdc_shelf;
2017 gnu_targets -> xdc_services_spec;
2018 gnu_targets -> xdc_services_intern_cmd;
2019 gnu_targets -> xdc_services_intern_xsr;
2020 gnu_targets -> xdc_services_intern_gen;
2021
2022 edge [style=solid, color=blue]
2023
2024 edge [style=solid, color=lightgrey]
2025 ti_targets_elf -> xdc_services_spec;
2026 ti_targets_elf -> xdc_shelf;
2027 ti_targets_elf -> xdc_services_global;
2028 ti_targets_elf -> xdc_services_intern_cmd;
2029 ti_targets_elf -> xdc_services_intern_xsr;
2030 ti_targets_elf -> ti_targets;
2031 ti_targets_elf -> xdc_services_intern_gen;
2032
2033 edge [style=solid, color=blue]
2034
2035 edge [style=solid, color=lightgrey]
2036 ti_targets -> xdc_services_spec;
2037 ti_targets -> xdc_shelf;
2038 ti_targets -> xdc_services_global;
2039 ti_targets -> xdc_services_intern_cmd;
2040 ti_targets -> xdc_services_intern_xsr;
2041 ti_targets -> xdc_services_intern_gen;
2042
2043 edge [style=solid, color=blue]
2044
2045 edge [style=solid, color=lightgrey]
2046 ti_sdo_ce_ipc -> xdc_services_global;
2047 ti_sdo_ce_ipc -> ti_targets;
2048 ti_sdo_ce_ipc -> ti_targets_elf;
2049 ti_sdo_ce_ipc -> gnu_targets;
2050 ti_sdo_ce_ipc -> gnu_targets_arm;
2051 ti_sdo_ce_ipc -> ti_targets_arm;
2052 ti_sdo_ce_ipc -> ti_targets_arm_elf;
2053 ti_sdo_ce_ipc -> build_filter;
2054 ti_sdo_ce_ipc -> xdc_services_intern_cmd;
2055 ti_sdo_ce_ipc -> xdc_services_intern_gen;
2056 ti_sdo_ce_ipc -> xdc_services_intern_xsr;
2057 ti_sdo_ce_ipc -> xdc_shelf;
2058 ti_sdo_ce_ipc -> xdc_services_spec;
2059
2060 edge [style=solid, color=blue]
2061
2062 edge [style=solid, color=lightgrey]
2063 xdc_shelf -> xdc_services_spec;
2064 xdc_shelf -> xdc_utils_tconf;
2065 xdc_shelf -> xdc_services_global;
2066 xdc_shelf -> xdc_services_intern_cmd;
2067 xdc_shelf -> xdc_services_intern_xsr;
2068 xdc_shelf -> xdc_services_intern_gen;
2069
2070 edge [style=solid, color=blue]
2071 xdc_services_intern_gen -> xdc_shelf;
2072 xdc_services_intern_gen -> xdc_services_spec;
2073 xdc_services_intern_gen -> xdc_services_global;
2074 xdc_services_intern_gen -> xdc_services_intern_xsr;
2075
2076 edge [style=solid, color=lightgrey]
2077 xdc_services_intern_gen -> xdc_shelf;
2078 xdc_services_intern_gen -> xdc_services_spec;
2079 xdc_services_intern_gen -> xdc_utils_tconf;
2080 xdc_services_intern_gen -> xdc_services_global;
2081 xdc_services_intern_gen -> xdc_services_intern_cmd;
2082 xdc_services_intern_gen -> xdc_services_intern_xsr;
2083
2084 edge [style=solid, color=blue]
2085 xdc_cfg -> xdc_services_global;
2086
2087 edge [style=solid, color=lightgrey]
2088 xdc_cfg -> xdc_shelf;
2089 xdc_cfg -> xdc_services_spec;
2090 xdc_cfg -> xdc_utils_tconf;
2091 xdc_cfg -> xdc_platform;
2092 xdc_cfg -> xdc_services_global;
2093 xdc_cfg -> xdc_services_intern_cmd;
2094 xdc_cfg -> xdc_services_intern_xsr;
2095 xdc_cfg -> xdc_services_intern_gen;
2096
2097 edge [style=solid, color=blue]
2098
2099 edge [style=solid, color=lightgrey]
2100 xdc_platform -> xdc_shelf;
2101 xdc_platform -> xdc_services_spec;
2102 xdc_platform -> xdc_utils_tconf;
2103 xdc_platform -> xdc_services_global;
2104 xdc_platform -> xdc_services_intern_cmd;
2105 xdc_platform -> xdc_services_intern_xsr;
2106 xdc_platform -> xdc_services_intern_gen;
2107
2108 edge [style=solid, color=blue]
2109 xdc_services_intern_xsr -> xdc_services_global;
2110
2111 edge [style=solid, color=lightgrey]
2112 xdc_services_intern_xsr -> xdc_shelf;
2113 xdc_services_intern_xsr -> xdc_services_spec;
2114 xdc_services_intern_xsr -> xdc_utils_tconf;
2115 xdc_services_intern_xsr -> xdc_services_global;
2116 xdc_services_intern_xsr -> xdc_services_intern_cmd;
2117 xdc_services_intern_xsr -> xdc_services_intern_gen;
2118
2119 edge [style=solid, color=blue]
2120 xdc_services_intern_cmd -> xdc_shelf;
2121 xdc_services_intern_cmd -> xdc_services_spec;
2122 xdc_services_intern_cmd -> xdc_services_global;
2123 xdc_services_intern_cmd -> xdc_services_intern_gen;
2124
2125 edge [style=solid, color=lightgrey]
2126 xdc_services_intern_cmd -> xdc_shelf;
2127 xdc_services_intern_cmd -> xdc_services_spec;
2128 xdc_services_intern_cmd -> xdc_utils_tconf;
2129 xdc_services_intern_cmd -> xdc_services_global;
2130 xdc_services_intern_cmd -> xdc_services_intern_xsr;
2131 xdc_services_intern_cmd -> xdc_services_intern_gen;
2132
2133 edge [style=solid, color=blue]
2134
2135 edge [style=solid, color=lightgrey]
2136 ti_sdo_codecs_h264enc -> xdc_services_intern_cmd;
2137 ti_sdo_codecs_h264enc -> xdc_services_intern_xsr;
2138 ti_sdo_codecs_h264enc -> xdc_services_intern_gen;
2139 ti_sdo_codecs_h264enc -> xdc_shelf;
2140 ti_sdo_codecs_h264enc -> xdc_services_spec;
2141 ti_sdo_codecs_h264enc -> xdc_services_global;
2142
2143 edge [style=solid, color=blue]
2144
2145 edge [style=solid, color=lightgrey]
2146 ti_sdo_ce_video2 -> xdc_services_global;
2147 ti_sdo_ce_video2 -> xdc_platform;
2148 ti_sdo_ce_video2 -> xdc_services_intern_gen;
2149 ti_sdo_ce_video2 -> xdc_shelf;
2150 ti_sdo_ce_video2 -> xdc_cfg;
2151 ti_sdo_ce_video2 -> ti_sdo_ce;
2152 ti_sdo_ce_video2 -> xdc_services_spec;
2153 ti_sdo_ce_video2 -> xdc_services_global;
2154 ti_sdo_ce_video2 -> xdc_services_intern_cmd;
2155 ti_sdo_ce_video2 -> xdc_services_intern_xsr;
2156}
diff --git a/extrel/ti/ivahd_codecs/packages/ti/sdo/codecs/h264enc/ce/package/package.rel.xml b/extrel/ti/ivahd_codecs/packages/ti/sdo/codecs/h264enc/ce/package/package.rel.xml
new file mode 100644
index 0000000..ab9ea48
--- /dev/null
+++ b/extrel/ti/ivahd_codecs/packages/ti/sdo/codecs/h264enc/ce/package/package.rel.xml
@@ -0,0 +1,128 @@
1<?xml version="1.0" encoding="UTF-8"?>
2<!-- This file conforms to the DTD xdc/bld/release.dtd -->
3<release name="ti_sdo_codecs_h264enc_ce" label="default" date="1426850325233" buildCount="1" producerId="undefined">
4<package name="ti.sdo.codecs.h264enc.ce"
5 version="1, 0, 0"/>
6<imports>
7 <package name="ti.sdo.ce.video2"
8 version=""/>
9 <package name="ti.sdo.codecs.h264enc"
10 version=""/>
11</imports>
12<references>
13 <package name="xdc.services.intern.cmd"
14 version="1, 0, 0, 0, 1275003755481"
15 providerId="xdccore">
16 <file name="java\package.jar"/>
17 </package>
18 <package name="xdc.services.intern.xsr"
19 version="1, 0, 0, 1275003758055"
20 providerId="xdccore">
21 <file name="java\package.jar"/>
22 </package>
23 <package name="ti.sdo.ce.video2"
24 version="1, 0, 3, 1313608070886"
25 providerId="codec_engine_3_21_00_19">
26 <file name="IVIDENC2.xdc"/>
27 <file name="package.xs"/>
28 </package>
29 <package name="xdc.platform"
30 version="1, 0, 1, 0, 1275003732659"
31 providerId="xdccore">
32 <file name="ICpuDataSheet.xdc"/>
33 <file name="IExeContext.xdc"/>
34 <file name="IPeripheral.xdc"/>
35 <file name="IPlatform.xdc"/>
36 </package>
37 <package name="ti.sdo.codecs.h264enc"
38 version="1, 0, 0, 1426850322171"
39 providerId="G:/rtsc_release">
40 <file name="H264ENC.xdc"/>
41 <file name="package.xs"/>
42 </package>
43 <package name="xdc.cfg"
44 version="1, 0, 2, 0, 1275003727109"
45 providerId="xdccore">
46 <file name="Program.xdc"/>
47 </package>
48 <package name="xdc.services.intern.gen"
49 version="1, 0, 0, 0, 1275003755582"
50 providerId="xdccore">
51 <file name="java\package.jar"/>
52 </package>
53 <package name="xdc.shelf"
54 version="1, 0, 0, 1275003774434"
55 providerId="xdccore">
56 <file name="java\antlr.jar"/>
57 <file name="java\ecj.jar"/>
58 <file name="java\js.jar"/>
59 <file name="java\jsr173_api.jar"/>
60 <file name="java\tar.jar"/>
61 <file name="java\xbean.jar"/>
62 </package>
63 <package name="ti.sdo.ce.ipc"
64 version="2, 0, 1, 1313544812640"
65 providerId="codec_engine_3_21_00_19">
66 <file name="package.xs"/>
67 </package>
68 <package name="ti.sdo.ce"
69 version="1, 0, 6, 1313607868501"
70 providerId="codec_engine_3_21_00_19">
71 <file name="CERuntime.xs"/>
72 <file name="Engine.xs"/>
73 <file name="ICodec.xdc"/>
74 <file name="ICodec.xs"/>
75 <file name="Server.xs"/>
76 <file name="package.xs"/>
77 </package>
78 <package name="xdc.bld"
79 version="1, 0, 2, 1275003727887"
80 providerId="xdccore">
81 <file name="BuildEnvironment.xs"/>
82 <file name="Executable.xs"/>
83 <file name="ITarget.xs"/>
84 <file name="ITargetFilter.xs"/>
85 <file name="Library.xs"/>
86 <file name="Manifest.xs"/>
87 <file name="PackageContents.xs"/>
88 <file name="Repository.xs"/>
89 <file name="Script.xs"/>
90 <file name="Utils.xs"/>
91 <file name="_gen.xs"/>
92 <file name="bld.js"/>
93 <file name="package.xs"/>
94 </package>
95 <package name="xdc"
96 version="1, 1, 1, 1275003718877"
97 providerId="xdccore">
98 <file name="IPackage.xdc"/>
99 <file name="IPackage.xs"/>
100 <file name="om2.xs"/>
101 <file name="package.xs"/>
102 <file name="template.xs"/>
103 <file name="xdc.tci"/>
104 <file name="xmlgen.xs"/>
105 <file name="xmlgen2.xs"/>
106 </package>
107 <package name="xdc.services.spec"
108 version="1, 0, 0, 0, 1275003766499"
109 providerId="xdccore">
110 <file name="java\package.jar"/>
111 </package>
112 <package name="xdc.services.global"
113 version="1, 0, 0, 1275003751833"
114 providerId="xdccore">
115 <file name="Clock.xs"/>
116 <file name="Trace.xs"/>
117 <file name="java\package.jar"/>
118 </package>
119 <xdcRoot base="D:/CCSV4_install/xdctools_3_20_01_42_eng/">
120 <file name="/packages/xdc/package.xdc"/>
121 <file name="etc\config.bld"/>
122 <file name="include\utils.tci"/>
123 <xdcCorePkg version="16, 0, 2, 0, 1275003728128" producerId="undefined" buildCount="266" releaseName="xdc_corevers" label="default" date="1275003728128"/>
124 </xdcRoot>
125</references>
126<orphans>
127</orphans>
128</release>
diff --git a/extrel/ti/ivahd_codecs/packages/ti/sdo/codecs/h264enc/ce/package/package_ti.sdo.codecs.h264enc.ce.c b/extrel/ti/ivahd_codecs/packages/ti/sdo/codecs/h264enc/ce/package/package_ti.sdo.codecs.h264enc.ce.c
new file mode 100644
index 0000000..2848d39
--- /dev/null
+++ b/extrel/ti/ivahd_codecs/packages/ti/sdo/codecs/h264enc/ce/package/package_ti.sdo.codecs.h264enc.ce.c
@@ -0,0 +1,21 @@
1/*
2 * Do not modify this file; it is automatically
3 * generated and any modifications will be overwritten.
4 *
5 * @(#) xdc-v38
6 */
7
8#include <xdc/std.h>
9
10__FAR__ char ti_sdo_codecs_h264enc_ce__dummy__;
11
12#define __xdc_PKGVERS 1, 0, 0
13#define __xdc_PKGNAME ti.sdo.codecs.h264enc.ce
14#define __xdc_PKGPREFIX ti_sdo_codecs_h264enc_ce_
15
16#ifdef __xdc_bld_pkg_c__
17#define __stringify(a) #a
18#define __local_include(a) __stringify(a)
19#include __local_include(__xdc_bld_pkg_c__)
20#endif
21
diff --git a/extrel/ti/ivahd_codecs/packages/ti/sdo/codecs/h264enc/ce/package/ti.sdo.codecs.h264enc.ce.ccs b/extrel/ti/ivahd_codecs/packages/ti/sdo/codecs/h264enc/ce/package/ti.sdo.codecs.h264enc.ce.ccs
new file mode 100644
index 0000000..42fe80c
--- /dev/null
+++ b/extrel/ti/ivahd_codecs/packages/ti/sdo/codecs/h264enc/ce/package/ti.sdo.codecs.h264enc.ce.ccs
Binary files differ
diff --git a/extrel/ti/ivahd_codecs/packages/ti/sdo/codecs/h264enc/ce/package/ti.sdo.codecs.h264enc.ce.sch b/extrel/ti/ivahd_codecs/packages/ti/sdo/codecs/h264enc/ce/package/ti.sdo.codecs.h264enc.ce.sch
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/extrel/ti/ivahd_codecs/packages/ti/sdo/codecs/h264enc/ce/package/ti.sdo.codecs.h264enc.ce.sch
diff --git a/extrel/ti/ivahd_codecs/packages/ti/sdo/codecs/h264enc/ce/package/ti_sdo_codecs_h264enc_ce.class b/extrel/ti/ivahd_codecs/packages/ti/sdo/codecs/h264enc/ce/package/ti_sdo_codecs_h264enc_ce.class
new file mode 100644
index 0000000..527a031
--- /dev/null
+++ b/extrel/ti/ivahd_codecs/packages/ti/sdo/codecs/h264enc/ce/package/ti_sdo_codecs_h264enc_ce.class
Binary files differ
diff --git a/extrel/ti/ivahd_codecs/packages/ti/sdo/codecs/h264enc/ce/package/ti_sdo_codecs_h264enc_ce.java b/extrel/ti/ivahd_codecs/packages/ti/sdo/codecs/h264enc/ce/package/ti_sdo_codecs_h264enc_ce.java
new file mode 100644
index 0000000..df8f389
--- /dev/null
+++ b/extrel/ti/ivahd_codecs/packages/ti/sdo/codecs/h264enc/ce/package/ti_sdo_codecs_h264enc_ce.java
@@ -0,0 +1,251 @@
1/*
2 * Do not modify this file; it is automatically
3 * generated and any modifications will be overwritten.
4 *
5 * @(#) xdc-v38
6 */
7import java.util.*;
8import org.mozilla.javascript.*;
9import xdc.services.intern.xsr.*;
10import xdc.services.spec.*;
11
12public class ti_sdo_codecs_h264enc_ce
13{
14 static final String VERS = "@(#) xdc-v38\n";
15
16 static final Proto.Elm $$T_Bool = Proto.Elm.newBool();
17 static final Proto.Elm $$T_Num = Proto.Elm.newNum();
18 static final Proto.Elm $$T_Str = Proto.Elm.newStr();
19 static final Proto.Elm $$T_Obj = Proto.Elm.newObj();
20
21 static final Proto.Fxn $$T_Met = new Proto.Fxn(null, null, 0, -1, false);
22 static final Proto.Map $$T_Map = new Proto.Map($$T_Obj);
23 static final Proto.Arr $$T_Vec = new Proto.Arr($$T_Obj);
24
25 static final XScriptO $$DEFAULT = Value.DEFAULT;
26 static final Object $$UNDEF = Undefined.instance;
27
28 static final Proto.Obj $$Package = (Proto.Obj)Global.get("$$Package");
29 static final Proto.Obj $$Module = (Proto.Obj)Global.get("$$Module");
30 static final Proto.Obj $$Instance = (Proto.Obj)Global.get("$$Instance");
31 static final Proto.Obj $$Params = (Proto.Obj)Global.get("$$Params");
32
33 static final Object $$objFldGet = Global.get("$$objFldGet");
34 static final Object $$objFldSet = Global.get("$$objFldSet");
35 static final Object $$proxyGet = Global.get("$$proxyGet");
36 static final Object $$proxySet = Global.get("$$proxySet");
37 static final Object $$delegGet = Global.get("$$delegGet");
38 static final Object $$delegSet = Global.get("$$delegSet");
39
40 Scriptable xdcO;
41 Session ses;
42 Value.Obj om;
43
44 boolean isROV;
45 boolean isCFG;
46
47 Proto.Obj pkgP;
48 Value.Obj pkgV;
49
50 ArrayList<Object> imports = new ArrayList<Object>();
51 ArrayList<Object> loggables = new ArrayList<Object>();
52 ArrayList<Object> mcfgs = new ArrayList<Object>();
53 ArrayList<Object> proxies = new ArrayList<Object>();
54 ArrayList<Object> sizes = new ArrayList<Object>();
55 ArrayList<Object> tdefs = new ArrayList<Object>();
56
57 void $$IMPORTS()
58 {
59 Global.callFxn("loadPackage", xdcO, "ti.sdo.ce.video2");
60 Global.callFxn("loadPackage", xdcO, "ti.sdo.codecs.h264enc");
61 Global.callFxn("loadPackage", xdcO, "xdc");
62 Global.callFxn("loadPackage", xdcO, "xdc.corevers");
63 }
64
65 void $$OBJECTS()
66 {
67 pkgP = (Proto.Obj)om.bind("ti.sdo.codecs.h264enc.ce.Package", new Proto.Obj());
68 pkgV = (Value.Obj)om.bind("ti.sdo.codecs.h264enc.ce", new Value.Obj("ti.sdo.codecs.h264enc.ce", pkgP));
69 }
70
71 void H264ENC$$OBJECTS()
72 {
73 Proto.Obj po, spo;
74 Value.Obj vo;
75
76 po = (Proto.Obj)om.bind("ti.sdo.codecs.h264enc.ce.H264ENC.Module", new Proto.Obj());
77 vo = (Value.Obj)om.bind("ti.sdo.codecs.h264enc.ce.H264ENC", new Value.Obj("ti.sdo.codecs.h264enc.ce.H264ENC", po));
78 pkgV.bind("H264ENC", vo);
79 // decls
80 }
81
82 void H264ENC$$CONSTS()
83 {
84 // module H264ENC
85 }
86
87 void H264ENC$$CREATES()
88 {
89 Proto.Fxn fxn;
90 StringBuilder sb;
91
92 }
93
94 void H264ENC$$FUNCTIONS()
95 {
96 Proto.Fxn fxn;
97
98 }
99
100 void H264ENC$$SIZES()
101 {
102 }
103
104 void H264ENC$$TYPES()
105 {
106 Scriptable cap;
107 Proto.Obj po;
108 Proto.Str ps;
109 Proto.Typedef pt;
110 Object fxn;
111
112 cap = (Scriptable)Global.callFxn("loadCapsule", xdcO, "ti/sdo/codecs/h264enc/ce/H264ENC.xs");
113 om.bind("ti.sdo.codecs.h264enc.ce.H264ENC$$capsule", cap);
114 po = (Proto.Obj)om.findStrict("ti.sdo.codecs.h264enc.ce.H264ENC.Module", "ti.sdo.codecs.h264enc.ce");
115 po.init("ti.sdo.codecs.h264enc.ce.H264ENC.Module", om.findStrict("ti.sdo.ce.video2.IVIDENC2.Module", "ti.sdo.codecs.h264enc.ce"));
116 po.addFld("$hostonly", $$T_Num, 1, "r");
117 po.addFld("alg", (Proto)om.findStrict("ti.sdo.codecs.h264enc.H264ENC.Module", "ti.sdo.codecs.h264enc.ce"), om.find("ti.sdo.codecs.h264enc.H264ENC"), "rh");
118 po.addFld("ialgFxns", $$T_Str, "H264ENC_TI_IH264ENC", "rh");
119 po.addFld("iresFxns", $$T_Str, "H264ENC_TI_IRES", "rh");
120 fxn = Global.get(cap, "module$use");
121 if (fxn != null) om.bind("ti.sdo.codecs.h264enc.ce.H264ENC$$module$use", true);
122 if (fxn != null) po.addFxn("module$use", $$T_Met, fxn);
123 fxn = Global.get(cap, "module$meta$init");
124 if (fxn != null) om.bind("ti.sdo.codecs.h264enc.ce.H264ENC$$module$meta$init", true);
125 if (fxn != null) po.addFxn("module$meta$init", $$T_Met, fxn);
126 fxn = Global.get(cap, "module$validate");
127 if (fxn != null) om.bind("ti.sdo.codecs.h264enc.ce.H264ENC$$module$validate", true);
128 if (fxn != null) po.addFxn("module$validate", $$T_Met, fxn);
129 fxn = Global.get(cap, "getCreationStackSize");
130 if (fxn != null) po.addFxn("getCreationStackSize", (Proto.Fxn)om.findStrict("ti.sdo.ce.ICodec$$getCreationStackSize", "ti.sdo.codecs.h264enc.ce"), fxn);
131 fxn = Global.get(cap, "getDaramScratchSize");
132 if (fxn != null) po.addFxn("getDaramScratchSize", (Proto.Fxn)om.findStrict("ti.sdo.ce.ICodec$$getDaramScratchSize", "ti.sdo.codecs.h264enc.ce"), fxn);
133 fxn = Global.get(cap, "getSaramScratchSize");
134 if (fxn != null) po.addFxn("getSaramScratchSize", (Proto.Fxn)om.findStrict("ti.sdo.ce.ICodec$$getSaramScratchSize", "ti.sdo.codecs.h264enc.ce"), fxn);
135 fxn = Global.get(cap, "getStackSize");
136 if (fxn != null) po.addFxn("getStackSize", (Proto.Fxn)om.findStrict("ti.sdo.ce.ICodec$$getStackSize", "ti.sdo.codecs.h264enc.ce"), fxn);
137 fxn = Global.get(cap, "getUUID");
138 if (fxn != null) po.addFxn("getUUID", (Proto.Fxn)om.findStrict("ti.sdo.ce.ICodec$$getUUID", "ti.sdo.codecs.h264enc.ce"), fxn);
139 }
140
141 void H264ENC$$ROV()
142 {
143 }
144
145 void $$SINGLETONS()
146 {
147 pkgP.init("ti.sdo.codecs.h264enc.ce.Package", (Proto.Obj)om.findStrict("xdc.IPackage.Module", "ti.sdo.codecs.h264enc.ce"));
148 pkgP.bind("$capsule", $$UNDEF);
149 pkgV.init2(pkgP, "ti.sdo.codecs.h264enc.ce", Value.DEFAULT, false);