slouken@0
|
1 |
/*
|
slouken@5535
|
2 |
Simple DirectMedia Layer
|
slouken@10737
|
3 |
Copyright (C) 1997-2017 Sam Lantinga <slouken@libsdl.org>
|
slouken@0
|
4 |
|
slouken@5535
|
5 |
This software is provided 'as-is', without any express or implied
|
slouken@5535
|
6 |
warranty. In no event will the authors be held liable for any damages
|
slouken@5535
|
7 |
arising from the use of this software.
|
slouken@0
|
8 |
|
slouken@5535
|
9 |
Permission is granted to anyone to use this software for any purpose,
|
slouken@5535
|
10 |
including commercial applications, and to alter it and redistribute it
|
slouken@5535
|
11 |
freely, subject to the following restrictions:
|
slouken@0
|
12 |
|
slouken@5535
|
13 |
1. The origin of this software must not be misrepresented; you must not
|
slouken@5535
|
14 |
claim that you wrote the original software. If you use this software
|
slouken@5535
|
15 |
in a product, an acknowledgment in the product documentation would be
|
slouken@5535
|
16 |
appreciated but is not required.
|
slouken@5535
|
17 |
2. Altered source versions must be plainly marked as such, and must not be
|
slouken@5535
|
18 |
misrepresented as being the original software.
|
slouken@5535
|
19 |
3. This notice may not be removed or altered from any source distribution.
|
slouken@0
|
20 |
*/
|
icculus@8093
|
21 |
#include "../SDL_internal.h"
|
slouken@0
|
22 |
|
slouken@0
|
23 |
#include "SDL_video.h"
|
slouken@0
|
24 |
|
slouken@1895
|
25 |
/* This is the software implementation of the YUV texture support */
|
slouken@0
|
26 |
|
slouken@3257
|
27 |
struct SDL_SW_YUVTexture
|
slouken@3257
|
28 |
{
|
slouken@3257
|
29 |
Uint32 format;
|
slouken@3257
|
30 |
Uint32 target_format;
|
slouken@3257
|
31 |
int w, h;
|
slouken@3257
|
32 |
Uint8 *pixels;
|
slouken@3257
|
33 |
|
slouken@3257
|
34 |
/* These are just so we don't have to allocate them separately */
|
slouken@3257
|
35 |
Uint16 pitches[3];
|
slouken@3257
|
36 |
Uint8 *planes[3];
|
slouken@3257
|
37 |
|
slouken@3257
|
38 |
/* This is a temporary surface in case we have to stretch copy */
|
slouken@3257
|
39 |
SDL_Surface *stretch;
|
slouken@3257
|
40 |
SDL_Surface *display;
|
slouken@3257
|
41 |
};
|
slouken@3257
|
42 |
|
slouken@1895
|
43 |
typedef struct SDL_SW_YUVTexture SDL_SW_YUVTexture;
|
slouken@0
|
44 |
|
slouken@2781
|
45 |
SDL_SW_YUVTexture *SDL_SW_CreateYUVTexture(Uint32 format, int w, int h);
|
slouken@1895
|
46 |
int SDL_SW_QueryYUVTexturePixels(SDL_SW_YUVTexture * swdata, void **pixels,
|
slouken@1895
|
47 |
int *pitch);
|
slouken@1895
|
48 |
int SDL_SW_UpdateYUVTexture(SDL_SW_YUVTexture * swdata, const SDL_Rect * rect,
|
slouken@1895
|
49 |
const void *pixels, int pitch);
|
slouken@7759
|
50 |
int SDL_SW_UpdateYUVTexturePlanar(SDL_SW_YUVTexture * swdata, const SDL_Rect * rect,
|
slouken@7759
|
51 |
const Uint8 *Yplane, int Ypitch,
|
slouken@7759
|
52 |
const Uint8 *Uplane, int Upitch,
|
slouken@7759
|
53 |
const Uint8 *Vplane, int Vpitch);
|
slouken@1895
|
54 |
int SDL_SW_LockYUVTexture(SDL_SW_YUVTexture * swdata, const SDL_Rect * rect,
|
slouken@5156
|
55 |
void **pixels, int *pitch);
|
slouken@1895
|
56 |
void SDL_SW_UnlockYUVTexture(SDL_SW_YUVTexture * swdata);
|
slouken@1895
|
57 |
int SDL_SW_CopyYUVToRGB(SDL_SW_YUVTexture * swdata, const SDL_Rect * srcrect,
|
slouken@1895
|
58 |
Uint32 target_format, int w, int h, void *pixels,
|
slouken@1895
|
59 |
int pitch);
|
slouken@1895
|
60 |
void SDL_SW_DestroyYUVTexture(SDL_SW_YUVTexture * swdata);
|
slouken@0
|
61 |
|
slouken@11195
|
62 |
/* FIXME: This breaks on various versions of GCC and should be rewritten using intrinsics */
|
slouken@11195
|
63 |
#if 0 /* (__GNUC__ > 2) && defined(__i386__) && __OPTIMIZE__ && SDL_ASSEMBLY_ROUTINES && !defined(__clang__) */
|
slouken@11195
|
64 |
#define USE_MMX_ASSEMBLY 1
|
slouken@11195
|
65 |
#endif
|
slouken@11195
|
66 |
|
slouken@1895
|
67 |
/* vi: set ts=4 sw=4 expandtab: */
|