diff options
Diffstat (limited to 'extrel/ti/ivahd_codecs/packages/ti/sdo/codecs/h264enc/ce/H264ENC.xs')
-rw-r--r-- | extrel/ti/ivahd_codecs/packages/ti/sdo/codecs/h264enc/ce/H264ENC.xs | 24 |
1 files changed, 24 insertions, 0 deletions
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 | |||
9 | var verbose = false; /* set to true to enable verbose output during config */ | ||
10 | |||
11 | |||
12 | /* | ||
13 | * ======== getStackSize ======== | ||
14 | */ | ||
15 | function 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 | } | ||