1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 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 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307
|
/*
* Pure Data Packet system module. - x window glue code (fairly tied to pd and pf)
* Copyright (c) by Tom Schouten <tom@zwizwa.be>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*
*/
// this code is fairly tied to pd and pf. serves mainly as reusable glue code
// for pf_xv, pf_glx, pf_3d_windowcontext, ...
#include <string.h>
#include <stdlib.h>
#include <stdio.h>
// Note sure why this had to be defined..
#define PRIVATE
//#include <pf/stream.h>
//#include <pf/packet.h>
//#include <pf/packet_imp.h>
//#include <pf/image.h>
#include "xwindow.h"
#include "xv.h"
#define D if(1)
/************************************* XV ************************************/
/* XvImage image. */
static void zl_xv_destroy_xvimage(zl_xv_p xvid);
static void zl_xv_create_xvimage(zl_xv_p xvid, int width, int height);
// static void zl_xv_get_dims(zl_xv_p xvid, unsigned int *w, unsigned int *h);
/* this was a local function. */
static int errors;
static int error_handler(Display __attribute__((unused)) *dpy,
XErrorEvent __attribute__((unused)) *e){
errors++;
return 0;
}
static void zl_xv_create_xvimage(zl_xv_p xvid, int width, int height)
{
// int i;
long size;
errors = 0;
xvid->width = width;
xvid->height = height;
size = (xvid->width * xvid->height + (((xvid->width>>1)*(xvid->height>>1))<<1));
// don't use shared memory
if (!xvid->shm){
no_shm:
xvid->data = (unsigned char *)malloc(size + 4); // 4 bytes extra to get word size buffer for word bitflip
//for (i=0; i<size; i++) xvid->data[i] = i;
/* fprintf(stderr, "XvCreateImage(%p,%08x,%08x,%p,%d,%d)",
xvid->xdpy->dpy, xvid->xv_port, xvid->xv_format,
(char *)xvid->data, xvid->width, xvid->height); */
xvid->xvi = XvCreateImage(xvid->xdpy->dpy, xvid->xv_port, xvid->xv_format,
(char *)xvid->data, xvid->width, xvid->height);
xvid->last_encoding = -1;
if ((!xvid->xvi) || (!xvid->data)) fprintf (stderr, "zl_xv_create_xvimage: error creating xvimage");
return;
}
// try shared memory
else {
void *old_handler = XSetErrorHandler(error_handler);
// ASSERT!
if (xvid->shminfo) {
fprintf(stderr, "have shminfo?"); exit(1);
}
xvid->shminfo = malloc(sizeof(XShmSegmentInfo));
memset(xvid->shminfo, 0, sizeof(XShmSegmentInfo));
/* fprintf(stderr, "XvShmCreateImage(%p,%08x,%08x,%08x,%d,%d,%p)",
xvid->xdpy->dpy, xvid->xv_port, xvid->xv_format,
0, xvid->width, xvid->height, xvid->shminfo); */
xvid->xvi = XvShmCreateImage(xvid->xdpy->dpy, xvid->xv_port, xvid->xv_format,
0, xvid->width, xvid->height, xvid->shminfo);
if (!xvid->xvi) goto shm_error;
if (-1 == (xvid->shminfo->shmid = shmget(IPC_PRIVATE, xvid->xvi->data_size,
IPC_CREAT | 0777))) goto shm_error;
if (((void *)-1) == (xvid->shminfo->shmaddr = (char *) shmat(xvid->shminfo->shmid, 0, 0))) goto shm_error;
xvid->data = xvid->xvi->data = xvid->shminfo->shmaddr;
xvid->shminfo->readOnly = False;
XShmAttach(xvid->xdpy->dpy, xvid->shminfo);
XSync(xvid->xdpy->dpy, False);
if (errors) goto shm_error;
shmctl(xvid->shminfo->shmid, IPC_RMID, 0);
XSetErrorHandler(old_handler);
D fprintf(stderr, "xv: using shared memory\n");
return; // ok
shm_error:
D fprintf(stderr, "xv: can't use shared memory\n");
zl_xv_destroy_xvimage(xvid);
XSetErrorHandler(old_handler);
xvid->shm = 0;
goto no_shm;
}
}
static void zl_xv_destroy_xvimage(zl_xv_p xvid)
{
if (xvid->xvi) XFree(xvid->xvi);
if (xvid->shminfo){
if ((void *)-1 != xvid->shminfo->shmaddr && NULL != xvid->shminfo->shmaddr)
shmdt(xvid->shminfo->shmaddr);
free(xvid->shminfo);
}
else {
if (xvid->data) free(xvid->data);
}
xvid->shminfo = 0;
xvid->xvi = 0;
xvid->data = 0;
}
/* display */
void zl_xv_image_display(zl_xv_p xvid, zl_xwindow_p xwin){
if (!xvid->initialized) return;
/* set aspect ratio here if necessary
currently we don't : client responsability */
int a_x = 0;
int a_y = 0;
int b_x = xvid->width;
int b_y = xvid->height;
// int offset = 0;
int w_w = xwin->winwidth;
int w_h = xwin->winheight;
D fprintf(stderr, "%d %d %d %d %d %d\n", a_x, a_y, b_x, b_y, w_w, w_h);
if (xvid->shminfo){
XvShmPutImage(xvid->xdpy->dpy,xvid->xv_port,
xwin->win,xwin->gc,xvid->xvi,
a_x, a_y, b_x, b_y, 0,0, w_w, w_h, True);
}
else {
XvPutImage(xvid->xdpy->dpy,xvid->xv_port,
xwin->win, xwin->gc, xvid->xvi,
a_x, a_y, b_x, b_y, 0,0, w_w, w_h);
}
XFlush(xvid->xdpy->dpy);
}
void *zl_xv_image_data(zl_xv_p xvid, zl_xwindow_p __attribute__((unused)) xwin,
unsigned int width, unsigned int height){
if (!xvid->initialized) return 0;
/* check if xvimage needs to be recreated */
if ((width != xvid->width) || (height != xvid->height)){
zl_xv_destroy_xvimage(xvid);
zl_xv_create_xvimage(xvid, width, height);
}
return xvid->data;
}
void zl_xv_close(zl_xv_p xvid)
{
if (xvid->initialized){
if (xvid->xvi) zl_xv_destroy_xvimage(xvid);
XvUngrabPort(xvid->xdpy->dpy, xvid->xv_port, CurrentTime);
xvid->xv_port = 0;
xvid->xdpy = 0;
xvid->last_encoding = -1;
xvid->initialized = 0;
}
}
void zl_xv_cleanup(zl_xv_p xvid)
{
// close xv port (and delete XvImage)
zl_xv_close(xvid);
// no more dynamic data to free
}
void zl_xv_free(zl_xv_p xvid){
zl_xv_cleanup(xvid);
free(xvid);
}
void zl_xv_init(zl_xv_p xvid, int format)
{
xvid->xdpy = 0;
// xvid->xv_format = FOURCC_I420; // used to be FOURCC_YV12. veejay compat.
// xvid->xv_format = FOURCC_YV12; // PDP uses this
// xvid->xv_format = 0x32595559; // Microsoft webcam hack
xvid->xv_format = format;
xvid->xv_port = 0;
xvid->shm = 1; // try to use shm
//xvid->shm = 0; // don't
xvid->shminfo = 0;
xvid->width = 320;
xvid->height = 240;
xvid->data = 0;
xvid->xvi = 0;
xvid->initialized = 0;
xvid->last_encoding = -1;
}
zl_xv_p zl_xv_new(int format)
{
zl_xv_p xvid = malloc(sizeof(*xvid));
zl_xv_init(xvid, format);
return xvid;
}
int zl_xv_open_on_display(zl_xv_p xvid, zl_xdisplay_p d, int adaptor_start)
{
unsigned int ver, rel, req, ev, err, i, j;
unsigned int adaptors;
// int formats;
XvAdaptorInfo *ai;
if (xvid->initialized) return 1;
if (!d) return 0;
xvid->xdpy = d;
if (Success != XvQueryExtension(xvid->xdpy->dpy,
&ver,&rel,&req,&ev,&err))
return 0;
/* find + lock port */
if (Success != XvQueryAdaptors(xvid->xdpy->dpy,
DefaultRootWindow(xvid->xdpy->dpy),
&adaptors,&ai))
return 0;
for (i = adaptor_start; i < adaptors; i++) {
if ((ai[i].type & XvInputMask) && (ai[i].type & XvImageMask)) {
for (j=0; j < ai[i].num_ports; j++){
if (Success != XvGrabPort(xvid->xdpy->dpy,
ai[i].base_id+j,CurrentTime)) {
D fprintf(stderr,"xv: Xv port %ld on adapter %d: is busy, skipping\n",
ai[i].base_id+j, i);
}
else {
xvid->xv_port = ai[i].base_id + j;
goto breakout;
}
}
}
}
breakout:
XFree(ai);
if (0 == xvid->xv_port) return 0;
D fprintf(stderr, "xv: grabbed port %d on adaptor %d\n", xvid->xv_port, i);
xvid->initialized = 1;
zl_xv_create_xvimage(xvid, xvid->width, xvid->height);
return 1;
}
//static void zl_xv_get_dims(zl_xv_p xvid, unsigned int *w, unsigned int *h) {
// if (w) *w = xvid->width;
// if (w) *h = xvid->height;
//}
|