rendertask: initialize nb_frames

The code path doesn't ever use this value uninitialized, but GCC is unaware
and still presents a warning.
This commit is contained in:
itsmattkc
2020-06-05 15:53:07 +10:00
parent 33e3225c89
commit 242994c736
+1 -1
View File
@@ -83,7 +83,7 @@ void RenderTask::Render(const TimeRangeList& video_range,
// Get hashes for each frame and group likes together
int progress_counter = 0;
int nb_frames;
int nb_frames = 0;
QMap<QByteArray, rational> times_to_render;