Lines Matching defs:decoder

749             ALOGD("onSetVideoSurface(%p, %s video decoder)",
775 // If the video decoder is not set (perhaps audio only in this case)
790 // After a flush without shutdown, decoder is paused.
844 // Set mPlaybackSettings so that the new audio decoder can
994 // Don't try to re-open audio sink if there's an existing decoder.
1043 ALOGV("got message from old %s decoder, generation(%d:%d)",
1083 ALOGV("got %s decoder EOS", audio ? "audio" : "video");
1085 ALOGV("got %s decoder EOS w/ error %d",
1092 ALOGV("decoder %s flush completed", audio ? "audio" : "video");
1133 // or from decoding corrupted bitstreams, or from other decoder
1136 // decoder start or after a format change.
1138 // We try to gracefully shut down the affected decoder if possible,
1145 ALOGE("received error(%#x) from %s decoder, flushing(%d), now shutting down",
1197 ALOGV("Unhandled decoder notification %d '%c%c%c%c'.",
1351 // After a flush without shutdown, decoder is paused.
1446 // TRICKY: We rely on mRenderer being null, so that decoder does not start requesting
1583 // Audio decoder is no longer needed if it's in shut/shutting down status.
1588 // We wait for both the decoder flush and the renderer flush to complete
1608 ALOGV("initiating %s decoder shutdown", audio ? "audio" : "video");
1614 // decoder flush completes only occur in a flushing state.
1615 LOG_ALWAYS_FATAL_IF(isDecoder, "decoder flush in invalid state %d", *state);
1752 bool audio, sp<DecoderBase> *decoder, bool checkAudioModeChange) {
1753 // The audio decoder could be cleared by tear down. If still in shut down
1754 // process, no need to create a new audio decoder.
1755 if (*decoder != NULL || (audio && mFlushingAudio == SHUT_DOWN)) {
1808 *decoder = new DecoderPassThrough(notify, mSource, mRenderer);
1813 *decoder = new Decoder(notify, mSource, mPID, mUID, mRenderer);
1822 *decoder = new Decoder(
1835 (*decoder)->init();
1845 (*decoder)->configure(format);
1864 (*decoder)->setParameters(params);
1977 const sp<DecoderBase> &decoder = getDecoder(audio);
1978 if (decoder == NULL) {
1979 ALOGI("flushDecoder %s without decoder present",
1994 decoder->signalFlush();
2801 ALOGV("onReleaseDrm: video decoder ret: %d", status);
2810 ALOGV("onReleaseDrm: audio decoder ret: %d", status_audio);