Fix mouse format unsupported and incorrect version string
This commit is contained in:
parent
3d595ce927
commit
4de547228c
3 changed files with 40 additions and 13 deletions
|
|
@ -684,6 +684,11 @@ void capture(
|
|||
}
|
||||
|
||||
bool validate_config(const encoder_t &encoder, const config_t &config, platf::display_t &disp) {
|
||||
// Ensure everything but software fails succesfully, it's not ready yet
|
||||
if(encoder.dev_type != AV_HWDEVICE_TYPE_NONE) {
|
||||
return false;
|
||||
}
|
||||
|
||||
auto hwdevice = disp.get_hwdevice();
|
||||
|
||||
auto session = make_session(encoder, config, hwdevice.get());
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue