Skip to content

Commit

Permalink
Fix this.
Browse files Browse the repository at this point in the history
  • Loading branch information
toots committed Dec 6, 2023
1 parent 46ab1da commit 3a1cf55
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/operators/cross.ml
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ class cross val_source ~duration_getter ~override_duration ~persist_override
| `Idle ->
let buf = self#child_get source in
let pos = Frame.position buf in
let p = Option.value ~default:0 source#track_mark in
let p = match Frame.track_marks buf with p :: _ -> p | [] -> 0 in
self#log#info "Buffering end of track...";
self#append `Before (Frame.chunk ~start:p ~stop:pos buf);
status <- `Before;
Expand Down

0 comments on commit 3a1cf55

Please sign in to comment.