summaryrefslogtreecommitdiff
path: root/src/lib/external_audio_decoder.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2012-11-15 22:26:16 +0000
committerCarl Hetherington <cth@carlh.net>2012-11-15 22:26:16 +0000
commit4fbd1901fdabc829cfa7e7d4d0c1272bba87033c (patch)
tree416701b4a2923cdc16983311239bd311282e8438 /src/lib/external_audio_decoder.h
parentf5c40275a2dc444c295a547dfedcd8f9eee2bcb2 (diff)
Untested external audio support; AB transcodes still broken.
Diffstat (limited to 'src/lib/external_audio_decoder.h')
-rw-r--r--src/lib/external_audio_decoder.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/lib/external_audio_decoder.h b/src/lib/external_audio_decoder.h
new file mode 100644
index 000000000..3cc431479
--- /dev/null
+++ b/src/lib/external_audio_decoder.h
@@ -0,0 +1,10 @@
+#include "decoder.h"
+#include "audio_decoder.h"
+
+class ExternalAudioDecoder : public AudioDecoder
+{
+public:
+ ExternalAudioDecoder (boost::shared_ptr<Film>, boost::shared_ptr<const Options>, Job *);
+
+ bool pass ();
+};