Home
last modified time | relevance | path

Searched refs:s_dec_op (Results 1 – 3 of 3) sorted by relevance

/frameworks/av/media/libstagefright/codecs/avcdec/
DSoftAVCDec.cpp451 ivd_video_decode_op_t s_dec_op; in onPortFlushCompleted() local
454 setDecodeArgs(&s_dec_ip, &s_dec_op, NULL, NULL, 0); in onPortFlushCompleted()
456 status = ivdec_api_function(mCodecCtx, (void *)&s_dec_ip, (void *)&s_dec_op); in onPortFlushCompleted()
457 if (0 == s_dec_op.u4_output_present) { in onPortFlushCompleted()
562 ivd_video_decode_op_t s_dec_op; in onQueueFilled() local
565 if (!setDecodeArgs(&s_dec_ip, &s_dec_op, inHeader, outHeader, timeStampIx)) { in onQueueFilled()
580 status = ivdec_api_function(mCodecCtx, (void *)&s_dec_ip, (void *)&s_dec_op); in onQueueFilled()
583 … (IVD_STREAM_WIDTH_HEIGHT_NOT_SUPPORTED == (s_dec_op.u4_error_code & IVD_ERROR_MASK)); in onQueueFilled()
593 … bool allocationFailed = (IVD_MEM_ALLOC_FAILED == (s_dec_op.u4_error_code & IVD_ERROR_MASK)); in onQueueFilled()
601 if (IS_IVD_FATAL_ERROR(s_dec_op.u4_error_code)) { in onQueueFilled()
[all …]
/frameworks/av/media/libstagefright/codecs/hevcdec/
DSoftHEVC.cpp448 ivd_video_decode_op_t s_dec_op; in onPortFlushCompleted() local
452 setDecodeArgs(&s_dec_ip, &s_dec_op, NULL, NULL, 0); in onPortFlushCompleted()
455 (void *)&s_dec_op); in onPortFlushCompleted()
456 if (0 == s_dec_op.u4_output_present) { in onPortFlushCompleted()
552 ivd_video_decode_op_t s_dec_op; in onQueueFilled() local
556 if (!setDecodeArgs(&s_dec_ip, &s_dec_op, inHeader, outHeader, timeStampIx)) { in onQueueFilled()
569 status = ivdec_api_function(mCodecCtx, (void *)&s_dec_ip, (void *)&s_dec_op); in onQueueFilled()
572 … (IVD_STREAM_WIDTH_HEIGHT_NOT_SUPPORTED == (s_dec_op.u4_error_code & IVD_ERROR_MASK)); in onQueueFilled()
583 (IVD_MEM_ALLOC_FAILED == (s_dec_op.u4_error_code & IVD_ERROR_MASK)); in onQueueFilled()
591 if (IS_IVD_FATAL_ERROR(s_dec_op.u4_error_code)) { in onQueueFilled()
[all …]
/frameworks/av/media/libstagefright/codecs/mpeg2dec/
DSoftMPEG2.cpp573 ivd_video_decode_op_t s_dec_op; in onPortFlushCompleted() local
577 setDecodeArgs(&s_dec_ip, &s_dec_op, NULL, NULL, 0); in onPortFlushCompleted()
579 status = ivdec_api_function(mCodecCtx, (void *)&s_dec_ip, (void *)&s_dec_op); in onPortFlushCompleted()
580 if (0 == s_dec_op.u4_output_present) { in onPortFlushCompleted()
683 ivd_video_decode_op_t s_dec_op; in onQueueFilled() local
687 if (!setDecodeArgs(&s_dec_ip, &s_dec_op, inHeader, outHeader, timeStampIx)) { in onQueueFilled()
705 status = ivdec_api_function(mCodecCtx, (void *)&s_dec_ip, (void *)&s_dec_op); in onQueueFilled()
707 bool unsupportedDimensions = (IMPEG2D_UNSUPPORTED_DIMENSIONS == s_dec_op.u4_error_code); in onQueueFilled()
708 bool resChanged = (IVD_RES_CHANGED == (s_dec_op.u4_error_code & 0xFF)); in onQueueFilled()
717 s_dec_op.u4_num_bytes_consumed); in onQueueFilled()
[all …]