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

/frameworks/av/media/libstagefright/codecs/mp3dec/
H A DSoftMP3.cpp247 ERROR_CODE decoderErr; local
248 if ((decoderErr = pvmp3_framedecoder(mConfig, mDecoderBuf))
250 ALOGV("mp3 decoder returned error %d", decoderErr);
252 if (decoderErr != NO_ENOUGH_MAIN_DATA_ERROR
253 && decoderErr != SIDE_INFO_ERROR) {
254 ALOGE("mp3 decoder returned error %d", decoderErr);
256 notify(OMX_EventError, OMX_ErrorUndefined, decoderErr, NULL);
/frameworks/av/media/libstagefright/codecs/aacdec/
H A DSoftAAC2.cpp323 AAC_DECODER_ERROR decoderErr = local
328 if (decoderErr != AAC_DEC_OK) {
330 notify(OMX_EventError, OMX_ErrorUndefined, decoderErr, NULL);
372 AAC_DECODER_ERROR decoderErr = local
379 if (decoderErr != AAC_DEC_OK) {
382 notify(OMX_EventError, OMX_ErrorUndefined, decoderErr,
473 AAC_DECODER_ERROR decoderErr = AAC_DEC_NOT_ENOUGH_BITS; local
474 while (bytesValid[0] > 0 && decoderErr == AAC_DEC_NOT_ENOUGH_BITS) {
481 decoderErr = aacDecoder_DecodeFrame(mAACDecoder,
486 if (decoderErr
[all...]

Completed in 61 milliseconds