OLD | NEW |
1 /* | 1 /* |
2 * copyright (c) 2006 Michael Niedermayer <michaelni@gmx.at> | 2 * copyright (c) 2006 Michael Niedermayer <michaelni@gmx.at> |
3 * | 3 * |
4 * This file is part of FFmpeg. | 4 * This file is part of FFmpeg. |
5 * | 5 * |
6 * FFmpeg is free software; you can redistribute it and/or | 6 * FFmpeg is free software; you can redistribute it and/or |
7 * modify it under the terms of the GNU Lesser General Public | 7 * modify it under the terms of the GNU Lesser General Public |
8 * License as published by the Free Software Foundation; either | 8 * License as published by the Free Software Foundation; either |
9 * version 2.1 of the License, or (at your option) any later version. | 9 * version 2.1 of the License, or (at your option) any later version. |
10 * | 10 * |
(...skipping 131 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
142 #define PIX_FMT_RGB565 PIX_FMT_NE(RGB565BE, RGB565LE) | 142 #define PIX_FMT_RGB565 PIX_FMT_NE(RGB565BE, RGB565LE) |
143 #define PIX_FMT_RGB555 PIX_FMT_NE(RGB555BE, RGB555LE) | 143 #define PIX_FMT_RGB555 PIX_FMT_NE(RGB555BE, RGB555LE) |
144 #define PIX_FMT_BGR565 PIX_FMT_NE(BGR565BE, BGR565LE) | 144 #define PIX_FMT_BGR565 PIX_FMT_NE(BGR565BE, BGR565LE) |
145 #define PIX_FMT_BGR555 PIX_FMT_NE(BGR555BE, BGR555LE) | 145 #define PIX_FMT_BGR555 PIX_FMT_NE(BGR555BE, BGR555LE) |
146 | 146 |
147 #define PIX_FMT_YUV420P16 PIX_FMT_NE(YUV420PBE, YUV420PLE) | 147 #define PIX_FMT_YUV420P16 PIX_FMT_NE(YUV420PBE, YUV420PLE) |
148 #define PIX_FMT_YUV422P16 PIX_FMT_NE(YUV422PBE, YUV422PLE) | 148 #define PIX_FMT_YUV422P16 PIX_FMT_NE(YUV422PBE, YUV422PLE) |
149 #define PIX_FMT_YUV444P16 PIX_FMT_NE(YUV444PBE, YUV444PLE) | 149 #define PIX_FMT_YUV444P16 PIX_FMT_NE(YUV444PBE, YUV444PLE) |
150 | 150 |
151 #endif /* AVUTIL_PIXFMT_H */ | 151 #endif /* AVUTIL_PIXFMT_H */ |
OLD | NEW |