mirror of
https://gitlab.com/mbunkus/mkvtoolnix.git
synced 2024-12-23 19:31:44 +00:00
Removed the lower limit of 1000 for --timecode-scale.
This commit is contained in:
parent
7a170eb98c
commit
4105d505f6
@ -1680,9 +1680,9 @@ parse_args(vector<string> args) {
|
||||
if (temp == -1)
|
||||
timecode_scale_mode = TIMECODE_SCALE_MODE_AUTO;
|
||||
else {
|
||||
if ((temp > 10000000) || (temp < 1000))
|
||||
if ((temp > 10000000) || (temp < 1))
|
||||
mxerror(_("The given timecode scale factor is outside the valid "
|
||||
"range (1000...10000000 or -1 for 'sample precision "
|
||||
"range (1...10000000 or -1 for 'sample precision "
|
||||
"even if a video track is present').\n"));
|
||||
|
||||
timecode_scale = temp;
|
||||
|
Loading…
Reference in New Issue
Block a user