]> git.sesse.net Git - casparcg/blobdiff - modules/ffmpeg/producer/video/video_decoder.h
2.0. Updated namespaces.
[casparcg] / modules / ffmpeg / producer / video / video_decoder.h
index 962c34e52059101c338c20eb6862082cafe66717..1351e881bf0f5ee35fd8b4e2ac078b30d077f4ad 100644 (file)
 \r
 #include <core/video_format.h>\r
 \r
-struct AVStream;\r
+#include <boost/noncopyable.hpp>\r
+\r
+#include <vector>\r
+\r
+struct AVFormatContext;\r
+struct AVFrame;\r
+struct AVPacket;\r
 \r
 namespace caspar {\r
 \r
@@ -32,16 +38,21 @@ namespace core {
        class write_frame;\r
 }\r
 \r
+namespace ffmpeg {\r
+\r
 class video_decoder : boost::noncopyable\r
 {\r
 public:\r
-       explicit video_decoder(const std::shared_ptr<AVFormatContext>& context, const safe_ptr<core::frame_factory>& frame_factory, const std::wstring& filter);\r
+       explicit video_decoder(const safe_ptr<AVFormatContext>& context, const safe_ptr<core::frame_factory>& frame_factory, const std::wstring& filter);\r
        \r
        void push(const std::shared_ptr<AVPacket>& packet);\r
        bool ready() const;\r
-       std::vector<safe_ptr<core::write_frame>> poll();\r
+       std::vector<std::shared_ptr<AVFrame>> poll();\r
+       \r
+       size_t width() const;\r
+       size_t height() const;\r
 \r
-       core::video_mode::type mode();\r
+       int64_t nb_frames() const;\r
 \r
        double fps() const;\r
 private:\r
@@ -49,4 +60,4 @@ private:
        safe_ptr<implementation> impl_;\r
 };\r
 \r
-}
\ No newline at end of file
+}}
\ No newline at end of file