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

/frameworks/av/media/libstagefright/codecs/mp3dec/test/
H A Dmp3dec_test.cpp112 ERROR_CODE decoderErr; local
113 decoderErr = pvmp3_framedecoder(&config, decoderBuf);
114 if (decoderErr != NO_DECODING_ERROR) {
/frameworks/av/media/libstagefright/codecs/mp3dec/
H A DSoftMP3.cpp336 ERROR_CODE decoderErr; local
337 if ((decoderErr = pvmp3_framedecoder(mConfig, mDecoderBuf))
339 ALOGV("mp3 decoder returned error %d", decoderErr);
341 if (decoderErr != NO_ENOUGH_MAIN_DATA_ERROR
342 && decoderErr != SIDE_INFO_ERROR) {
343 ALOGE("mp3 decoder returned error %d", decoderErr);
345 notify(OMX_EventError, OMX_ErrorUndefined, decoderErr, NULL);
354 if (decoderErr == NO_ENOUGH_MAIN_DATA_ERROR && mSawInputEos) {
/frameworks/av/media/libstagefright/codecs/flac/dec/
H A DSoftFlacDecoder.cpp331 status_t decoderErr = mFLACDecoder->parseMetadata(inBuffer, inBufferLength); local
334 if (decoderErr != OK && decoderErr != WOULD_BLOCK) {
335 ALOGE("onQueueFilled: FLACDecoder parseMetaData returns error %d", decoderErr);
337 notify(OMX_EventError, OMX_ErrorStreamCorrupt, decoderErr, NULL);
345 if (decoderErr == WOULD_BLOCK) {
367 status_t decoderErr = mFLACDecoder->decodeOneFrame( local
369 if (decoderErr != OK) {
370 ALOGE("onQueueFilled: FLACDecoder decodeOneFrame returns error %d", decoderErr);
372 notify(OMX_EventError, OMX_ErrorStreamCorrupt, decoderErr, NUL
[all...]
/frameworks/av/media/libstagefright/codecs/aacdec/
H A DSoftAAC2.cpp624 AAC_DECODER_ERROR decoderErr = local
629 if (decoderErr != AAC_DEC_OK) {
630 ALOGW("aacDecoder_ConfigRaw decoderErr = 0x%4.4x", decoderErr);
632 notify(OMX_EventError, OMX_ErrorUndefined, decoderErr, NULL);
755 AAC_DECODER_ERROR decoderErr; local
765 decoderErr = aacDecoder_DecodeFrame(mAACDecoder,
773 if (decoderErr == AAC_DEC_NOT_ENOUGH_BITS) {
778 if (decoderErr != AAC_DEC_OK) {
779 ALOGW("aacDecoder_DecodeFrame decoderErr
908 AAC_DECODER_ERROR decoderErr = local
1106 AAC_DECODER_ERROR decoderErr = local
[all...]

Completed in 135 milliseconds