Postby structi » 28 Jun 2012 09:58
Thanks for reply;
I setted my device as root and tried antutu and more software for overclocking. Those software could not increase CPU speed. Maximum speed is still 720mhz.
In Vlc android source code there is a file "libvlc-module.c"
#define INPUT_PREFERREDRESOLUTION_TEXT N_("Preferred video resolution")
#define INPUT_PREFERREDRESOLUTION_LONGTEXT N_( \
"When several video formats are available, select one whose " \
"resolution is closest to (but not higher than) this setting, " \
"in number of lines. Use this option if you don't have enough CPU " \
"power or network bandwidth to play higher resolutions.")
static const int pi_prefres[] = { -1, 1080, 720, 576, 360, 240 };
static const char *const ppsz_prefres[] = {
N_("Best available"), N_("Full HD (1080p)"), N_("HD (720p)"),
N_("Standard Definition (576 or 480 lines)"),
N_("Low Definition (360 lines)"),
N_("Very Low Definition (240 lines)"),
};
I modifed those reverse order and compiled again. But video couldn't play smootly.
Later I changed as below and compiled again. But video couldn't play smootly too. Seemed as if no change has been observed.
#define INPUT_PREFERREDRESOLUTION_TEXT N_("Preferred video resolution")
#define INPUT_PREFERREDRESOLUTION_LONGTEXT N_( \
"When several video formats are available, select one whose " \
"resolution is closest to (but not higher than) this setting, " \
"in number of lines. Use this option if you don't have enough CPU " \
"power or network bandwidth to play higher resolutions.")
static const int pi_prefres[] = { 240 };
static const char *const ppsz_prefres[] = {
N_("Very Low Definition (240 lines)"),
};
What can I do?