aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'extrel/ti/ivahd_codecs/packages/ti/sdo/codecs/mpeg4vdec/ce/MPEG4VDEC.xs')
-rw-r--r--extrel/ti/ivahd_codecs/packages/ti/sdo/codecs/mpeg4vdec/ce/MPEG4VDEC.xs24
1 files changed, 24 insertions, 0 deletions
diff --git a/extrel/ti/ivahd_codecs/packages/ti/sdo/codecs/mpeg4vdec/ce/MPEG4VDEC.xs b/extrel/ti/ivahd_codecs/packages/ti/sdo/codecs/mpeg4vdec/ce/MPEG4VDEC.xs
new file mode 100644
index 0000000..089c407
--- /dev/null
+++ b/extrel/ti/ivahd_codecs/packages/ti/sdo/codecs/mpeg4vdec/ce/MPEG4VDEC.xs
@@ -0,0 +1,24 @@
1/*
2 * ======== MPEG4VDEC.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}