Fix a couple more crashes with incorrect KDMs (#1000).
[dcpomatic.git] / src / lib / decoder.cc
index 0d4f4babfa9db0831650529ae4ead927260dc7f3..502273de1e49f5a551110674a5d8284572dbe180 100644 (file)
@@ -52,6 +52,9 @@ Decoder::position () const
 void
 Decoder::seek (ContentTime, bool)
 {
+       if (video) {
+               video->seek ();
+       }
        if (audio) {
                audio->seek ();
        }