You've already forked libopenshot
mirror of
https://github.com/OpenShot/libopenshot.git
synced 2026-03-02 08:53:52 -08:00
Reducing pre-roll to 12 frames
This commit is contained in:
@@ -16,7 +16,6 @@
|
||||
#include "Exceptions.h"
|
||||
#include "Frame.h"
|
||||
#include "OpenMPUtilities.h"
|
||||
#include "ZmqLogger.h"
|
||||
|
||||
#include <algorithm>
|
||||
#include <thread> // for std::this_thread::sleep_for
|
||||
@@ -28,7 +27,7 @@ namespace openshot
|
||||
VideoCacheThread::VideoCacheThread()
|
||||
: Thread("video-cache"), speed(1), is_playing(false),
|
||||
reader(NULL), current_display_frame(1), cached_frame_count(0),
|
||||
min_frames_ahead(24), max_frames_ahead(OPEN_MP_NUM_PROCESSORS * 6)
|
||||
min_frames_ahead(12), max_frames_ahead(OPEN_MP_NUM_PROCESSORS * 6)
|
||||
{
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user