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

  /frameworks/av/media/libstagefright/codecs/mp3dec/test/
mp3dec_test.cpp 112 ERROR_CODE decoderErr;
113 decoderErr = pvmp3_framedecoder(&config, decoderBuf);
114 if (decoderErr != NO_DECODING_ERROR) {
  /frameworks/av/media/libstagefright/codecs/mp3dec/
SoftMP3.cpp 289 ERROR_CODE decoderErr;
290 if ((decoderErr = pvmp3_framedecoder(mConfig, mDecoderBuf))
292 ALOGV("mp3 decoder returned error %d", decoderErr);
294 if (decoderErr != NO_ENOUGH_MAIN_DATA_ERROR
295 && decoderErr != SIDE_INFO_ERROR) {
296 ALOGE("mp3 decoder returned error %d", decoderErr);
298 notify(OMX_EventError, OMX_ErrorUndefined, decoderErr, NULL);
307 if (decoderErr == NO_ENOUGH_MAIN_DATA_ERROR && mSawInputEos) {
  /frameworks/av/media/libstagefright/codecs/aacdec/
SoftAAC2.cpp 576 AAC_DECODER_ERROR decoderErr =
581 if (decoderErr != AAC_DEC_OK) {
582 ALOGW("aacDecoder_ConfigRaw decoderErr = 0x%4.4x", decoderErr);
584 notify(OMX_EventError, OMX_ErrorUndefined, decoderErr, NULL);
707 AAC_DECODER_ERROR decoderErr;
717 decoderErr = aacDecoder_DecodeFrame(mAACDecoder,
725 if (decoderErr == AAC_DEC_NOT_ENOUGH_BITS) {
730 if (decoderErr != AAC_DEC_OK) {
731 ALOGW("aacDecoder_DecodeFrame decoderErr = 0x%4.4x", decoderErr)
    [all...]

Completed in 79 milliseconds