Compare commits

...

4 commits

Author SHA1 Message Date
yoann0723 fb1c48acac
Merge e4143d9c98 into 9d67bf2662 2024-06-27 11:04:08 +02:00
Ryan Foster 9d67bf2662 Revert "plugins/win-dshow: Add CUDA decoder"
This reverts commit ce4c99be4e.

This was causing infinitely looping log errors in systems with no
CUDA-capable hardware when hardware decoding was enabled on video
capture devices with custom config enabled.
2024-06-26 18:43:09 -04:00
yoann0723 e4143d9c98
Merge branch 'master' into rtmp-service/Prism 2024-06-26 09:25:16 +08:00
xie-wei 190f092f89 rtmp-services: Add "Prism" platform 2024-06-12 14:41:45 +08:00
2 changed files with 19 additions and 2 deletions

View file

@ -2923,6 +2923,21 @@
"x264opts": "scenecut=0"
}
},
{
"name": "Prism",
"servers": [
{
"name": "Default",
"url": "rtmp://global-rtmp.lip2.navercorp.com:8080/relay"
}
],
"supported video codecs": [
"h264"
],
"recommended": {
"keyint": 3
}
},
{
"name": "Dolby Millicast",
"common": false,

View file

@ -23,8 +23,10 @@
#endif
enum AVHWDeviceType hw_priority[] = {
AV_HWDEVICE_TYPE_CUDA, AV_HWDEVICE_TYPE_D3D11VA, AV_HWDEVICE_TYPE_DXVA2,
AV_HWDEVICE_TYPE_QSV, AV_HWDEVICE_TYPE_NONE,
AV_HWDEVICE_TYPE_D3D11VA,
AV_HWDEVICE_TYPE_DXVA2,
AV_HWDEVICE_TYPE_QSV,
AV_HWDEVICE_TYPE_NONE,
};
static bool has_hw_type(const AVCodec *c, enum AVHWDeviceType type)