Skip to content
Snippets Groups Projects
Commit ce459e12 authored by Reynaldo H. Verdejo Pinochet's avatar Reynaldo H. Verdejo Pinochet
Browse files

adds missing rgb/bgr 565 codec->fmt mappings, ok'ed by Michael

Originally committed as revision 6807 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent ba8a6218
No related branches found
No related tags found
No related merge requests found
...@@ -54,6 +54,8 @@ const PixelFormatTag pixelFormatTags[] = { ...@@ -54,6 +54,8 @@ const PixelFormatTag pixelFormatTags[] = {
{ PIX_FMT_GRAY8, MKTAG('G', 'R', 'E', 'Y') }, { PIX_FMT_GRAY8, MKTAG('G', 'R', 'E', 'Y') },
{ PIX_FMT_RGB555, MKTAG('R', 'G', 'B', 15) }, { PIX_FMT_RGB555, MKTAG('R', 'G', 'B', 15) },
{ PIX_FMT_BGR555, MKTAG('B', 'G', 'R', 15) }, { PIX_FMT_BGR555, MKTAG('B', 'G', 'R', 15) },
{ PIX_FMT_RGB565, MKTAG('R', 'G', 'B', 16) },
{ PIX_FMT_BGR565, MKTAG('B', 'G', 'R', 16) },
/* quicktime */ /* quicktime */
{ PIX_FMT_UYVY422, MKTAG('2', 'v', 'u', 'y') }, { PIX_FMT_UYVY422, MKTAG('2', 'v', 'u', 'y') },
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment