Getting some compile error with mlv_rec and mlv_snd in crop_rec_4k branch.
Building module mlv_rec...
Updated HGVERSION
[ README ] module_strings.h
[ CC ] mlv_rec.o
mlv_rec.c: In function 'raw_rec_update_preview':
mlv_rec.c:4160:5: error: too few arguments to function 'raw_set_preview_rect'
raw_set_preview_rect(skip_x, skip_y, res_x, res_y);
^
In file included from ../lv_rec/lv_rec.h:24:0,
from mlv_rec.c:76:
../../src/raw.h:148:6: note: declared here
void raw_set_preview_rect(int x, int y, int w, int h, int obey_info_bars);
^
make[4]: *** [mlv_rec.o] Error 1
Don“t have my camera to test but I follow the error and change the line in mlv_rec to below which seems to get rid of the error code for both mlv_snd and mlv_rec.
In mlv_rec
raw_set_preview_rect(skip_x, skip_y, res_x, res_y);
to this:
void raw_set_preview_rect(int x, int y, int w, int h, int obey_info_bars);
Or maybe change to:
void raw_set_preview_rect(skip_x, skip_y, res_x, res_y);
?