if (finalFormat.mOutputType == DisplayManagerAw.DISPLAY_OUTPUT_TYPE_HDMI) {
boolean isSupport = (displayManager.isSupportHdmiMode(finalFormat.mFormat) != 0);
if (!isSupport) {
Log.d(TAG, "HDMI mode " + DispList.ItemCode2Name(finalFormat)
+ " is NOT supported by the TV.");
finalFormat = DispList.HDMI_DEFAULT_FORMAT;
}
}
Log.d(TAG, "final format is " + DispList.ItemCode2Name(finalFormat));
final String srcPath = "/data/displaysetmode";
final File FILE = new File(srcPath);
final String values = new String(finalFormat.mOutputType + "\n" + finalFormat.mFormat + "\n" + curFormat.mOutputType);
// stop boot animation
// formerly we would just kill the process, but we now ask it to exit so it
// can choose where to stop the animation.
property_set("service.bootanim.exit", "1");
char value[PROPERTY_VALUE_MAX];
if((srcFp = fopen(srcPath, "r")) == NULL){
ALOGE("#####cannot open file %s to read#####",srcPath);
}
else
{
char type[4] = "";
char format[4] = "";
char lcd[4] = "";
int len1 = 4;
int len2 = 4;
int len3 = 4;
fgets(type,len1,srcFp);
fgets(format,len2,srcFp);
fgets(lcd,len3,srcFp);
int outtype = atoi(type);
int outformat = atoi(format);
int outlcd = atoi(lcd);
ALOGD("####read file %s, outtype is %d, outformat is %d, outlcd is %d",srcPath,outtype,outformat,outlcd);
if(outlcd == 1) {
ALOGD("--------lcd output-------------");
}
else
{
setDisplayProp(DISPLAY_CMD_SETDISPPARA,0,outtype,outformat);
setDisplayProp(DISPLAY_CMD_SETDISPMODE,DISPLAY_MODE_SINGLE_VAR_GPU,0,0);
}
fclose(srcFp);
}
}