* adds av1 to ctest

* add av1 support for batch sample

* add test to make test also

* path update for make test

* add function for codec support check

* add changes to batch sample

* addressign review comment

* modify all apps to check codec support
This commit is contained in:
Lakshmi Kumar
2024-07-26 14:09:58 -07:00
zatwierdzone przez GitHub
rodzic d0924490a8
commit e3b3fe9e8e
13 zmienionych plików z 173 dodań i 17 usunięć
+4 -1
Wyświetl plik
@@ -207,7 +207,10 @@ int main(int argc, char **argv) {
VideoSeekContext video_seek_ctx;
rocDecVideoCodec rocdec_codec_id = AVCodec2RocDecVideoCodec(demuxer.GetCodecID());
RocVideoDecoder viddec(device_id, mem_type, rocdec_codec_id, b_force_zero_latency, p_crop_rect, b_extract_sei_messages, disp_delay);
if(!viddec.CodecSupported(device_id, rocdec_codec_id, demuxer.GetBitDepth())) {
std::cerr << "GPU doesn't support codec!" << std::endl;
return 0;
}
std::string device_name, gcn_arch_name;
int pci_bus_id, pci_domain_id, pci_device_id;