summaryrefslogtreecommitdiff
path: root/src/lib/encoder.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2012-11-10 13:19:09 +0000
committerCarl Hetherington <cth@carlh.net>2012-11-10 13:19:09 +0000
commit3d9b5186aa39150e53aef3bab09f4350f85cb885 (patch)
treeaec2493b2d319f2694ebe7304990c6addb702fc7 /src/lib/encoder.h
parent5c225839172ce9f0a9be81dabfbbeb3190a9ff20 (diff)
More various AudioStream hacks.
Diffstat (limited to 'src/lib/encoder.h')
-rw-r--r--src/lib/encoder.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/encoder.h b/src/lib/encoder.h
index 2d9780b52..e04397f78 100644
--- a/src/lib/encoder.h
+++ b/src/lib/encoder.h
@@ -55,7 +55,7 @@ public:
Encoder (boost::shared_ptr<const Film> f, boost::shared_ptr<const Options> o);
/** Called to indicate that a processing run is about to begin */
- virtual void process_begin (int64_t audio_channel_layout) = 0;
+ virtual void process_begin () {}
/** Call with a frame of video.
* @param i Video frame image.
@@ -68,7 +68,7 @@ public:
void process_audio (boost::shared_ptr<const AudioBuffers>, int64_t);
/** Called when a processing run has finished */
- virtual void process_end () = 0;
+ virtual void process_end () {}
float current_frames_per_second () const;
bool skipping () const;