Updated cs_CZ translation from Tomáš Begeni.
[dcpomatic.git] / src / lib / ffmpeg_image_proxy.h
index f4e5bf66c57a626e5c5727ea7cf306807de5c76d..df8301f15a183cd11b4517728ebb422fad4bece7 100644 (file)
@@ -19,7 +19,6 @@
 */
 
 #include "image_proxy.h"
-#include "types.h"
 #include <dcp/array_data.h>
 #include <boost/thread/mutex.hpp>
 #include <boost/filesystem.hpp>
@@ -32,14 +31,14 @@ public:
        FFmpegImageProxy (std::shared_ptr<Socket> socket);
 
        Result image (
-               bool aligned,
+               Image::Alignment alignment,
                boost::optional<dcp::Size> size = boost::optional<dcp::Size> ()
-               ) const;
+               ) const override;
 
-       void add_metadata (xmlpp::Node *) const;
-       void write_to_socket (std::shared_ptr<Socket>) const;
-       bool same (std::shared_ptr<const ImageProxy> other) const;
-       size_t memory_used () const;
+       void add_metadata (xmlpp::Node *) const override;
+       void write_to_socket (std::shared_ptr<Socket>) const override;
+       bool same (std::shared_ptr<const ImageProxy> other) const override;
+       size_t memory_used () const override;
 
        int avio_read (uint8_t* buffer, int const amount);
        int64_t avio_seek (int64_t const pos, int whence);