Reply to thread

Re: AW: Late dynamic refreshrate changer or fps detection without mediainfo




I think there is no such available. And adding such should be done as a callback.




It is safer to put whole thread function inside a "try". In future if someone adds new code he/she might forgot the "try" for the new code.




TV's usually handle both 23.976 and 24. Those both are required since for example Blu-rays can be having both fps. 29.97 and 30 is next such pair that would fail :) Why limit the 1 Hz as difference? (Math.Abs(fps - newfps) > 1 <-- does such, not wth 0.1). Basicly you would be making an assumption that if the 1st and 2nd queries produce close enough match the 1st one was correct (while it can be as much wrong as with greater than 1 hz difference). Just remove the 1 Hz check and the result are better :)


Top Bottom