summaryrefslogtreecommitdiff
path: root/src/lib/video_decoder.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2013-05-22 17:36:11 +0100
committerCarl Hetherington <cth@carlh.net>2013-05-22 17:36:11 +0100
commit596441a4e8cf03a88113646ca6da2f90e721a38b (patch)
treebf364e57aecc1f019d69b8faf32b8818eaa9d98b /src/lib/video_decoder.h
parent11c70b0e3051517e7bb96a7d6fa53053dab6e978 (diff)
Various hacks.
Diffstat (limited to 'src/lib/video_decoder.h')
-rw-r--r--src/lib/video_decoder.h27
1 files changed, 6 insertions, 21 deletions
diff --git a/src/lib/video_decoder.h b/src/lib/video_decoder.h
index 147dc60be..3a3bc252a 100644
--- a/src/lib/video_decoder.h
+++ b/src/lib/video_decoder.h
@@ -30,39 +30,24 @@ class VideoDecoder : public VideoSource, public virtual Decoder
public:
VideoDecoder (boost::shared_ptr<const Film>, boost::shared_ptr<const VideoContent>);
+ /* Calls for VideoContent to find out about itself */
+
/** @return video frame rate second, or 0 if unknown */
virtual float video_frame_rate () const = 0;
- /** @return native size in pixels */
- virtual libdcp::Size native_size () const = 0;
+ /** @return video size in pixels */
+ virtual libdcp::Size video_size () const = 0;
/** @return length according to our content's header */
virtual ContentVideoFrame video_length () const = 0;
- virtual int time_base_numerator () const = 0;
- virtual int time_base_denominator () const = 0;
- virtual int sample_aspect_ratio_numerator () const = 0;
- virtual int sample_aspect_ratio_denominator () const = 0;
-
- void set_progress (Job *) const;
-
- int video_frame () const {
- return _video_frame;
- }
-
- Time last_content_time () const {
- return _last_content_time;
- }
-
protected:
- virtual PixelFormat pixel_format () const = 0;
-
void emit_video (boost::shared_ptr<Image>, bool, Time);
void emit_subtitle (boost::shared_ptr<TimedSubtitle>);
+ Time _next_video;
+
private:
boost::shared_ptr<const VideoContent> _video_content;
- int _video_frame;
- Time _last_content_time;
boost::shared_ptr<TimedSubtitle> _timed_subtitle;
};