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
|
/**
* @file directfb.c DirectFB video display module
*
* Copyright (C) 2010 Creytiv.com
* Copyright (C) 2013 Andreas Shimokawa <andi@fischlustig.de>
*/
#include <re.h>
#include <rem.h>
#include <baresip.h>
#include <directfb.h>
struct vidisp_st {
const struct vidisp *vd; /**< Inheritance (1st) */
struct vidsz size; /**< Current size */
IDirectFBWindow *window; /**< DirectFB Window */
IDirectFBSurface *surface; /**< Surface for pixels */
IDirectFBDisplayLayer *layer; /**< Display layer */
};
static IDirectFB *dfb;
static struct vidisp *vid;
static void destructor(void *arg)
{
struct vidisp_st *st = arg;
if (st->surface)
st->surface->Release(st->surface);
if (st->window)
st->window->Release(st->window);
if (st->layer)
st->layer->Release(st->layer);
}
static int alloc(struct vidisp_st **stp, const struct vidisp *vd,
struct vidisp_prm *prm, const char *dev,
vidisp_resize_h *resizeh, void *arg)
{
struct vidisp_st *st;
int err = 0;
/* Not used by DirectFB */
(void) prm;
(void) dev;
(void) resizeh;
(void) arg;
st = mem_zalloc(sizeof(*st), destructor);
if (!st)
return ENOMEM;
st->vd = vd;
dfb->GetDisplayLayer(dfb, DLID_PRIMARY, &st->layer);
if (err)
mem_deref(st);
else
*stp = st;
return err;
}
static int display(struct vidisp_st *st, const char *title,
const struct vidframe *frame)
{
void *pixels;
int pitch, i;
unsigned h;
uint8_t *p;
(void) title;
if (!vidsz_cmp(&st->size, &frame->size)) {
if (st->size.w && st->size.h) {
info("directfb: reset: %u x %u ---> %u x %u\n",
st->size.w, st->size.h,
frame->size.w, frame->size.h);
}
if (st->surface) {
st->surface->Release(st->surface);
st->surface = NULL;
}
if (st->window) {
st->window->Release(st->window);
st->window = NULL;
}
}
if (!st->window) {
DFBWindowDescription desc;
desc.flags = DWDESC_WIDTH|DWDESC_HEIGHT|DWDESC_PIXELFORMAT;
desc.width = frame->size.w;
desc.height = frame->size.h;
desc.pixelformat = DSPF_I420;
st->layer->CreateWindow(st->layer, &desc, &st->window);
st->size = frame->size;
st->window->SetOpacity(st->window, 0xff);
st->window->GetSurface(st->window, &st->surface);
}
st->surface->Lock(st->surface, DSLF_WRITE, &pixels, &pitch);
p = pixels;
for (i=0; i<3; i++) {
const uint8_t *s = frame->data[i];
const unsigned stp = frame->linesize[0] / frame->linesize[i];
const unsigned sz = frame->size.w / stp;
for (h = 0; h < frame->size.h; h += stp) {
memcpy(p, s, sz);
s += frame->linesize[i];
p += (pitch / stp);
}
}
st->surface->Unlock(st->surface);
/* Update the screen! */
st->surface->Flip(st->surface, 0, 0);
return 0;
}
static void hide(struct vidisp_st *st)
{
if (!st || !st->window)
return;
st->window->SetOpacity(st->window, 0x00);
}
static int module_init(void)
{
int err = 0;
DFBResult ret;
ret = DirectFBInit(NULL, NULL);
if (ret) {
DirectFBError("DirectFBInit() failed", ret);
return (int) ret;
}
ret = DirectFBCreate(&dfb);
if (ret) {
DirectFBError("DirectFBCreate() failed", ret);
return (int) ret;
}
err = vidisp_register(&vid, "directfb", alloc, NULL, display, hide);
if (err)
return err;
return 0;
}
static int module_close(void)
{
vid = mem_deref(vid);
if (dfb) {
dfb->Release(dfb);
dfb = NULL;
}
return 0;
}
EXPORT_SYM const struct mod_export DECL_EXPORTS(directfb) = {
"directfb",
"vidisp",
module_init,
module_close
};
|