mirror of
https://github.com/mpv-player/mpv.git
synced 2025-12-28 05:33:14 +00:00
vo_gpu: opengl: add support for IMGFMT_RGB30
This integrates it as "special" format, with no alpha component, as the equivalent IMGFMT_RGB30 isn't meant to contain any. Nothing can produce this format in the video chain yet, so the next commits are needed to make this actually work.
This commit is contained in:
@@ -182,6 +182,17 @@ static int ra_init_gl(struct ra *ra, GL *gl)
|
||||
desc->components[0][i] = i + 1;
|
||||
desc->chroma_w = desc->chroma_h = 1;
|
||||
}
|
||||
if (strcmp(fmt->name, "rgb10_a2") == 0) {
|
||||
fmt->special_imgfmt = IMGFMT_RGB30;
|
||||
struct ra_imgfmt_desc *desc = talloc_zero(fmt, struct ra_imgfmt_desc);
|
||||
fmt->special_imgfmt_desc = desc;
|
||||
desc->component_bits = 10;
|
||||
desc->num_planes = 1;
|
||||
desc->planes[0] = fmt;
|
||||
for (int i = 0; i < 3; i++)
|
||||
desc->components[0][i] = i + 1;
|
||||
desc->chroma_w = desc->chroma_h = 1;
|
||||
}
|
||||
if (strcmp(fmt->name, "appleyp") == 0) {
|
||||
fmt->special_imgfmt = IMGFMT_UYVY;
|
||||
struct ra_imgfmt_desc *desc = talloc_zero(fmt, struct ra_imgfmt_desc);
|
||||
|
||||
Reference in New Issue
Block a user