We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The error: Error: Bytes: value bigger than specified number of bytes is thrown when the compressedBytes parameter is too large.
Error: Bytes: value bigger than specified number of bytes
It can be reproduced using the following command, which uses unreasonably large (but valid size) slices.
EncodeStream --compressedBytes 527521 --fragmentLength 0 --prefix 0 --scalar 419 --framerate 3 --width1280 --height 720 --format 4:2:2 --bytes 2 --bitDepth 10 --kernel LeGall --waveletDepth 3 --vSlice 90 --hSlice 80 --output Stream --mode HQ_CBR --verbose ./linear_ramps.16p2 linear_ramps_test.vc2
In this example the number of allocated bytess (527521) is on the cusp of success, --compressedBytes 527520 succeeds.
527521
--compressedBytes 527520
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
The error:
Error: Bytes: value bigger than specified number of bytes
is thrown when the compressedBytes parameter is too large.It can be reproduced using the following command, which uses unreasonably large (but valid size) slices.
EncodeStream --compressedBytes 527521 --fragmentLength 0 --prefix 0 --scalar 419 --framerate 3 --width1280 --height 720 --format 4:2:2 --bytes 2 --bitDepth 10 --kernel LeGall --waveletDepth 3 --vSlice 90 --hSlice 80 --output Stream --mode HQ_CBR --verbose ./linear_ramps.16p2 linear_ramps_test.vc2
In this example the number of allocated bytess (
527521
) is on the cusp of success,--compressedBytes 527520
succeeds.The text was updated successfully, but these errors were encountered: