aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'extrel/ti/ivahd_codecs/packages/ti/sdo/codecs/jpegvdec/package.xs')
-rw-r--r--extrel/ti/ivahd_codecs/packages/ti/sdo/codecs/jpegvdec/package.xs37
1 files changed, 37 insertions, 0 deletions
diff --git a/extrel/ti/ivahd_codecs/packages/ti/sdo/codecs/jpegvdec/package.xs b/extrel/ti/ivahd_codecs/packages/ti/sdo/codecs/jpegvdec/package.xs
new file mode 100644
index 0000000..4adafe9
--- /dev/null
+++ b/extrel/ti/ivahd_codecs/packages/ti/sdo/codecs/jpegvdec/package.xs
@@ -0,0 +1,37 @@
1/*
2 * ======== package.xs ========
3 *
4 */
5
6/*
7 * ======== getLibs ========
8 */
9function getLibs(prog)
10{
11 var lib = null;
12
13 if (prog.build.target.isa == "v7M" || prog.build.target.isa == "v7M4") {
14 if ( this.JPEGVDEC.watermark == false ) {
15 lib = "lib/jpegvdec_ti_host.lib";
16 }
17 else {
18 lib = null;
19 }
20 print(" will link with " + this.$name + ":" + lib);
21 }
22 return (lib);
23}
24
25/*
26 * ======== getSects ========
27 */
28function getSects()
29{
30 var template = null;
31
32 if (prog.build.target.isa == "v7M" || prog.build.target.isa == "v7M4") {
33 template = "ti/sdo/codecs/jpegvdec/link.xdt";
34 }
35
36 return (template);
37}