summaryrefslogtreecommitdiff
path: root/test/audio_processor_test.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2016-05-16 23:46:51 +0100
committerCarl Hetherington <cth@carlh.net>2016-05-18 11:50:29 +0100
commitd60b9d006fee94fab80ee86fe1149de7f2e76750 (patch)
treee7821dc323ec6e3b53bf25266350e355c4de0fc0 /test/audio_processor_test.cc
parent3ce77bc8f0f047725f40a5f1725833fce5f8db63 (diff)
Remove Sndfile code and use FFmpeg instead.
Diffstat (limited to 'test/audio_processor_test.cc')
-rw-r--r--test/audio_processor_test.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/audio_processor_test.cc b/test/audio_processor_test.cc
index a668a7e09..652c3dc5f 100644
--- a/test/audio_processor_test.cc
+++ b/test/audio_processor_test.cc
@@ -21,7 +21,7 @@
#include "lib/analyse_audio_job.h"
#include "lib/dcp_content_type.h"
#include "lib/job_manager.h"
-#include "lib/sndfile_content.h"
+#include "lib/ffmpeg_content.h"
#include "lib/film.h"
#include "test.h"
#include <boost/test/unit_test.hpp>
@@ -33,7 +33,7 @@ BOOST_AUTO_TEST_CASE (audio_processor_test)
{
shared_ptr<Film> film = new_test_film ("audio_processor_test");
film->set_name ("audio_processor_test");
- shared_ptr<SndfileContent> c (new SndfileContent (film, "test/data/white.wav"));
+ shared_ptr<FFmpegContent> c (new FFmpegContent (film, "test/data/white.wav"));
film->examine_and_add_content (c);
wait_for_jobs ();