]> git.sesse.net Git - ffmpeg/commitdiff
fbdev: Support the RGB565 colour space.
authorDan Flett <dflett@bigpond.net.au>
Thu, 11 Jul 2013 16:16:07 +0000 (18:16 +0200)
committerMartin Storsjö <martin@martin.st>
Sat, 11 Jul 2015 07:15:59 +0000 (10:15 +0300)
Tested on a Raspberry Pi.

Signed-off-by: Martin Storsjö <martin@martin.st>
libavdevice/fbdev.c

index 27e2ed30db0bd4610688b3c9657f2d3e52064a68..bdbc83f252f80845481099be63fe3c40cc3aac12 100644 (file)
@@ -58,6 +58,7 @@ static struct rgb_pixfmt_map_entry rgb_pixfmt_map[] = {
     {  32,       3,           2,           8,            0,   AV_PIX_FMT_ABGR  },
     {  24,       0,           8,          16,            0,   AV_PIX_FMT_RGB24 },
     {  24,      16,           8,           0,            0,   AV_PIX_FMT_BGR24 },
+    {  16,      11,           5,           0,            0,   AV_PIX_FMT_RGB565 },
 };
 
 static enum AVPixelFormat get_pixfmt_from_fb_varinfo(struct fb_var_screeninfo *varinfo)