X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;ds=sidebyside;f=futatabi%2Fmain.cpp;h=69ef55bedc33b89f2f85ad156e13e3b3708412c7;hb=c20c3629e863bef3530f9f76b47fac0c93ba5b6f;hp=5f262353eed6a55246286a557af0456ae2608528;hpb=647810a468e01fab5d7f0fcd122565ab000a2e73;p=nageru diff --git a/futatabi/main.cpp b/futatabi/main.cpp index 5f26235..69ef55b 100644 --- a/futatabi/main.cpp +++ b/futatabi/main.cpp @@ -282,7 +282,7 @@ void load_frame_file(const char *filename, const string &basename, unsigned file if (!all_frames.empty()) { // We already had this cached in the database, so no need to look in the file. for (const DB::FrameOnDiskAndStreamIdx &frame : all_frames) { - if (frame.stream_idx >= 0 && frame.stream_idx < MAX_STREAMS) { + if (frame.stream_idx < MAX_STREAMS) { frames[frame.stream_idx].push_back(frame.frame); start_pts = max(start_pts, frame.frame.pts); }