Skip to content

Latest commit

 

History

History
150 lines (134 loc) · 3.98 KB

SDL_yuv.c

File metadata and controls

150 lines (134 loc) · 3.98 KB
 
Apr 26, 2001
Apr 26, 2001
1
2
/*
SDL - Simple DirectMedia Layer
Feb 1, 2006
Feb 1, 2006
3
Copyright (C) 1997-2006 Sam Lantinga
Apr 26, 2001
Apr 26, 2001
4
5
This library is free software; you can redistribute it and/or
Feb 1, 2006
Feb 1, 2006
6
modify it under the terms of the GNU Lesser General Public
Apr 26, 2001
Apr 26, 2001
7
License as published by the Free Software Foundation; either
Feb 1, 2006
Feb 1, 2006
8
version 2.1 of the License, or (at your option) any later version.
Apr 26, 2001
Apr 26, 2001
9
10
11
12
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Feb 1, 2006
Feb 1, 2006
13
Lesser General Public License for more details.
Apr 26, 2001
Apr 26, 2001
14
Feb 1, 2006
Feb 1, 2006
15
16
17
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
Apr 26, 2001
Apr 26, 2001
18
19
Sam Lantinga
Dec 14, 2001
Dec 14, 2001
20
slouken@libsdl.org
Apr 26, 2001
Apr 26, 2001
21
*/
Feb 21, 2006
Feb 21, 2006
22
#include "SDL_config.h"
Apr 26, 2001
Apr 26, 2001
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
/* This is the implementation of the YUV video surface support */
#include "SDL_video.h"
#include "SDL_sysvideo.h"
#include "SDL_yuvfuncs.h"
#include "SDL_yuv_sw_c.h"
SDL_Overlay *SDL_CreateYUVOverlay(int w, int h, Uint32 format,
SDL_Surface *display)
{
SDL_VideoDevice *video = current_video;
SDL_VideoDevice *this = current_video;
const char *yuv_hwaccel;
SDL_Overlay *overlay;
Dec 31, 2003
Dec 31, 2003
40
if ( (display->flags & SDL_OPENGL) == SDL_OPENGL ) {
Jul 26, 2003
Jul 26, 2003
41
42
43
SDL_SetError("YUV overlays are not supported in OpenGL mode");
return NULL;
}
Apr 26, 2001
Apr 26, 2001
44
45
/* Display directly on video surface, if possible */
Feb 7, 2006
Feb 7, 2006
46
if ( SDL_getenv("SDL_VIDEO_YUV_DIRECT") ) {
Jun 25, 2001
Jun 25, 2001
47
48
49
50
51
if ( (display == SDL_PublicSurface) &&
((SDL_VideoSurface->format->BytesPerPixel == 2) ||
(SDL_VideoSurface->format->BytesPerPixel == 4)) ) {
display = SDL_VideoSurface;
}
Apr 26, 2001
Apr 26, 2001
52
}
Jul 26, 2003
Jul 26, 2003
53
overlay = NULL;
Feb 7, 2006
Feb 7, 2006
54
yuv_hwaccel = SDL_getenv("SDL_VIDEO_YUV_HWACCEL");
Apr 26, 2001
Apr 26, 2001
55
if ( ((display == SDL_VideoSurface) && video->CreateYUVOverlay) &&
Feb 7, 2006
Feb 7, 2006
56
(!yuv_hwaccel || (SDL_atoi(yuv_hwaccel) > 0)) ) {
Apr 26, 2001
Apr 26, 2001
57
58
59
60
61
62
63
64
65
66
67
overlay = video->CreateYUVOverlay(this, w, h, format, display);
}
/* If hardware YUV overlay failed ... */
if ( overlay == NULL ) {
overlay = SDL_CreateYUV_SW(this, w, h, format, display);
}
return overlay;
}
int SDL_LockYUVOverlay(SDL_Overlay *overlay)
{
Jul 15, 2007
Jul 15, 2007
68
69
70
71
if ( overlay == NULL ) {
SDL_SetError("Passed NULL overlay");
return -1;
}
Apr 26, 2001
Apr 26, 2001
72
73
74
75
76
return overlay->hwfuncs->Lock(current_video, overlay);
}
void SDL_UnlockYUVOverlay(SDL_Overlay *overlay)
{
Jul 15, 2007
Jul 15, 2007
77
78
79
if ( overlay == NULL ) {
return;
}
Apr 26, 2001
Apr 26, 2001
80
81
82
83
84
overlay->hwfuncs->Unlock(current_video, overlay);
}
int SDL_DisplayYUVOverlay(SDL_Overlay *overlay, SDL_Rect *dstrect)
{
Apr 17, 2006
Apr 17, 2006
85
86
87
88
SDL_Rect src, dst;
int srcx, srcy, srcw, srch;
int dstx, dsty, dstw, dsth;
Jul 15, 2007
Jul 15, 2007
89
90
91
92
93
if ( overlay == NULL || dstrect == NULL ) {
SDL_SetError("Passed NULL overlay or dstrect");
return -1;
}
Apr 17, 2006
Apr 17, 2006
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
/* Clip the rectangle to the screen area */
srcx = 0;
srcy = 0;
srcw = overlay->w;
srch = overlay->h;
dstx = dstrect->x;
dsty = dstrect->y;
dstw = dstrect->w;
dsth = dstrect->h;
if ( dstx < 0 ) {
srcw += (dstx * overlay->w) / dstrect->w;
dstw += dstx;
srcx -= (dstx * overlay->w) / dstrect->w;
dstx = 0;
}
if ( (dstx+dstw) > current_video->screen->w ) {
int extra = (dstx+dstw - current_video->screen->w);
srcw -= (extra * overlay->w) / dstrect->w;
dstw -= extra;
}
if ( dsty < 0 ) {
srch += (dsty * overlay->h) / dstrect->h;
dsth += dsty;
srcy -= (dsty * overlay->h) / dstrect->h;
dsty = 0;
}
if ( (dsty+dsth) > current_video->screen->h ) {
int extra = (dsty+dsth - current_video->screen->h);
srch -= (extra * overlay->h) / dstrect->h;
dsth -= extra;
}
if ( srcw <= 0 || srch <= 0 ||
srch <= 0 || dsth <= 0 ) {
return 0;
}
/* Ugh, I can't wait for SDL_Rect to be int values */
src.x = srcx;
src.y = srcy;
src.w = srcw;
src.h = srch;
dst.x = dstx;
dst.y = dsty;
dst.w = dstw;
dst.h = dsth;
return overlay->hwfuncs->Display(current_video, overlay, &src, &dst);
Apr 26, 2001
Apr 26, 2001
139
140
141
142
}
void SDL_FreeYUVOverlay(SDL_Overlay *overlay)
{
Jul 15, 2007
Jul 15, 2007
143
144
145
146
147
if ( overlay == NULL ) {
return;
}
if ( overlay->hwfuncs ) {
overlay->hwfuncs->FreeHW(current_video, overlay);
Apr 26, 2001
Apr 26, 2001
148
}
Jul 15, 2007
Jul 15, 2007
149
SDL_free(overlay);
Apr 26, 2001
Apr 26, 2001
150
}