mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-25 19:21:06 +00:00
va: videoformat: Correct NV21's BPP
Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6022>
This commit is contained in:
parent
85341d6dad
commit
2d10692b34
1 changed files with 1 additions and 1 deletions
|
@ -44,7 +44,7 @@ static struct FormatMap
|
||||||
#define G(format, fourcc, rtformat, order, bpp) \
|
#define G(format, fourcc, rtformat, order, bpp) \
|
||||||
F (format, fourcc, rtformat, order, bpp, 0, 0, 0 ,0, 0)
|
F (format, fourcc, rtformat, order, bpp, 0, 0, 0 ,0, 0)
|
||||||
G (NV12, ('N', 'V', '1', '2'), YUV420, NSB, 12),
|
G (NV12, ('N', 'V', '1', '2'), YUV420, NSB, 12),
|
||||||
G (NV21, ('N', 'V', '2', '1'), YUV420, NSB, 21),
|
G (NV21, ('N', 'V', '2', '1'), YUV420, NSB, 12),
|
||||||
G (VUYA, ('A', 'Y', 'U', 'V'), YUV444, LSB, 32),
|
G (VUYA, ('A', 'Y', 'U', 'V'), YUV444, LSB, 32),
|
||||||
F (RGBA, ('R', 'G', 'B', 'A'), RGB32, LSB, 32, 32, 0x000000ff,
|
F (RGBA, ('R', 'G', 'B', 'A'), RGB32, LSB, 32, 32, 0x000000ff,
|
||||||
0x0000ff00, 0x00ff0000, 0xff000000),
|
0x0000ff00, 0x00ff0000, 0xff000000),
|
||||||
|
|
Loading…
Reference in a new issue