OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:AlsaPcmOutputStream
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/media/audio/alsa/
alsa_output.cc
7
//
AlsaPcmOutputStream
object is *not* thread-safe and should only be used
102
AlsaPcmOutputStream
::InternalState state) {
104
case
AlsaPcmOutputStream
::kInError:
107
case
AlsaPcmOutputStream
::kCreated:
110
case
AlsaPcmOutputStream
::kIsOpened:
113
case
AlsaPcmOutputStream
::kIsPlaying:
116
case
AlsaPcmOutputStream
::kIsStopped:
119
case
AlsaPcmOutputStream
::kIsClosed:
126
const char
AlsaPcmOutputStream
::kDefaultDevice[] = "default";
127
const char
AlsaPcmOutputStream
::kAutoSelectDevice[] = ""
[
all
...]
alsa_output.h
17
//
AlsaPcmOutputStream
is a single threaded class that should only be used from
47
class MEDIA_EXPORT
AlsaPcmOutputStream
: public AudioOutputStream {
53
// Pass this to the
AlsaPcmOutputStream
if you want to attempt auto-selection
64
// |device_name|. The
AlsaPcmOutputStream
uses |wrapper| to communicate with
70
AlsaPcmOutputStream
(const std::string& device_name,
75
virtual ~
AlsaPcmOutputStream
();
204
// Allows us to run tasks on the
AlsaPcmOutputStream
instance which are
206
base::WeakPtrFactory<
AlsaPcmOutputStream
> weak_factory_;
220
DISALLOW_COPY_AND_ASSIGN(
AlsaPcmOutputStream
);
224
AlsaPcmOutputStream
::InternalState)
[
all
...]
Completed in 295 milliseconds