diff options
| author | Carl Hetherington <cth@carlh.net> | 2018-11-21 02:45:30 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2018-11-21 02:45:30 +0000 |
| commit | 84012cdd64f451891febd36154b7226ea21a899b (patch) | |
| tree | 096fb898aa14d936dfc8f8598a6908337508233c /src/lib/video_mxf_decoder.h | |
| parent | 254b3044d72de6b033d7c584f5abd2b9aa70aad5 (diff) | |
Put Film pointer into Decoder.
Diffstat (limited to 'src/lib/video_mxf_decoder.h')
| -rw-r--r-- | src/lib/video_mxf_decoder.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/video_mxf_decoder.h b/src/lib/video_mxf_decoder.h index 6b5b328ac..3e3760d97 100644 --- a/src/lib/video_mxf_decoder.h +++ b/src/lib/video_mxf_decoder.h @@ -28,10 +28,10 @@ class Log; class VideoMXFDecoder : public Decoder { public: - VideoMXFDecoder (boost::shared_ptr<const VideoMXFContent>); + VideoMXFDecoder (boost::shared_ptr<const Film> film, boost::shared_ptr<const VideoMXFContent>); - bool pass (boost::shared_ptr<const Film> film); - void seek (boost::shared_ptr<const Film> film, ContentTime t, bool accurate); + bool pass (); + void seek (ContentTime t, bool accurate); private: |
