|
@@ -397,15 +397,18 @@ public class VideoJNI {
|
|
boolean bComposite = false;
|
|
boolean bComposite = false;
|
|
public void setComposite(boolean bEnable) {
|
|
public void setComposite(boolean bEnable) {
|
|
try {
|
|
try {
|
|
|
|
+ bEnable = true;
|
|
Log.d(TAG, "[setComposite] bEnable [" + bEnable + "]");
|
|
Log.d(TAG, "[setComposite] bEnable [" + bEnable + "]");
|
|
if (BOARDTYPE == BOARD_TYPE.V40_IGW300 || BOARDTYPE == BOARD_TYPE.V40) {
|
|
if (BOARDTYPE == BOARD_TYPE.V40_IGW300 || BOARDTYPE == BOARD_TYPE.V40) {
|
|
- if (bEnable) mV40IFCCD.composite(1);
|
|
+ mV40IFCCD.composite(1);
|
|
- else mV40IFCCD.composite(0);
|
|
+
|
|
|
|
+
|
|
} else if (BOARDTYPE == BOARD_TYPE.V40_IGW300_NOUGAT || BOARDTYPE == BOARD_TYPE.V40_NOUGAT) {
|
|
} else if (BOARDTYPE == BOARD_TYPE.V40_IGW300_NOUGAT || BOARDTYPE == BOARD_TYPE.V40_NOUGAT) {
|
|
|
|
|
|
bComposite = bEnable;
|
|
bComposite = bEnable;
|
|
- if (bEnable) mV40IFCCD.composite(1);
|
|
+ mV40IFCCD.composite(1);
|
|
- else mV40IFCCD.composite(0);
|
|
+
|
|
|
|
+
|
|
} else {
|
|
} else {
|
|
Log.w(TAG, "[setComposite] Not supported BOARDTYPE!! [" + BOARDTYPE + "]");
|
|
Log.w(TAG, "[setComposite] Not supported BOARDTYPE!! [" + BOARDTYPE + "]");
|
|
}
|
|
}
|