From ca4d051ceafb77c281583c4e50b391f230544313 Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Mon, 5 Nov 2012 10:36:55 +0000 Subject: Move trimming into the encoder; seems to be cleaner. --- src/lib/decoder.h | 22 ++++++---------------- 1 file changed, 6 insertions(+), 16 deletions(-) (limited to 'src/lib/decoder.h') diff --git a/src/lib/decoder.h b/src/lib/decoder.h index 2154da8bf..9f47bf425 100644 --- a/src/lib/decoder.h +++ b/src/lib/decoder.h @@ -52,7 +52,7 @@ class FilterGraph; class Decoder { public: - Decoder (boost::shared_ptr, boost::shared_ptr, Job *, bool); + Decoder (boost::shared_ptr, boost::shared_ptr, Job *); virtual ~Decoder (); /* Methods to query our input video */ @@ -80,9 +80,8 @@ public: void process_end (); void go (); - /** @return the number of video frames we got from the source in the last run */ - SourceFrame video_frames_in () const { - return _video_frames_in; + SourceFrame video_frame () const { + return _video_frame; } virtual std::vector audio_streams () const { @@ -101,7 +100,7 @@ public: boost::signals2::signal, SourceFrame, boost::shared_ptr)> Video; /** Emitted when some audio data is ready */ - boost::signals2::signal)> Audio; + boost::signals2::signal, int64_t)> Audio; protected: @@ -121,21 +120,12 @@ protected: /** associated Job, or 0 */ Job* _job; - /** true to do the bare minimum of work; just run through the content. Useful for acquiring - * accurate frame counts as quickly as possible. This generates no video or audio output. - */ - bool _minimal; - private: void emit_video (boost::shared_ptr, boost::shared_ptr); void emit_audio (boost::shared_ptr); - int64_t video_frames_to_audio_frames (SourceFrame v) const; - - SourceFrame _video_frames_in; - SourceFrame _video_frames_out; - int64_t _audio_frames_in; - int64_t _audio_frames_out; + SourceFrame _video_frame; + int64_t _audio_frame; std::list > _filter_graphs; -- cgit v1.2.3