long get_file_next_counter() { return ((get_file_counter()>>4)+1)<<4;}long get_target_file_num() { long n; n = get_file_next_counter(); n = (n>>4)&0x3FFF; return n;}long get_target_dir_num() { long n; n = get_file_next_counter(); n = (n>>18)&0x3FF; if (get_target_file_num()%100 == 1) ++n; return n;}
As my file numbering is aroung 4000, I wonder if CHDK can help me to have a different file naming. for example, image AND movies called IMG_xxxx instead of having a "MOV_xxx". Also can it be possible to avoid the wrapping after 9999 ?