Skip to content
This repository was archived by the owner on Aug 27, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions host_applications/linux/apps/raspicam/RaspiStillYUV.c
Original file line number Diff line number Diff line change
Expand Up @@ -1135,6 +1135,14 @@ int main(int argc, const char **argv)
if (state.common_settings.verbose)
fprintf(stderr, "Starting component connection stage\n");

if (state.burstCaptureMode &&
state.camera_parameters.exposureMode == MMAL_PARAM_EXPOSUREMODE_OFF &&
state.camera_parameters.shutter_speed &&
state.camera_parameters.analog_gain && state.camera_parameters.stats_pass)
{
mmal_port_parameter_set_boolean(state.camera_component->control, MMAL_PARAMETER_CAMERA_BURST_CAPTURE, 1);
}

camera_preview_port = state.camera_component->output[MMAL_CAMERA_PREVIEW_PORT];
camera_video_port = state.camera_component->output[MMAL_CAMERA_VIDEO_PORT];
camera_still_port = state.camera_component->output[MMAL_CAMERA_CAPTURE_PORT];
Expand Down
4 changes: 1 addition & 3 deletions host_applications/linux/libs/bcm_host/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,7 @@ include_directories( ../../../..
../../../../host_applications/vmcs/test_apps/iltest
../../../../host_applications/framework/common )

add_library(bcm_host ${SHARED} bcm_host.c
../../../../interface/vmcs_host/linux/vcfilesys.c
../../../../interface/vmcs_host/linux/vcfiled/vcfiled_check.c)
add_library(bcm_host ${SHARED} bcm_host.c)

target_link_libraries(bcm_host vcos vchostif)

Expand Down
2 changes: 1 addition & 1 deletion interface/mmal/test/examples/example_basic_1.c
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

#define CHECK_STATUS(status, msg) if (status != MMAL_SUCCESS) { fprintf(stderr, msg"\n"); goto error; }

static uint8_t codec_header_bytes[512];
static uint8_t codec_header_bytes[128];
static unsigned int codec_header_bytes_size = sizeof(codec_header_bytes);

static FILE *source_file;
Expand Down
2 changes: 1 addition & 1 deletion interface/mmal/test/examples/example_basic_2.c
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

#define CHECK_STATUS(status, msg) if (status != MMAL_SUCCESS) { fprintf(stderr, msg"\n"); goto error; }

static uint8_t codec_header_bytes[512];
static uint8_t codec_header_bytes[128];
static unsigned int codec_header_bytes_size = sizeof(codec_header_bytes);

static FILE *source_file;
Expand Down
4 changes: 2 additions & 2 deletions interface/vmcs_host/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
add_definitions(-fno-strict-aliasing)

add_library(vchostif
${VMCS_TARGET}/vcfilesys.c ${VMCS_TARGET}/vcmisc.c
vc_vchi_gencmd.c vc_vchi_filesys.c vc_vchi_gpuserv.c
${VMCS_TARGET}/vcmisc.c
vc_vchi_gencmd.c vc_vchi_gpuserv.c
vc_vchi_tvservice.c vc_vchi_cecservice.c
vc_vchi_dispmanx.c vc_service_common.c)
# ${VMCS_TARGET}/vmcs_main.c
Expand Down
169 changes: 0 additions & 169 deletions interface/vmcs_host/linux/vcfiled/vcfiled_check.c

This file was deleted.

48 changes: 0 additions & 48 deletions interface/vmcs_host/linux/vcfiled/vcfiled_check.h

This file was deleted.

Loading