Missing stop emission for fully-timed FFmpeg subtitles; should fix #1101.
[dcpomatic.git] / src / lib / image_filename_sorter.h
index e1932beadb5aa40b893190b89f90c95b851132c8..2a15639cea4a487f8af0c07d1d992ccf748ec0a5 100644 (file)
@@ -19,6 +19,7 @@
 */
 
 #include <boost/filesystem.hpp>
+#include <boost/optional.hpp>
 
 class ImageFilenameSorter
 {
@@ -26,5 +27,5 @@ public:
        bool operator() (boost::filesystem::path a, boost::filesystem::path b);
 
 private:
-       std::list<int> extract_numbers (boost::filesystem::path p);
+       boost::optional<int> extract_numbers (boost::filesystem::path p);
 };