fix auditioning on systems with larger disk read chunk sizes.
This really brings into focus the question of whether any of the "varifill" code should really remain. This was probably one of the only remaining places where a partial-fill operation was done and the code was broken for this case. What we know about disk i/o streaming doesn't support varifill much at all. Something to think about.
This commit is contained in:
parent
5e5e56f589
commit
a81cba17a6
@ -482,7 +482,7 @@ Auditioner::audition_region (boost::shared_ptr<Region> region)
|
||||
offset = 0;
|
||||
}
|
||||
|
||||
_diskstream->seek (offset);
|
||||
_diskstream->seek (offset, true);
|
||||
current_frame = offset;
|
||||
|
||||
g_atomic_int_set (&_auditioning, 1);
|
||||
|
Loading…
Reference in New Issue
Block a user