summaryrefslogtreecommitdiff
path: root/src/lib/trimmer.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/trimmer.h')
-rw-r--r--src/lib/trimmer.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/lib/trimmer.h b/src/lib/trimmer.h
index ff7e9514d..98a118fb2 100644
--- a/src/lib/trimmer.h
+++ b/src/lib/trimmer.h
@@ -24,8 +24,8 @@ class Trimmer : public AudioVideoProcessor
public:
Trimmer (boost::shared_ptr<Log>, int, int, int, int, float, int);
- void process_video (boost::shared_ptr<Image> i, bool, boost::shared_ptr<Subtitle> s);
- void process_audio (boost::shared_ptr<AudioBuffers>);
+ void process_video (boost::shared_ptr<const Image> i, bool, boost::shared_ptr<Subtitle> s);
+ void process_audio (boost::shared_ptr<const AudioBuffers>);
private:
friend class trimmer_test;
@@ -36,4 +36,5 @@ private:
int64_t _audio_start;
int64_t _audio_end;
int64_t _audio_in;
+ bool _no_trim;
};