]> git.sesse.net Git - casparcg/blobdiff - modules/ffmpeg/producer/input/input.h
[ffmpeg] Removed FFMPEG_Resource to simplify code and documented streaming video...
[casparcg] / modules / ffmpeg / producer / input / input.h
index 28dd7f480322f7fca42382113abb7d7d5827f896..eb4dc903ad1dd6a40400c0d961be3b0b8230d8c6 100644 (file)
@@ -43,13 +43,13 @@ namespace diagnostics {
 class graph;
 
 }
-        
+
 namespace ffmpeg {
 
 class input : boost::noncopyable
 {
 public:
-       explicit input(const spl::shared_ptr<diagnostics::graph>& graph, const std::wstring& filename, FFMPEG_Resource resource_type, bool loop, uint32_t start, uint32_t length, bool thumbnail_mode, const ffmpeg_options& vid_params);
+       explicit input(const spl::shared_ptr<diagnostics::graph>& graph, const std::wstring& url_or_file, bool loop, uint32_t start, uint32_t length, bool thumbnail_mode, const ffmpeg_options& vid_params);
 
        bool                                                            try_pop(std::shared_ptr<AVPacket>& packet);
        bool                                                            eof() const;
@@ -72,5 +72,5 @@ private:
        std::shared_ptr<implementation> impl_;
 };
 
-       
+
 }}