blob: 761af64cbdca817517b07463c300a6f8d9c4b366 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
/*
* ======== H264ENC.xs ========
* This file implements the functions specified in the ti.sdo.ce.ICodec
* interface. These functions enable the configuration tool to validate
* user supplied configuration parameters (e.g., stack size for the
* thread running this codec).
*/
var verbose = false; /* set to true to enable verbose output during config */
/*
* ======== getStackSize ========
*/
function getStackSize(prog)
{
if (verbose) {
print("getting stack size for " + this.$name
+ " built for the target " + prog.build.target.$name
+ ", running on platform " + prog.platformName);
}
return (4096);
}
|