Skip to content

Commit

Permalink
[android;aml] On WeTek Core (S812) we need to set resolution to 1080p…
Browse files Browse the repository at this point in the history
…23hz for 23.976 material or frame rate automation will pick up the wrong timing. This should also reduce (if not fix at all) the few milliseconds of garbled output when seeking caused by HDCP
  • Loading branch information
christiantroy committed Dec 18, 2015
1 parent a982c7c commit ff98bf2
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion xbmc/windowing/egl/EGLNativeTypeAmlAndroid.cpp
Expand Up @@ -155,7 +155,11 @@ bool CEGLNativeTypeAmlAndroid::SetNativeResolution(const RESOLUTION_INFO &res)
return SetDisplayResolution("4k2ksmpte");
break;
default:
return SetDisplayResolution("1080p24hz");
if (aml_get_device_type() == AML_DEVICE_TYPE_M8M2) {
return SetDisplayResolution("1080p23hz");
} else {
return SetDisplayResolution("1080p24hz");
}
break;
}
break;
Expand Down

0 comments on commit ff98bf2

Please sign in to comment.