Lines Matching refs:status
230 MMAL_STATUS_T status;
233 status = *(uint32_t *)buffer->data;
234 av_log(avctx, AV_LOG_ERROR, "MMAL error %d on control port\n", (int)status);
248 MMAL_STATUS_T status;
254 if ((status = mmal_port_send_buffer(ctx->decoder->output[0], buffer))) {
256 av_log(avctx, AV_LOG_ERROR, "MMAL error %d when sending output buffer.\n", (int)status);
280 MMAL_STATUS_T status;
296 if ((status = mmal_port_parameter_set_uint32(decoder->output[0], MMAL_PARAMETER_EXTRA_BUFFERS, ctx->extra_buffers)))
299 if ((status = mmal_port_parameter_set_boolean(decoder->output[0], MMAL_PARAMETER_VIDEO_INTERPOLATE_TIMESTAMPS, 0)))
308 if ((status = mmal_port_format_commit(decoder->output[0])))
313 status = mmal_port_parameter_get(decoder->output[0], &interlace_type.hdr);
314 if (status != MMAL_SUCCESS) {
356 MMAL_STATUS_T status;
375 if ((status = mmal_component_create(MMAL_COMPONENT_DEFAULT_VIDEO_DECODER, &ctx->decoder)))
417 if ((status = mmal_port_format_commit(decoder->input[0])))
441 if ((status = mmal_port_enable(decoder->control, control_port_cb)))
443 if ((status = mmal_port_enable(decoder->input[0], input_callback)))
445 if ((status = mmal_port_enable(decoder->output[0], output_callback)))
448 if ((status = mmal_component_enable(decoder)))
462 MMAL_STATUS_T status;
466 if ((status = mmal_port_enable(decoder->control, control_port_cb)))
468 if ((status = mmal_port_enable(decoder->input[0], input_callback)))
470 if ((status = mmal_port_enable(decoder->output[0], output_callback)))
476 av_log(avctx, AV_LOG_ERROR, "MMAL flush error: %i\n", (int)status);
579 MMAL_STATUS_T status;
602 if ((status = mmal_port_send_buffer(ctx->decoder->input[0], mbuffer))) {
610 if (status) {
611 av_log(avctx, AV_LOG_ERROR, "MMAL error %d when sending input\n", (int)status);
671 MMAL_STATUS_T status = 0;
718 if ((status = mmal_port_disable(decoder->output[0])))
729 if ((status = mmal_port_enable(decoder->output[0], output_callback)))
762 if (status && ret >= 0)