1 |
|
/* |
2 |
< |
* mintv.cpp - 50/60Hz video display using v4l and XVideo |
2 |
> |
* mintv.cpp - 50/60Hz noninterlaced video display using v4l and XVideo |
3 |
|
* |
4 |
< |
* Written in 2003 by Christian Bauer |
4 |
> |
* Written in 2003-2004 by Christian Bauer |
5 |
|
*/ |
6 |
|
|
7 |
|
#include <stdio.h> |
333 |
|
// Parse options |
334 |
|
for (;;) { |
335 |
|
int c; |
336 |
< |
if ((c = getopt_long(argc, argv, "hnp:w:", long_opts,NULL)) == -1) |
336 |
> |
if ((c = getopt_long(argc, argv, "hnp:w:", long_opts, NULL)) == -1) |
337 |
|
break; |
338 |
|
|
339 |
|
switch (c) { |
463 |
|
NULL |
464 |
|
); |
465 |
|
XtRealizeWidget(app_shell); |
466 |
– |
Cursor null_cursor = XCreateFontCursor(dpy, XC_left_ptr); |
467 |
– |
XDefineCursor(dpy, XtWindow(app_shell), null_cursor); |
466 |
|
XtVaSetValues(app_shell, |
467 |
|
XtNtitle, "mintv", |
468 |
|
XtNinput, True, |
471 |
|
XSetWMProtocols(dpy, XtWindow(app_shell), &wm, 1); |
472 |
|
gc = XCreateGC(dpy, XtWindow(video), 0, NULL); |
473 |
|
|
474 |
+ |
// Hide cursor |
475 |
+ |
Colormap cmap = DefaultColormap(dpy, DefaultScreen(dpy)); |
476 |
+ |
XColor black; |
477 |
+ |
XParseColor(dpy, cmap, "#000000", &black); |
478 |
+ |
XAllocColor(dpy, cmap, &black); |
479 |
+ |
static char null_data[] = {0, 0, 0, 0, 0, 0, 0, 0}; |
480 |
+ |
Pixmap null_pixmap = XCreateBitmapFromData(dpy, XtWindow(video), null_data, 8, 8); |
481 |
+ |
Cursor null_cursor = XCreatePixmapCursor(dpy, null_pixmap, null_pixmap, &black, &black, 0, 0); |
482 |
+ |
XDefineCursor(dpy, XtWindow(video), null_cursor); |
483 |
+ |
|
484 |
|
// Set image format |
485 |
|
unsigned format = XV_FORMAT; |
486 |
|
|