clip: correct bug in media_range() function

This commit is contained in:
itsmattkc
2022-07-02 19:08:24 -05:00
parent 8ff3544cb3
commit 0cab96d463
+1 -1
View File
@@ -286,7 +286,7 @@ void ClipBlock::Retranslate()
TimeRange ClipBlock::media_range() const
{
return InputTimeAdjustment(kBufferIn, -1, range());
return InputTimeAdjustment(kBufferIn, -1, TimeRange(0, length()));
}
}