OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:MonoPipe
(Results
1 - 6
of
6
) sorted by null
/frameworks/av/media/libnbaio/include_mono/media/nbaio/
MonoPipeReader.h
20
#include "
MonoPipe
.h"
29
// Construct a MonoPipeReader and associate it with a
MonoPipe
;
31
// There can be only a single MonoPipeReader per
MonoPipe
.
32
// FIXME make this constructor a factory method of
MonoPipe
.
33
MonoPipeReader(
MonoPipe
* pipe);
57
MonoPipe
* pipe() const { return mPipe; }
61
MonoPipe
* const mPipe;
MonoPipe.h
29
//
MonoPipe
is similar to Pipe except:
35
class
MonoPipe
: public NBAIO_Sink {
44
MonoPipe
(size_t reqFrames, const NBAIO_Format& format, bool writeCanBlock = false);
45
virtual ~
MonoPipe
();
67
// See throttling mechanism in
MonoPipe
::write()
/frameworks/av/media/libnbaio/
MonoPipe.cpp
19
#define LOG_TAG "
MonoPipe
"
26
#include <media/nbaio/
MonoPipe
.h>
32
MonoPipe
::
MonoPipe
(size_t reqFrames, const NBAIO_Format& format, bool writeCanBlock) :
50
MonoPipe
::~
MonoPipe
()
55
ssize_t
MonoPipe
::availableToWrite()
66
ssize_t
MonoPipe
::write(const void *buffer, size_t count)
165
void
MonoPipe
::setAvgFrames(size_t setpoint)
170
void
MonoPipe
::shutdown(bool newState
[
all
...]
MonoPipeReader.cpp
26
MonoPipeReader::MonoPipeReader(
MonoPipe
* pipe) :
/hardware/libhardware/modules/audio_remote_submix/
audio_hw.cpp
41
#include <media/nbaio/
MonoPipe
.h>
65
// NOTE: This value will be rounded up to the nearest power of 2 by
MonoPipe
().
67
// Value used to divide the
MonoPipe
() buffer into segments that are written to the source and
68
// read from the sink. The maximum latency of the device is the size of the
MonoPipe
's buffer
69
// the minimum latency is the
MonoPipe
buffer size divided by this value.
156
sp<
MonoPipe
> rsxSink;
421
// Create a
MonoPipe
with optional blocking set to true.
422
MonoPipe
* sink = new
MonoPipe
(buffer_size_frames, format, true /*writeCanBlock*/);
458
// to these objects via StrongPointer (sp<
MonoPipe
> and sp<MonoPipeReader>) which they can us
[
all
...]
/frameworks/av/services/audioflinger/
Threads.cpp
50
#include <media/nbaio/
MonoPipe
.h>
[
all
...]
Completed in 74 milliseconds