mirror of
https://github.com/game-stop/veejay.git
synced 2025-12-20 14:50:01 +01:00
correct timer threshold for warning message
This commit is contained in:
@@ -2744,9 +2744,8 @@ static void veejay_playback_cycle(veejay_t * info)
|
||||
#else
|
||||
info->real_fps = 0;
|
||||
#endif
|
||||
if( info->real_fps > (1000* settings->spvf * 2.0f) && info->audio ) {
|
||||
if( info->real_fps > (1000* settings->spvf ) && info->audio ) {
|
||||
veejay_msg(VEEJAY_MSG_WARNING, "Decoding video frame takes too long! (measured %ld ms).", info->real_fps);
|
||||
|
||||
}
|
||||
|
||||
if(!info->audio && skipv ) continue;
|
||||
|
||||
Reference in New Issue
Block a user