#2226 closed enhancement (wontfix)
limit video helper meta data to the modes we will need
Reported by: | Antoine Martin | Owned by: | Antoine Martin |
---|---|---|---|
Priority: | major | Milestone: | 3.0 |
Component: | encodings | Version: | 2.5.x |
Keywords: | Cc: |
Description
Typically, on Linux with X11 we will only need BGRX
so there is no need to keep track of the conversions to and from BGR
, RGB
or RGBX
, etc
Change History (2)
comment:1 Changed 3 years ago by
Resolution: | → wontfix |
---|---|
Status: | new → closed |
comment:2 Changed 17 months ago by
this ticket has been moved to: https://github.com/Xpra-org/xpra/issues/2226
Note: See
TracTickets for help on using
tickets.
Too difficult, most combinations are valid, they're just not very useful.
ie: when we have
BGRX
toh264
usingx264
(ornvenc
) then that's what we'll use, but going viaYUV420P
and a CSC step is also a valid option (which uses less bandwidth and CPU). We never want to useXRGB
toh264
, because that would require aBGRX
toXGRB
CSC step, but we don't know in advance that there are going to be better options..