Skip to content
Snippets Groups Projects
Commit 9281948b authored by luyikei's avatar luyikei
Browse files

MLTTrack: Fix wrong blank length after a clip is resized

parent 7296f82e
No related branches found
No related tags found
No related merge requests found
......@@ -133,7 +133,13 @@ MLTTrack::clipAt( int64_t position ) const
bool
MLTTrack::resizeClip( int clip, int64_t begin, int64_t end )
{
return !playlist()->resize_clip( clip, (int)begin, (int)end );
auto oldEnd = playlist()->get_clip( clip )->get_out();
auto ret = playlist()->resize_clip( clip, (int)begin, (int)end );
if ( !ret && (int)end < oldEnd )
{
playlist()->insert_blank( clip + 1, oldEnd - end - 1 );
}
return !ret;
}
int
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment