From bfc0b96db6cc6c2e94d93f9c4239adca14a6bb0c Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Tue, 16 Jul 2013 22:20:39 +0100 Subject: More noncopyable. --- src/lib/ffmpeg_content.cc | 19 ------------------- 1 file changed, 19 deletions(-) (limited to 'src/lib/ffmpeg_content.cc') diff --git a/src/lib/ffmpeg_content.cc b/src/lib/ffmpeg_content.cc index 487325d71..4c9b1d166 100644 --- a/src/lib/ffmpeg_content.cc +++ b/src/lib/ffmpeg_content.cc @@ -82,19 +82,6 @@ FFmpegContent::FFmpegContent (shared_ptr f, shared_ptroptional_number_child ("FirstVideo"); } -FFmpegContent::FFmpegContent (FFmpegContent const & o) - : Content (o) - , VideoContent (o) - , AudioContent (o) - , SubtitleContent (o) - , _subtitle_streams (o._subtitle_streams) - , _subtitle_stream (o._subtitle_stream) - , _audio_streams (o._audio_streams) - , _audio_stream (o._audio_stream) -{ - -} - void FFmpegContent::as_xml (xmlpp::Node* node) const { @@ -333,12 +320,6 @@ FFmpegSubtitleStream::as_xml (xmlpp::Node* root) const root->add_child("Id")->add_child_text (lexical_cast (id)); } -shared_ptr -FFmpegContent::clone () const -{ - return shared_ptr (new FFmpegContent (*this)); -} - Time FFmpegContent::length () const { -- cgit v1.2.3