View Single Post
Old 24th June 2011, 17:49   #17572  |  Link
Underground78
Registered User
 
Underground78's Avatar
 
Join Date: Oct 2004
Location: France
Posts: 567
So everybody agrees with that:
Quote:
Originally Posted by namaiki View Post
I think it should be fine as long as animation is enabled by default. Also, I might recommend buffer set to 4 subpictures by default due to flickering subtitles on 3 when there is more than a single subtitle line on the screen.
Quote:
Originally Posted by namaiki View Post
There is the 'Apply changes immediately' checkbox in the 'Misc' tab. I suppose that could be disabled by default. (please don't get rid of it)
If everybody does, I will commit the changes and also update default settings for MPC-HC.

Edit : Here what MPC-HC does to choose if it enables or not animation when buffering :

Code:
		bool bAllowAnimationWhenBuffering = true;
		SYSTEM_INFO SysInfo;
		GetSystemInfo(&SysInfo);
		if (SysInfo.dwNumberOfProcessors < 3) {
			bAllowAnimationWhenBuffering = false;
		}
Maybe I should keep something like that ? Although I am not sure it is really useful to check the number of processors if VSFilter is not multithreaded ?

Last edited by Underground78; 24th June 2011 at 17:54.
Underground78 is offline