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
An invalid stream should not make the program panic. This issue is to track the removal of all sources of panic from the code:
unwrap
panic
expect
get
The text was updated successfully, but these errors were encountered:
decoder/vp9: replace unwrap by runtime error
0b0d71b
As per #56.
codec/h264/dpb: replace unwrap by proper error
679c632
I assume we can still panic from logic errors and general sanity-checks from asserts and friends, right?
asserts
Sorry, something went wrong.
No branches or pull requests
An invalid stream should not make the program panic. This issue is to track the removal of all sources of panic from the code:
unwrap
s as a result of invalid input,panic
andexpect
,get
).The text was updated successfully, but these errors were encountered: