Searched refs:decoderErr (Results 1 - 2 of 2) sorted by relevance

/frameworks/av/media/libstagefright/codecs/mp3dec/
H A DSoftMP3.cpp254 ERROR_CODE decoderErr; local
255 if ((decoderErr = pvmp3_framedecoder(mConfig, mDecoderBuf))
257 ALOGV("mp3 decoder returned error %d", decoderErr);
259 if (decoderErr != NO_ENOUGH_MAIN_DATA_ERROR
260 && decoderErr != SIDE_INFO_ERROR) {
261 ALOGE("mp3 decoder returned error %d", decoderErr);
263 notify(OMX_EventError, OMX_ErrorUndefined, decoderErr, NULL);
272 if (decoderErr == NO_ENOUGH_MAIN_DATA_ERROR && mSawInputEos) {
/frameworks/av/media/libstagefright/codecs/aacdec/
H A DSoftAAC2.cpp527 AAC_DECODER_ERROR decoderErr = local
532 if (decoderErr != AAC_DEC_OK) {
533 ALOGW("aacDecoder_ConfigRaw decoderErr = 0x%4.4x", decoderErr);
535 notify(OMX_EventError, OMX_ErrorUndefined, decoderErr, NULL);
656 AAC_DECODER_ERROR decoderErr; local
666 decoderErr = aacDecoder_DecodeFrame(mAACDecoder,
674 if (decoderErr == AAC_DEC_NOT_ENOUGH_BITS) {
679 if (decoderErr != AAC_DEC_OK) {
680 ALOGW("aacDecoder_DecodeFrame decoderErr
809 AAC_DECODER_ERROR decoderErr = local
1007 AAC_DECODER_ERROR decoderErr = local
[all...]

Completed in 2553 milliseconds