Replies: 1 comment 3 replies
-
Yes, I think that |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
As part of the nvidia hardware decoder implementation, I have the case where a decoder can potentially handle multiple compression types (e.g. AV1, HEIC, AVC), depending on runtime capabilities - effectively which video card is used.
That works for the
does_support_format
design - I can query the hardware.However when it actually gets around to decoding, I'll need to know what compression type is being used. That is used to set up the decoder before processing data. Options would include a
new_decoder2
which takes a compression type, or aset_compression_type
plugin API extension. Thoughts on that?Beta Was this translation helpful? Give feedback.
All reactions