create feature branch for #242

This commit is contained in:
c0ntrol
2019-07-11 22:32:37 +02:00
parent e300d0d8bc
commit ff04950dae
10 changed files with 459 additions and 65 deletions

View File

@@ -707,6 +707,14 @@ int sample_entry_set_is_rendering(int s1, int position, int value) {
return 1;
}
int sample_get_position(int s1)
{
sample_info *si = sample_get(s1);
if(!si) return 0;
return si->offset;
}
int sample_update_offset(int s1, int n_frame)
{