I solved my own question MMAL_PARAMETER_CROP_T crop = {{MMAL_PARAMETER_CROP, sizeof(MMAL_PARAMETER_CROP_T)}, {0,0,0,0}}; crop.rect.x = 100; crop.rect.y = 0; crop.rect.width = 1080; crop.rect.height = 720; mmal_port_parameter_set(ispComponent->input[0], &crop.hdr); by setting MMAL_PARAMETER_CROP_T on...