mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-20 00:31:13 +00:00
qsv: Update plugin doc cache
Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/5706>
This commit is contained in:
parent
865d7a1351
commit
adfa4d459e
2 changed files with 7 additions and 5 deletions
|
@ -230146,12 +230146,12 @@
|
||||||
"klass": "Codec/Decoder/Video/Hardware",
|
"klass": "Codec/Decoder/Video/Hardware",
|
||||||
"pad-templates": {
|
"pad-templates": {
|
||||||
"sink": {
|
"sink": {
|
||||||
"caps": "video/x-h265:\n width: [ 1, 16384 ]\n height: [ 1, 16384 ]\n stream-format: { (string)byte-stream, (string)hev1, (string)hvc1 }\n alignment: au\n profile: { (string)main, (string)main-10 }\n",
|
"caps": "video/x-h265:\n width: [ 1, 16384 ]\n height: [ 1, 16384 ]\n stream-format: { (string)byte-stream, (string)hev1, (string)hvc1 }\n alignment: au\n profile: { (string)main, (string)main-10, (string)main-12, (string)main-422-10, (string)main-422-12, (string)main-444, (string)main-444-10, (string)main-444-12 }\n",
|
||||||
"direction": "sink",
|
"direction": "sink",
|
||||||
"presence": "always"
|
"presence": "always"
|
||||||
},
|
},
|
||||||
"src": {
|
"src": {
|
||||||
"caps": "video/x-raw(memory:D3D11Memory):\n format: NV12\n width: [ 1, 16384 ]\n height: [ 1, 16384 ]\nvideo/x-raw:\n format: NV12\n width: [ 1, 16384 ]\n height: [ 1, 16384 ]\n",
|
"caps": "video/x-raw(memory:D3D11Memory):\n format: { NV12, P010_10LE, P012_LE, YUY2, Y210, Y212_LE, VUYA, RBGA, Y410, BGR10A2_LE, Y412_LE, BGRA64_LE }\n width: [ 1, 16384 ]\n height: [ 1, 16384 ]\nvideo/x-raw:\n format: { NV12, P010_10LE, P012_LE, YUY2, Y210, Y212_LE, VUYA, RBGA, Y410, BGR10A2_LE, Y412_LE, BGRA64_LE }\n width: [ 1, 16384 ]\n height: [ 1, 16384 ]\n",
|
||||||
"direction": "src",
|
"direction": "src",
|
||||||
"presence": "always"
|
"presence": "always"
|
||||||
}
|
}
|
||||||
|
@ -230557,7 +230557,7 @@
|
||||||
"presence": "always"
|
"presence": "always"
|
||||||
},
|
},
|
||||||
"src": {
|
"src": {
|
||||||
"caps": "video/x-raw(memory:D3D11Memory):\n format: { NV12, P010_10LE, P016_LE }\n width: [ 1, 16384 ]\n height: [ 1, 16384 ]\nvideo/x-raw:\n format: { NV12, P010_10LE, P016_LE }\n width: [ 1, 16384 ]\n height: [ 1, 16384 ]\n",
|
"caps": "video/x-raw(memory:D3D11Memory):\n format: { NV12, P010_10LE, P012_LE }\n width: [ 1, 16384 ]\n height: [ 1, 16384 ]\nvideo/x-raw:\n format: { NV12, P010_10LE, P012_LE }\n width: [ 1, 16384 ]\n height: [ 1, 16384 ]\n",
|
||||||
"direction": "src",
|
"direction": "src",
|
||||||
"presence": "always"
|
"presence": "always"
|
||||||
}
|
}
|
||||||
|
|
|
@ -53,10 +53,12 @@ GST_DEBUG_CATEGORY_STATIC (gst_qsv_h265_dec_debug);
|
||||||
#define DOC_SINK_CAPS \
|
#define DOC_SINK_CAPS \
|
||||||
"video/x-h265, width = (int) [ 1, 16384 ], height = (int) [ 1, 16384 ], " \
|
"video/x-h265, width = (int) [ 1, 16384 ], height = (int) [ 1, 16384 ], " \
|
||||||
"stream-format = (string) { byte-stream, hev1, hvc1 }, " \
|
"stream-format = (string) { byte-stream, hev1, hvc1 }, " \
|
||||||
"alignment = (string) au, profile = (string) { main, main-10 }"
|
"alignment = (string) au, profile = (string) { main, main-10, main-12, " \
|
||||||
|
"main-422-10, main-422-12, main-444, main-444-10, main-444-12 }"
|
||||||
|
|
||||||
#define DOC_SRC_CAPS_COMM \
|
#define DOC_SRC_CAPS_COMM \
|
||||||
"format = (string) NV12, " \
|
"format = (string) { NV12, P010_10LE, P012_LE, YUY2, Y210, Y212_LE, " \
|
||||||
|
"VUYA, RBGA, Y410, BGR10A2_LE, Y412_LE, BGRA64_LE }, " \
|
||||||
"width = (int) [ 1, 16384 ], height = (int) [ 1, 16384 ]"
|
"width = (int) [ 1, 16384 ], height = (int) [ 1, 16384 ]"
|
||||||
|
|
||||||
#define DOC_SRC_CAPS \
|
#define DOC_SRC_CAPS \
|
||||||
|
|
Loading…
Reference in a new issue