Lines Matching defs:decoder

749             ALOGD("onSetVideoSurface(%p, %s video decoder)",
774 // If the video decoder is not set (perhaps audio only in this case)
790 // After a flush without shutdown, decoder is paused.
843 // Set mPlaybackSettings so that the new audio decoder can
993 // Don't try to re-open audio sink if there's an existing decoder.
1042 ALOGV("got message from old %s decoder, generation(%d:%d)",
1082 ALOGV("got %s decoder EOS", audio ? "audio" : "video");
1084 ALOGV("got %s decoder EOS w/ error %d",
1091 ALOGV("decoder %s flush completed", audio ? "audio" : "video");
1132 // or from decoding corrupted bitstreams, or from other decoder
1135 // decoder start or after a format change.
1137 // We try to gracefully shut down the affected decoder if possible,
1144 ALOGE("received error(%#x) from %s decoder, flushing(%d), now shutting down",
1196 ALOGV("Unhandled decoder notification %d '%c%c%c%c'.",
1350 // After a flush without shutdown, decoder is paused.
1445 // TRICKY: We rely on mRenderer being null, so that decoder does not start requesting
1582 // Audio decoder is no longer needed if it's in shut/shutting down status.
1587 // We wait for both the decoder flush and the renderer flush to complete
1607 ALOGV("initiating %s decoder shutdown", audio ? "audio" : "video");
1613 // decoder flush completes only occur in a flushing state.
1614 LOG_ALWAYS_FATAL_IF(isDecoder, "decoder flush in invalid state %d", *state);
1751 bool audio, sp<DecoderBase> *decoder, bool checkAudioModeChange) {
1752 // The audio decoder could be cleared by tear down. If still in shut down
1753 // process, no need to create a new audio decoder.
1754 if (*decoder != NULL || (audio && mFlushingAudio == SHUT_DOWN)) {
1807 *decoder = new DecoderPassThrough(notify, mSource, mRenderer);
1812 *decoder = new Decoder(notify, mSource, mPID, mUID, mRenderer);
1821 *decoder = new Decoder(
1834 (*decoder)->init();
1844 (*decoder)->configure(format);
1863 (*decoder)->setParameters(params);
1976 const sp<DecoderBase> &decoder = getDecoder(audio);
1977 if (decoder == NULL) {
1978 ALOGI("flushDecoder %s without decoder present",
1993 decoder->signalFlush();
2800 ALOGV("onReleaseDrm: video decoder ret: %d", status);
2809 ALOGV("onReleaseDrm: audio decoder ret: %d", status_audio);