2016-01-06 20:02:06 +00:00
|
|
|
#pragma once
|
2015-11-18 19:59:03 +00:00
|
|
|
|
|
|
|
#include <map>
|
|
|
|
#include <memory>
|
2016-03-08 17:21:17 +00:00
|
|
|
#include "audio/AudioStream.h"
|
2015-11-18 19:59:03 +00:00
|
|
|
#include "Phone.h"
|
|
|
|
#include "centiseconds.h"
|
2016-01-28 18:13:40 +00:00
|
|
|
#include "progressBar.h"
|
2016-02-09 21:08:11 +00:00
|
|
|
#include <boost/optional/optional.hpp>
|
2015-11-18 19:59:03 +00:00
|
|
|
|
2016-02-09 21:08:11 +00:00
|
|
|
std::map<centiseconds, Phone> detectPhones(
|
2016-03-07 20:28:31 +00:00
|
|
|
std::unique_ptr<AudioStream> audioStream,
|
2016-02-09 21:08:11 +00:00
|
|
|
boost::optional<std::string> dialog,
|
|
|
|
ProgressSink& progressSink);
|