13
0

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:
Paul Davis 2015-07-20 11:57:45 -04:00
parent 5e5e56f589
commit a81cba17a6

View File

@ -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);