Basic grunt-work, untested and unfinished, but it compiles.
[dcpomatic.git] / test / audio_decoder_test.cc
index 92c99a378065389c800ba459682ecb6e785d8983..6e92c48dedaabb7f63744fcfe4bd506199b044f3 100644 (file)
 #include "lib/content.h"
 #include "lib/audio_decoder.h"
 #include "lib/audio_content.h"
+#include "lib/content_factory.h"
+#include "lib/dcp_content_type.h"
+#include "lib/ratio.h"
 #include "lib/film.h"
 #include <boost/test/unit_test.hpp>
-#include <boost/make_shared.hpp>
 #include <cassert>
 #include <iostream>
 
@@ -36,7 +38,6 @@ using std::string;
 using std::cout;
 using std::min;
 using boost::shared_ptr;
-using boost::make_shared;
 
 class TestAudioContent : public Content
 {
@@ -68,17 +69,17 @@ public:
                : _test_audio_content (content)
                , _position (0)
        {
-               audio.reset (new AudioDecoder (this, content->audio, false, log));
+               audio.reset (new AudioDecoder (this, content->audio, log));
        }
 
-       bool pass (PassReason, bool)
+       bool pass ()
        {
                Frame const N = min (
                        Frame (2000),
                        _test_audio_content->audio_length() - _position
                        );
 
-               shared_ptr<AudioBuffers> buffers = make_shared<AudioBuffers> (_test_audio_content->audio->stream()->channels(), N);
+               shared_ptr<AudioBuffers> buffers (new AudioBuffers (_test_audio_content->audio->stream()->channels(), N));
                for (int i = 0; i < _test_audio_content->audio->stream()->channels(); ++i) {
                        for (int j = 0; j < N; ++j) {
                                buffers->data(i)[j] = j + _position;
@@ -93,7 +94,6 @@ public:
 
        void seek (ContentTime t, bool accurate)
        {
-               audio->seek (t, accurate);
                _position = t.frames_round (_test_audio_content->audio->resampled_frame_rate ());
        }
 
@@ -151,3 +151,18 @@ BOOST_AUTO_TEST_CASE (audio_decoder_get_audio_test)
                }
        }
 }
+
+BOOST_AUTO_TEST_CASE (audio_decoder_test)
+{
+       shared_ptr<Film> film = new_test_film ("analyse_audio_test");
+       film->set_container (Ratio::from_id ("185"));
+       film->set_dcp_content_type (DCPContentType::from_isdcf_name ("TLR"));
+       film->set_name ("frobozz");
+       shared_ptr<Content> content = content_factory(film, private_data / "20 The Wedding Convoy Song.m4a").front();
+       film->examine_and_add_content (content);
+       wait_for_jobs ();
+
+       content->set_trim_start (ContentTime::from_seconds (60));
+       film->make_dcp ();
+       BOOST_CHECK (!wait_for_jobs ());
+}