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

/frameworks/av/media/libstagefright/codecs/mp3dec/
H A DSoftMP3.cpp232 ERROR_CODE decoderErr; local
233 if ((decoderErr = pvmp3_framedecoder(mConfig, mDecoderBuf))
235 ALOGV("mp3 decoder returned error %d", decoderErr);
237 if (decoderErr != NO_ENOUGH_MAIN_DATA_ERROR
238 && decoderErr != SIDE_INFO_ERROR) {
239 ALOGE("mp3 decoder returned error %d", decoderErr);
241 notify(OMX_EventError, OMX_ErrorUndefined, decoderErr, NULL);
/frameworks/av/media/libstagefright/codecs/aacdec/
H A DSoftAAC2.cpp320 AAC_DECODER_ERROR decoderErr = local
325 if (decoderErr != AAC_DEC_OK) {
327 notify(OMX_EventError, OMX_ErrorUndefined, decoderErr, NULL);
368 AAC_DECODER_ERROR decoderErr = local
374 if (decoderErr != AAC_DEC_OK) {
377 notify(OMX_EventError, OMX_ErrorUndefined, decoderErr,
470 AAC_DECODER_ERROR decoderErr = AAC_DEC_NOT_ENOUGH_BITS; local
471 while (bytesValid[0] > 0 && decoderErr == AAC_DEC_NOT_ENOUGH_BITS) {
477 decoderErr = aacDecoder_DecodeFrame(mAACDecoder,
482 if (decoderErr
[all...]

Completed in 246 milliseconds