blob: 3fb34cf744214f6ba3feec57ad1066a0b4335429 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
diff -uNr ticodecplugin/src/gstticodecplugin_dm6467.cfg ticodecplugin/src/gstticodecplugin_dm6467.cfg
--- ticodecplugin/src/gstticodecplugin_dm6467.cfg 2010-03-01 10:31:05.000000000 +0000
+++ ticodecplugin/src/gstticodecplugin_dm6467.cfg 2010-03-01 11:12:14.000000000 +0000
@@ -29,25 +29,15 @@
* ======== Engine Configuration ========
*/
var Engine = xdc.useModule('ti.sdo.ce.Engine');
-var decodeEngine = Engine.createFromServer(
- "decode",
- "./decodeCombo.x64P",
- "ti.sdo.servers.decode"
+var demoEngine = Engine.createFromServer(
+ "codecServer",
+ "./bin/cs.x64P",
+ "ti.sdo.server.cs"
);
-var encodeEngine = Engine.createFromServer(
- "encode",
- "./encodeCombo.x64P",
- "ti.sdo.servers.encode"
- );
-
-var encpath = "" + java.lang.System.getenv("ENCODE_COMBO");
-if (encpath != "" && encpath != "null") {
- encodeEngine.server = java.lang.System.getenv("ENCODE_COMBO");
-}
-var decpath = "" + java.lang.System.getenv("DECODE_COMBO");
-if (decpath != "" && decpath != "null") {
- decodeEngine.server = java.lang.System.getenv("DECODE_COMBO");
+var combopath = "" + java.lang.System.getenv("CODEC_SERVER");
+if (combopath != "" && combopath != "null") {
+ demoEngine.server = java.lang.System.getenv("CODEC_SERVER");
}
/* Load support for the 'Davinci Multimedia Application Interface' modules */
|