Configure needs AS to be set for the Makefiles.
[mplayer/glamo.git] / fmt-conversion.c
blobbcfb56a41574d7452acfe120ad830dc313c88a29
1 /*
2 * This file is part of MPlayer.
4 * MPlayer is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
9 * MPlayer is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License along
15 * with MPlayer; if not, write to the Free Software Foundation, Inc.,
16 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
19 #include "mp_msg.h"
20 #include "libavutil/avutil.h"
21 #include "libmpcodecs/img_format.h"
22 #include "fmt-conversion.h"
24 static const struct {
25 int fmt;
26 enum PixelFormat pix_fmt;
27 } conversion_map[] = {
28 {IMGFMT_BGR32, PIX_FMT_RGB32},
29 {IMGFMT_BGR24, PIX_FMT_BGR24},
30 {IMGFMT_BGR16, PIX_FMT_RGB565},
31 {IMGFMT_BGR15, PIX_FMT_RGB555},
32 {IMGFMT_BGR8, PIX_FMT_RGB8},
33 {IMGFMT_BGR4, PIX_FMT_RGB4},
34 {IMGFMT_BGR1, PIX_FMT_MONOBLACK},
35 {IMGFMT_RGB1, PIX_FMT_MONOBLACK},
36 {IMGFMT_RG4B, PIX_FMT_BGR4_BYTE},
37 {IMGFMT_BG4B, PIX_FMT_RGB4_BYTE},
38 {IMGFMT_RGB32, PIX_FMT_BGR32},
39 {IMGFMT_RGB24, PIX_FMT_RGB24},
40 {IMGFMT_RGB16, PIX_FMT_BGR565},
41 {IMGFMT_RGB15, PIX_FMT_BGR555},
42 {IMGFMT_RGB8, PIX_FMT_BGR8},
43 {IMGFMT_RGB4, PIX_FMT_BGR4},
44 {IMGFMT_BGR8, PIX_FMT_PAL8},
45 {IMGFMT_YUY2, PIX_FMT_YUYV422},
46 {IMGFMT_UYVY, PIX_FMT_UYVY422},
47 {IMGFMT_NV12, PIX_FMT_NV12},
48 {IMGFMT_NV21, PIX_FMT_NV21},
49 {IMGFMT_Y800, PIX_FMT_GRAY8},
50 {IMGFMT_Y8, PIX_FMT_GRAY8},
51 {IMGFMT_YVU9, PIX_FMT_YUV410P},
52 {IMGFMT_IF09, PIX_FMT_YUV410P},
53 {IMGFMT_YV12, PIX_FMT_YUV420P},
54 {IMGFMT_I420, PIX_FMT_YUV420P},
55 {IMGFMT_IYUV, PIX_FMT_YUV420P},
56 {IMGFMT_411P, PIX_FMT_YUV411P},
57 {IMGFMT_422P, PIX_FMT_YUV422P},
58 {IMGFMT_444P, PIX_FMT_YUV444P},
60 // YUVJ are YUV formats that use the full Y range and not just
61 // 16 - 235 (see colorspaces.txt).
62 // Currently they are all treated the same way.
63 {IMGFMT_YV12, PIX_FMT_YUVJ420P},
64 {IMGFMT_422P, PIX_FMT_YUVJ422P},
65 {IMGFMT_444P, PIX_FMT_YUVJ444P},
67 {IMGFMT_XVMC_MOCO_MPEG2, PIX_FMT_XVMC_MPEG2_MC},
68 {IMGFMT_XVMC_IDCT_MPEG2, PIX_FMT_XVMC_MPEG2_IDCT},
69 {IMGFMT_VDPAU_MPEG1, PIX_FMT_VDPAU_MPEG1},
70 {IMGFMT_VDPAU_MPEG2, PIX_FMT_VDPAU_MPEG2},
71 {IMGFMT_VDPAU_H264, PIX_FMT_VDPAU_H264},
72 {IMGFMT_VDPAU_WMV3, PIX_FMT_VDPAU_WMV3},
73 {IMGFMT_VDPAU_VC1, PIX_FMT_VDPAU_VC1},
74 {0, PIX_FMT_NONE}
77 enum PixelFormat imgfmt2pixfmt(int fmt)
79 int i;
80 enum PixelFormat pix_fmt;
81 for (i = 0; conversion_map[i].fmt; i++)
82 if (conversion_map[i].fmt == fmt)
83 break;
84 pix_fmt = conversion_map[i].pix_fmt;
85 if (pix_fmt == PIX_FMT_NONE)
86 mp_msg(MSGT_GLOBAL, MSGL_ERR, "Unsupported format %s\n", vo_format_name(fmt));
87 return pix_fmt;
90 int pixfmt2imgfmt(enum PixelFormat pix_fmt)
92 int i;
93 int fmt;
94 for (i = 0; conversion_map[i].pix_fmt != PIX_FMT_NONE; i++)
95 if (conversion_map[i].pix_fmt == pix_fmt)
96 break;
97 fmt = conversion_map[i].fmt;
98 if (!fmt)
99 mp_msg(MSGT_GLOBAL, MSGL_ERR, "Unsupported PixelFormat %i\n", pix_fmt);
100 return fmt;