HomeSort by relevance Sort by last modified time
    Searched refs:decoderErr (Results 1 - 3 of 3) sorted by null

  /frameworks/av/media/libstagefright/codecs/aacdec/
SoftAAC2.cpp 282 AAC_DECODER_ERROR decoderErr =
287 if (decoderErr != AAC_DEC_OK) {
289 notify(OMX_EventError, OMX_ErrorUndefined, decoderErr, NULL);
327 AAC_DECODER_ERROR decoderErr = aacDecoder_DecodeFrame(mAACDecoder,
331 if (decoderErr != AAC_DEC_OK) {
333 notify(OMX_EventError, OMX_ErrorUndefined, decoderErr, NULL);
413 AAC_DECODER_ERROR decoderErr = AAC_DEC_NOT_ENOUGH_BITS;
414 while (bytesValid[0] > 0 && decoderErr == AAC_DEC_NOT_ENOUGH_BITS) {
420 decoderErr = aacDecoder_DecodeFrame(mAACDecoder,
425 if (decoderErr == AAC_DEC_NOT_ENOUGH_BITS)
    [all...]
SoftAAC.cpp 385 Int decoderErr = PVMP4AudioDecodeFrame(mConfig, mDecoderBuf);
401 if (decoderErr == MP4AUDEC_SUCCESS && mInputBufferCount <= 2) {
452 if (decoderErr == MP4AUDEC_SUCCESS) {
459 decoderErr);
469 if (decoderErr == MP4AUDEC_SUCCESS || mNumSamplesOutput > 0) {
507 if (decoderErr == MP4AUDEC_SUCCESS) {
  /frameworks/av/media/libstagefright/codecs/mp3dec/
SoftMP3.cpp 223 ERROR_CODE decoderErr;
224 if ((decoderErr = pvmp3_framedecoder(mConfig, mDecoderBuf))
226 ALOGV("mp3 decoder returned error %d", decoderErr);
228 if (decoderErr != NO_ENOUGH_MAIN_DATA_ERROR
229 && decoderErr != SIDE_INFO_ERROR) {
230 ALOGE("mp3 decoder returned error %d", decoderErr);
232 notify(OMX_EventError, OMX_ErrorUndefined, decoderErr, NULL);

Completed in 48 milliseconds