Searched refs:mStarted (Results 1 - 25 of 97) sorted by path

1234

/frameworks/av/cmds/stagefright/
H A DSineSource.cpp13 : mStarted(false),
22 if (mStarted) {
28 CHECK(!mStarted);
34 mStarted = true;
40 CHECK(mStarted);
45 mStarted = false;
H A DSineSource.h30 bool mStarted; member in struct:android::SineSource
/frameworks/av/include/media/stagefright/
H A DAACWriter.h52 bool mStarted; member in struct:android::AACWriter
H A DAMRWriter.h49 bool mStarted; member in struct:android::AMRWriter
H A DAudioPlayer.h90 bool mStarted; member in class:android::AudioPlayer
H A DAudioSource.h82 bool mStarted; member in struct:android::AudioSource
H A DCameraSource.h201 bool mStarted; member in class:android::CameraSource
H A DJPEGSource.h44 bool mStarted; member in struct:android::JPEGSource
H A DMPEG2TSWriter.h64 bool mStarted; member in struct:android::MPEG2TSWriter
H A DMPEG4Writer.h84 bool mStarted; // Writer thread + track threads started successfully member in class:android::MPEG4Writer
H A DMediaAdapter.h68 bool mStarted; member in struct:android::MediaAdapter
H A DMediaCodecSource.h113 bool mStarted; member in struct:android::MediaCodecSource
H A DSurfaceMediaSource.h212 // mStarted is a flag to check if the recording is going on
213 bool mStarted; member in class:android::SurfaceMediaSource
/frameworks/av/media/libmediaplayerservice/
H A DStagefrightRecorder.cpp77 mStarted(false) {
894 if ((status == OK) && (!mStarted)) {
895 mStarted = true;
1733 if (!mStarted) {
1756 if (!mStarted) {
1810 if (mStarted) {
1811 mStarted = false;
H A DStagefrightRecorder.h134 bool mStarted; member in struct:android::StagefrightRecorder
/frameworks/av/media/libmediaplayerservice/nuplayer/
H A DGenericSource.cpp90 mStarted = false;
530 mStarted = true;
538 mStarted = false;
550 mStarted = false;
556 mStarted = true;
879 if (audio && !mStarted) {
1237 if (!mStarted) {
H A DGenericSource.h226 bool mStarted; member in struct:android::NuPlayer::GenericSource
H A DNuPlayer.cpp190 mStarted(false),
655 (mSource != NULL && mStarted && mSource->getFormat(false /* audio */) != NULL
658 // Need to check mStarted before calling mSource->getFormat because NuPlayer might
660 // When mStarted is true, mSource must have been set.
661 if (mSource == NULL || !mStarted || mSource->getFormat(false /* audio */) == NULL
675 if (mStarted) {
717 if (mStarted) {
773 if (mStarted) {
1208 if (!mStarted) {
1215 if (mStarted) {
[all...]
H A DNuPlayer.h200 bool mStarted; member in struct:android::NuPlayer
/frameworks/av/media/libstagefright/
H A DAACExtractor.cpp62 bool mStarted; member in class:android::AACSource
243 mStarted(false),
250 if (mStarted) {
256 CHECK(!mStarted);
267 mStarted = true;
273 CHECK(mStarted);
278 mStarted = false;
H A DAACWriter.cpp42 mStarted(false),
55 if (mStarted) {
108 if (mStarted && mPaused) {
112 } else if (mStarted) {
136 mStarted = true;
142 if (!mStarted) {
150 if (!mStarted) {
168 mStarted = false;
H A DAMRExtractor.cpp60 bool mStarted; member in class:android::AMRSource
216 mStarted(false),
225 if (mStarted) {
231 CHECK(!mStarted);
237 mStarted = true;
243 CHECK(mStarted);
248 mStarted = false;
H A DAMRWriter.cpp37 mStarted(false),
43 if (mStarted) {
106 if (mStarted && mPaused) {
110 } else if (mStarted) {
131 mStarted = true;
137 if (!mStarted) {
145 if (!mStarted) {
163 mStarted = false;
H A DAudioPlayer.cpp54 mStarted(false),
65 if (mStarted) {
84 CHECK(!mStarted);
265 mStarted = true;
272 CHECK(mStarted);
295 CHECK(mStarted);
312 CHECK(mStarted);
384 mStarted = false;
H A DAudioSource.cpp56 : mStarted(false),
111 if (mStarted) {
122 if (mStarted) {
140 mStarted = true;
168 if (!mStarted) {
176 mStarted = false;
243 while (mStarted && mBuffersReceived.empty()) {
246 if (!mStarted) {
311 if (!mStarted) {

Completed in 1203 milliseconds

1234