Cleanup: remove unused method.
authorCarl Hetherington <cth@carlh.net>
Fri, 5 Jan 2024 00:38:50 +0000 (01:38 +0100)
committerCarl Hetherington <cth@carlh.net>
Fri, 5 Jan 2024 16:09:05 +0000 (17:09 +0100)
src/lib/audio_content.cc
src/lib/audio_content.h

index bd857b313d418da8fcc674ee25f8abd3ed8f3221..be81d46d618e6c884dc30650fa01f9eccc6bfeff 100644 (file)
@@ -351,18 +351,6 @@ AudioContent::add_properties (shared_ptr<const Film> film, list<UserProperty>& p
 }
 
 
-void
-AudioContent::set_streams (vector<AudioStreamPtr> streams)
-{
-       ContentChangeSignaller cc (_parent, AudioContentProperty::STREAMS);
-
-       {
-               boost::mutex::scoped_lock lm (_mutex);
-               _streams = streams;
-       }
-}
-
-
 AudioStreamPtr
 AudioContent::stream () const
 {
index 18f826ee6dbe9751f9a3d96efbbdd7373a20326a..084871c8ba8bb6e6da951e0faa885fa6f9532596 100644 (file)
@@ -96,7 +96,6 @@ public:
 
        void add_stream (AudioStreamPtr stream);
        void set_stream (AudioStreamPtr stream);
-       void set_streams (std::vector<AudioStreamPtr> streams);
        AudioStreamPtr stream () const;
 
        void add_properties (std::shared_ptr<const Film> film, std::list<UserProperty> &) const;