4 * Copyright (C) 2002-2003 David Holm <david@realityrift.com>
6 * This file is part of MPlayer.
8 * MPlayer is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
13 * MPlayer is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public License along
19 * with MPlayer; if not, write to the Free Software Foundation, Inc.,
20 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
23 #include <linux/em8300.h>
24 #include <sys/ioctl.h>
26 #include <sys/types.h>
27 #include <sys/select.h>
39 #include "fastmemcpy.h"
41 #include "video_out.h"
42 #include "video_out_internal.h"
47 #include "x11_common.h"
49 #include "libavutil/avstring.h"
53 static const vo_info_t info
=
57 "David Holm <dholm@iname.com>",
60 const LIBVO_EXTERN (dxr3
)
62 /* Resolutions and positions */
63 static int v_width
, v_height
;
64 static int s_width
, s_height
;
65 static int osd_w
, osd_h
;
66 static int img_format
;
68 /* Configuration values
69 * Don't declare these static, they
70 * should be accessible from the gui.
75 int dxr3_device_num
= 0;
78 #define MAX_STR_SIZE 80 /* length for the static strings */
80 /* File descriptors */
81 static int fd_control
= -1;
82 static int fd_video
= -1;
83 static int fd_spu
= -1;
84 static char fdv_name
[MAX_STR_SIZE
];
85 static char fds_name
[MAX_STR_SIZE
];
88 /* on screen display/subpics */
89 static char *osdpicbuf
;
90 static int osdpicbuf_w
;
91 static int osdpicbuf_h
;
93 static encodedata
*spued
;
94 static encodedata
*spubuf
;
98 /* Static variable used in ioctl's */
101 static int pts_offset
;
102 static int old_vmode
= -1;
105 /* Begin overlay.h */
107 Simple analog overlay API for DXR3/H+ linux driver.
113 /* Pattern drawing callback used by the calibration functions.
114 The function is expected to:
115 Clear the entire screen.
116 Fill the screen with color bgcol (0xRRGGBB)
117 Draw a rectangle at (xpos,ypos) of size (width,height) in fgcol (0xRRGGBB)
120 typedef int (*pattern_drawer_cb
)(int fgcol
, int bgcol
,
121 int xpos
, int ypos
, int width
, int height
, void *arg
);
130 int xres
, yres
,depth
;
131 int xoffset
,yoffset
,xcorr
;
135 struct coeff colcal_upper
[3];
136 struct coeff colcal_lower
[3];
137 float color_interval
;
139 pattern_drawer_cb draw_pattern
;
144 static overlay_t
*overlay_init(int dev
);
145 static int overlay_release(overlay_t
*);
147 static int overlay_read_state(overlay_t
*o
, char *path
);
148 static int overlay_write_state(overlay_t
*o
, char *path
);
150 static int overlay_set_screen(overlay_t
*o
, int xres
, int yres
, int depth
);
151 static int overlay_set_mode(overlay_t
*o
, int mode
);
152 static int overlay_set_attribute(overlay_t
*o
, int attribute
, int val
);
153 static int overlay_set_keycolor(overlay_t
*o
, int color
);
154 static int overlay_set_window(overlay_t
*o
, int xpos
,int ypos
,int width
,int height
);
155 static int overlay_set_bcs(overlay_t
*o
, int brightness
, int contrast
, int saturation
);
157 static int overlay_autocalibrate(overlay_t
*o
, pattern_drawer_cb pd
, void *arg
);
158 static void overlay_update_params(overlay_t
*o
);
159 static int overlay_signalmode(overlay_t
*o
, int mode
);
164 #define KEY_COLOR 0x80a040
165 static XWindowAttributes xwin_attribs
;
166 static overlay_t
*overlay_data
;
170 /* Functions for working with the em8300's internal clock */
171 /* End of internal clock functions */
173 static int control(uint32_t request
, void *data
)
176 case VOCTRL_SET_SPU_PALETTE
:
177 if (ioctl(fd_spu
, EM8300_IOCTL_SPU_SETPALETTE
, data
) < 0) {
178 mp_tmsg(MSGT_VO
,MSGL_ERR
, "[VO_DXR3] Unable to load new SPU palette!\n");
186 case VOCTRL_FULLSCREEN
:
189 overlay_signalmode(overlay_data
,
190 vo_fs
? EM8300_OVERLAY_SIGNAL_ONLY
:
191 EM8300_OVERLAY_SIGNAL_WITH_VGA
);
198 ioctl(fd_control
, EM8300_IOCTL_SCR_GET
, &ioval
);
199 pts_offset
= vo_pts
- (ioval
<< 1);
200 if (pts_offset
< 0) {
206 ioval
= EM8300_PLAYMODE_PLAY
;
207 if (ioctl(fd_control
, EM8300_IOCTL_SET_PLAYMODE
, &ioval
) < 0) {
208 mp_tmsg(MSGT_VO
,MSGL_WARN
, "[VO_DXR3] Unable to set playmode!\n");
214 ioval
= EM8300_PLAYMODE_PAUSED
;
215 if (ioctl(fd_control
, EM8300_IOCTL_SET_PLAYMODE
, &ioval
) < 0) {
216 mp_tmsg(MSGT_VO
,MSGL_WARN
, "[VO_DXR3] Unable to set playmode!\n");
223 fd_video
= open(fdv_name
, O_WRONLY
);
225 fd_spu
= open(fds_name
, O_WRONLY
);
230 case VOCTRL_QUERY_FORMAT
:
234 if (*((uint32_t*)data
) != IMGFMT_MPEGPES
)
237 flag
= VFCAP_CSP_SUPPORTED
| VFCAP_CSP_SUPPORTED_BY_HW
| VFCAP_SPU
;
242 case VOCTRL_SET_EQUALIZER
:
245 struct voctrl_set_equalizer_args
*args
= data
;
247 if (ioctl(fd_control
, EM8300_IOCTL_GETBCS
, &bcs
) < 0)
249 if (!strcasecmp(args
->name
, "brightness"))
250 bcs
.brightness
= (args
->value
+100)*5;
251 else if (!strcasecmp(args
->name
, "contrast"))
252 bcs
.contrast
= (args
->value
+100)*5;
253 else if (!strcasecmp(args
->name
, "saturation"))
254 bcs
.saturation
= (args
->value
+100)*5;
255 else return VO_FALSE
;
257 if (ioctl(fd_control
, EM8300_IOCTL_SETBCS
, &bcs
) < 0)
261 case VOCTRL_GET_EQUALIZER
:
264 struct voctrl_get_equalizer_args
*args
= data
;
266 if (ioctl(fd_control
, EM8300_IOCTL_GETBCS
, &bcs
) < 0)
269 if (!strcasecmp(args
->name
, "brightness"))
270 *args
->valueptr
= (bcs
.brightness
/5)-100;
271 else if (!strcasecmp(args
->name
, "contrast"))
272 *args
->valueptr
= (bcs
.contrast
/5)-100;
273 else if (!strcasecmp(args
->name
, "saturation"))
274 *args
->valueptr
= (bcs
.saturation
/5)-100;
275 else return VO_FALSE
;
283 void calculate_cvals(unsigned long mask
, int *shift
, int *prec
)
285 /* Calculate shift and precision */
289 while (!(mask
& 0x1)) {
300 static int config(uint32_t width
, uint32_t height
, uint32_t d_width
, uint32_t d_height
, uint32_t flags
, char *title
, uint32_t format
)
302 int tmp1
, tmp2
, size
;
303 em8300_register_t reg
;
305 /* Softzoom turned on, downscale */
306 /* This activates the subpicture processor, you can safely disable this and still send */
307 /* broken subpics to the em8300, if it's enabled and you send broken subpics you will end */
309 ioval
= EM8300_SPUMODE_ON
;
310 if (ioctl(fd_control
, EM8300_IOCTL_SET_SPUMODE
, &ioval
) < 0) {
311 mp_tmsg(MSGT_VO
,MSGL_WARN
, "[VO_DXR3] Unable to set subpicture mode!\n");
316 /* Set the playmode to play (just in case another app has set it to something else) */
317 ioval
= EM8300_PLAYMODE_PLAY
;
318 if (ioctl(fd_control
, EM8300_IOCTL_SET_PLAYMODE
, &ioval
) < 0) {
319 mp_tmsg(MSGT_VO
,MSGL_WARN
, "[VO_DXR3] Unable to set playmode!\n");
322 /* Start em8300 prebuffering and sync engine */
323 reg
.microcode_register
= 1;
325 reg
.val
= MVCOMMAND_SYNC
;
326 ioctl(fd_control
, EM8300_IOCTL_WRITEREG
, ®
);
328 /* Clean buffer by syncing it */
329 ioval
= EM8300_SUBDEVICE_VIDEO
;
330 ioctl(fd_control
, EM8300_IOCTL_FLUSH
, &ioval
);
331 ioval
= EM8300_SUBDEVICE_AUDIO
;
332 ioctl(fd_control
, EM8300_IOCTL_FLUSH
, &ioval
);
334 /* Sync the video device to make sure the buffers are empty
335 * and set the playback speed to normal. Also reset the
336 * em8300 internal clock.
340 ioctl(fd_control
, EM8300_IOCTL_SCR_SETSPEED
, &ioval
);
342 /* Store some variables statically that we need later in another scope */
347 /* Set monitor_aspect to avoid jitter */
348 monitor_aspect
= (float) width
/ (float) height
;
350 if (ioctl(fd_control
, EM8300_IOCTL_GET_VIDEOMODE
, &old_vmode
) < 0) {
351 mp_tmsg(MSGT_VO
,MSGL_WARN
, "[VO_DXR3] Unable to get TV norm!\n");
356 if (dxr3_norm
!= 0) {
357 if (dxr3_norm
== 5) {
358 ioval
= EM8300_VIDEOMODE_NTSC
;
359 } else if (dxr3_norm
== 4) {
360 ioval
= EM8300_VIDEOMODE_PAL60
;
361 } else if (dxr3_norm
== 3) {
362 ioval
= EM8300_VIDEOMODE_PAL
;
363 } else if (dxr3_norm
== 2) {
365 ioval
= EM8300_VIDEOMODE_PAL60
;
367 ioval
= EM8300_VIDEOMODE_PAL
;
370 mp_tmsg(MSGT_VO
,MSGL_INFO
, "[VO_DXR3] Auto-selected TV norm by framerate: ");
371 ioval
== EM8300_VIDEOMODE_PAL60
? mp_msg(MSGT_VO
,MSGL_INFO
, "PAL-60") : mp_msg(MSGT_VO
,MSGL_INFO
, "PAL");
375 ioval
= EM8300_VIDEOMODE_NTSC
;
377 ioval
= EM8300_VIDEOMODE_PAL
;
380 mp_tmsg(MSGT_VO
,MSGL_INFO
, "[VO_DXR3] Auto-selected TV norm by framerate: ");
381 ioval
== EM8300_VIDEOMODE_NTSC
? mp_msg(MSGT_VO
,MSGL_INFO
, "NTSC") : mp_msg(MSGT_VO
,MSGL_INFO
, "PAL");
385 if (old_vmode
!= ioval
) {
386 if (ioctl(fd_control
, EM8300_IOCTL_SET_VIDEOMODE
, &ioval
) < 0) {
387 mp_tmsg(MSGT_VO
,MSGL_WARN
, "[VO_DXR3] Unable to set TV norm!\n");
393 /* libavcodec requires a width and height that is x|16 */
394 aspect_save_orig(width
, height
);
395 aspect_save_prescale(d_width
, d_height
);
396 ioctl(fd_control
, EM8300_IOCTL_GET_VIDEOMODE
, &ioval
);
397 if (ioval
== EM8300_VIDEOMODE_NTSC
) {
398 mp_tmsg(MSGT_VO
,MSGL_INFO
, "[VO_DXR3] Setting up for NTSC.\n");
399 aspect_save_screenres(352, 240);
401 mp_tmsg(MSGT_VO
,MSGL_INFO
, "[VO_DXR3] Setting up for PAL/SECAM.\n");
402 aspect_save_screenres(352, 288);
404 aspect(&s_width
, &s_height
, A_ZOOM
);
405 s_width
-= s_width
% 16;
406 s_height
-= s_height
% 16;
408 /* Try to figure out whether to use widescreen output or not */
409 /* Anamorphic widescreen modes makes this a pain in the ass */
410 tmp1
= abs(d_height
- ((d_width
/ 4) * 3));
411 tmp2
= abs(d_height
- (int) (d_width
/ 2.35));
413 ioval
= EM8300_ASPECTRATIO_4_3
;
414 mp_tmsg(MSGT_VO
,MSGL_INFO
, "[VO_DXR3] Setting aspect ratio to 4:3.\n");
416 ioval
= EM8300_ASPECTRATIO_16_9
;
417 mp_tmsg(MSGT_VO
,MSGL_INFO
, "[VO_DXR3] Setting aspect ratio to 16:9.\n");
419 ioctl(fd_control
, EM8300_IOCTL_SET_ASPECTRATIO
, &ioval
);
422 #ifdef CONFIG_FREETYPE
423 if (ioval
== EM8300_ASPECTRATIO_16_9
) {
424 s_width
*= d_height
*1.78/s_height
*(d_width
*1.0/d_height
)/2.35;
428 //printf("VO: [dxr3] sw/sh:dw/dh ->%i,%i,%i,%i\n",s_width,s_height,d_width,d_height);
434 osdpicbuf
= calloc( 1,s_width
* s_height
);
435 if (osdpicbuf
== NULL
) {
436 mp_tmsg(MSGT_VO
,MSGL_ERR
, "[VO_DXR3] out of memory\n");
439 spued
= malloc(sizeof(encodedata
));
442 mp_tmsg(MSGT_VO
,MSGL_ERR
, "[VO_DXR3] out of memory\n");
445 spubuf
= malloc(sizeof(encodedata
));
446 if (spubuf
== NULL
) {
449 mp_tmsg(MSGT_VO
,MSGL_ERR
, "[VO_DXR3] out of memory\n");
454 osdpicbuf_w
= s_width
;
455 osdpicbuf_h
= s_height
;
458 pixbuf_encode_rle( 0,0,osdpicbuf_w
,osdpicbuf_h
- 1,osdpicbuf
,osdpicbuf_w
,spubuf
);
465 XSetWindowAttributes xswa
;
467 unsigned long xswamask
;
472 int depth
, red_shift
, red_prec
, green_shift
, green_prec
, blue_shift
, blue_prec
, acq_color
;
473 em8300_overlay_screen_t ovlscr
;
474 em8300_attribute_t ovlattr
;
476 vo_dx
= (vo_screenwidth
- d_width
) / 2;
477 vo_dy
= (vo_screenheight
- d_height
) / 2;
479 vo_dheight
= d_height
;
480 XGetWindowAttributes(mDisplay
, DefaultRootWindow(mDisplay
), &xwin_attribs
);
481 depth
= xwin_attribs
.depth
;
482 if (depth
!= 15 && depth
!= 16 && depth
!= 24 && depth
!= 32) {
485 XMatchVisualInfo(mDisplay
, mScreen
, depth
, TrueColor
, &vinfo
);
486 vo_x11_create_vo_window(&vinfo
, vo_dx
, vo_dy
,
487 d_width
, d_height
, flags
,
488 CopyFromParent
, "Viewing Window", title
);
489 xswa
.background_pixel
= KEY_COLOR
;
490 xswa
.border_pixel
= 0;
491 xswamask
= CWBackPixel
| CWBorderPixel
;
492 XChangeWindowAttributes(mDisplay
, vo_window
, xswamask
, &xswa
);
494 /* Start setting up overlay */
495 XGetWindowAttributes(mDisplay
, mRootWin
, &xwin_attribs
);
496 overlay_set_screen(overlay_data
, xwin_attribs
.width
, xwin_attribs
.height
, xwin_attribs
.depth
);
497 overlay_read_state(overlay_data
, NULL
);
499 /* Allocate keycolor */
500 cmap
= vo_x11_create_colormap(&vinfo
);
501 calculate_cvals(vinfo
.red_mask
, &red_shift
, &red_prec
);
502 calculate_cvals(vinfo
.green_mask
, &green_shift
, &green_prec
);
503 calculate_cvals(vinfo
.blue_mask
, &blue_shift
, &blue_prec
);
505 key_color
.red
= ((KEY_COLOR
>> 16) & 0xff) * 256;
506 key_color
.green
= ((KEY_COLOR
>> 8) & 0xff) * 256;
507 key_color
.blue
= (KEY_COLOR
& 0xff) * 256;
508 key_color
.pixel
= (((key_color
.red
>> (16 - red_prec
)) << red_shift
) +
509 ((key_color
.green
>> (16 - green_prec
)) << green_shift
) +
510 ((key_color
.blue
>> (16 - blue_prec
)) << blue_shift
));
511 key_color
.flags
= DoRed
| DoGreen
| DoBlue
;
512 if (!XAllocColor(mDisplay
, cmap
, &key_color
)) {
513 mp_tmsg(MSGT_VO
,MSGL_ERR
, "[VO_DXR3] Unable to allocate keycolor!\n");
517 acq_color
= ((key_color
.red
/ 256) << 16) | ((key_color
.green
/ 256) << 8) | key_color
.blue
;
518 if (key_color
.pixel
!= KEY_COLOR
) {
519 mp_tmsg(MSGT_VO
,MSGL_WARN
, "[VO_DXR3] Unable to allocate exact keycolor, using closest match (0x%lx).\n", key_color
.pixel
);
522 /* Set keycolor and activate overlay */
523 XSetWindowBackground(mDisplay
, vo_window
, key_color
.pixel
);
524 XClearWindow(mDisplay
, vo_window
);
525 overlay_set_keycolor(overlay_data
, key_color
.pixel
);
526 overlay_set_mode(overlay_data
, EM8300_OVERLAY_MODE_OVERLAY
);
527 overlay_set_mode(overlay_data
, EM8300_OVERLAY_MODE_RECTANGLE
);
534 static void draw_alpha(int x
, int y
, int w
, int h
, unsigned char* src
, unsigned char *srca
, int srcstride
)
537 unsigned char *buf
= &osdpicbuf
[(y
* osdpicbuf_w
) + x
];
540 register int stride
= 0;
542 for (ly
= 0; ly
< h
- 1; ly
++)
544 for(lx
= 0; lx
< w
; lx
++ )
545 if ( ( srca
[stride
+ lx
] )&&( src
[stride
+ lx
] >= 128 ) ) buf
[by
+ lx
] = 3;
549 pixbuf_encode_rle(x
, y
, osdpicbuf_w
, osdpicbuf_h
- 1, osdpicbuf
, osdpicbuf_w
, spued
);
553 extern mp_osd_obj_t
* vo_osd_list
;
555 static void draw_osd(void)
558 static int cleared
= 0;
561 if ((disposd
% 15) == 0)
564 mp_osd_obj_t
* obj
= vo_osd_list
;
565 vo_update_osd( osd_w
,osd_h
);
568 if ( obj
->flags
& OSDFLAG_VISIBLE
) { changed
=1; break; }
574 vo_draw_text(osd_w
, osd_h
, draw_alpha
);
575 memset(osdpicbuf
, 0, s_width
* s_height
);
582 spued
->count
=spubuf
->count
;
583 fast_memcpy( spued
->data
,spubuf
->data
,DATASIZE
);
589 /* could stand some check here to see if the subpic hasn't changed
590 * as if it hasn't and we re-send it it will "blink" as the last one
591 * is turned off, and the new one (same one) is turned on
593 /* Subpics are not stable yet =(
594 expect lockups if you enable */
595 write(fd_spu
, spued
->data
, spued
->count
);
602 static int draw_frame(uint8_t * src
[])
604 vo_mpegpes_t
*p
= (vo_mpegpes_t
*) src
[0];
608 write(fd_spu
, p
->data
, p
->size
);
611 write(fd_video
, p
->data
, p
->size
);
615 static void flip_page(void)
619 int event
= vo_x11_check_events(mDisplay
);
620 if (event
& VO_EVENT_RESIZE
) {
622 XGetWindowAttributes(mDisplay
, vo_window
, &xwin_attribs
);
623 XTranslateCoordinates(mDisplay
, vo_window
, mRootWin
, -xwin_attribs
.border_width
, -xwin_attribs
.border_width
, &xwin_attribs
.x
, &xwin_attribs
.y
, &junkwindow
);
624 overlay_set_window(overlay_data
, xwin_attribs
.x
, xwin_attribs
.y
, xwin_attribs
.width
, xwin_attribs
.height
);
626 if (event
& VO_EVENT_EXPOSE
) {
628 XSetWindowBackground(mDisplay
, vo_window
, KEY_COLOR
);
629 XClearWindow(mDisplay
, vo_window
);
630 XGetWindowAttributes(mDisplay
, vo_window
, &xwin_attribs
);
631 XTranslateCoordinates(mDisplay
, vo_window
, mRootWin
, -xwin_attribs
.border_width
, -xwin_attribs
.border_width
, &xwin_attribs
.x
, &xwin_attribs
.y
, &junkwindow
);
632 overlay_set_window(overlay_data
, xwin_attribs
.x
, xwin_attribs
.y
, xwin_attribs
.width
, xwin_attribs
.height
);
638 ioctl(fd_control
, EM8300_IOCTL_SCR_GET
, &ioval
);
642 ioctl(fd_control
, EM8300_IOCTL_SCR_SET
, &ioval
);
644 } else if ((vo_pts
- pts_offset
) < (ioval
- 7200) || (vo_pts
- pts_offset
) > (ioval
+ 7200)) {
645 ioval
= (vo_pts
+ pts_offset
) >> 1;
646 ioctl(fd_control
, EM8300_IOCTL_SCR_SET
, &ioval
);
647 ioctl(fd_control
, EM8300_IOCTL_SCR_GET
, &ioval
);
648 pts_offset
= vo_pts
- (ioval
<< 1);
649 if (pts_offset
< 0) {
653 ioval
= vo_pts
+ pts_offset
;
654 ioctl(fd_video
, EM8300_IOCTL_SPU_SETPTS
, &ioval
);
655 ioctl(fd_video
, EM8300_IOCTL_VIDEO_SETPTS
, &ioval
);
657 } else if (dxr3_prebuf
) {
658 ioctl(fd_spu
, EM8300_IOCTL_SPU_SETPTS
, &vo_pts
);
659 ioctl(fd_video
, EM8300_IOCTL_VIDEO_SETPTS
, &vo_pts
);
663 static int draw_slice(uint8_t *srcimg
[], int stride
[], int w
, int h
, int x0
, int y0
)
668 static void uninit(void)
670 mp_tmsg(MSGT_VO
,MSGL_INFO
, "[VO_DXR3] Uninitializing.\n");
673 overlay_set_mode(overlay_data
, EM8300_OVERLAY_MODE_OFF
);
674 overlay_release(overlay_data
);
679 if (old_vmode
!= -1) {
680 if (ioctl(fd_control
, EM8300_IOCTL_SET_VIDEOMODE
, &old_vmode
) < 0) {
681 mp_tmsg(MSGT_VO
,MSGL_WARN
, "[VO_DXR3] Failed restoring TV norm!\n");
685 if (fd_video
!= -1) {
691 if (fd_control
!= -1) {
700 static void check_events(void)
704 static int preinit(const char *arg
)
706 char devname
[MAX_STR_SIZE
];
707 int fdflags
= O_WRONLY
;
709 /* Parse commandline */
711 if (!strncmp("prebuf", arg
, 6) && !dxr3_prebuf
) {
712 mp_tmsg(MSGT_VO
,MSGL_INFO
, "[VO_DXR3] Enabling prebuffering.\n");
714 } else if (!strncmp("sync", arg
, 4) && !dxr3_newsync
) {
715 mp_tmsg(MSGT_VO
,MSGL_INFO
, "[VO_DXR3] Using new sync engine.\n");
717 } else if (!strncmp("overlay", arg
, 7) && !dxr3_overlay
) {
719 mp_tmsg(MSGT_VO
,MSGL_INFO
, "[VO_DXR3] Using overlay.\n");
722 mp_tmsg(MSGT_VO
,MSGL_WARN
, "[VO_DXR3] Error: Overlay requires compiling with X11 libs/headers installed.\n");
724 } else if (!strncmp("norm=", arg
, 5)) {
726 // dxr3_norm is 0 (-> don't change norm) by default
727 // but maybe someone changes this in the future
729 mp_tmsg(MSGT_VO
,MSGL_INFO
, "[VO_DXR3] Will set TV norm to: ");
733 mp_msg(MSGT_VO
,MSGL_INFO
, "NTSC");
734 } else if (*arg
== '4') {
736 mp_msg(MSGT_VO
,MSGL_INFO
, "PAL-60");
737 } else if (*arg
== '3') {
739 mp_msg(MSGT_VO
,MSGL_INFO
, "PAL");
740 } else if (*arg
== '2') {
742 mp_tmsg(MSGT_VO
,MSGL_INFO
, "auto-adjust to movie framerate (PAL/PAL-60)");
743 } else if (*arg
== '1') {
745 mp_tmsg(MSGT_VO
,MSGL_INFO
, "auto-adjust to movie framerate (PAL/NTSC)");
746 } else if (*arg
== '0') {
748 mp_tmsg(MSGT_VO
,MSGL_INFO
, "Use current norm.");
751 mp_tmsg(MSGT_VO
,MSGL_INFO
, "Unknown norm supplied. Use current norm.");
754 mp_msg(MSGT_VO
,MSGL_INFO
, ".\n");
755 } else if (arg
[0] == '0' || arg
[0] == '1' || arg
[0] == '2' || arg
[0] == '3') {
756 dxr3_device_num
= arg
[0];
759 arg
= strchr(arg
, ':');
766 /* Open the control interface */
767 sprintf(devname
, "/dev/em8300-%d", dxr3_device_num
);
768 fd_control
= open(devname
, fdflags
);
769 if (fd_control
< 1) {
770 /* Fall back to old naming scheme */
771 mp_tmsg(MSGT_VO
,MSGL_WARN
, "[VO_DXR3] Error opening %s for writing, trying /dev/em8300 instead.\n", devname
);
772 sprintf(devname
, "/dev/em8300");
773 fd_control
= open(devname
, fdflags
);
774 if (fd_control
< 1) {
775 mp_tmsg(MSGT_VO
,MSGL_ERR
, "[VO_DXR3] Error opening /dev/em8300 for writing as well!\nBailing out.\n");
779 mp_tmsg(MSGT_VO
,MSGL_INFO
, "[VO_DXR3] Opened: %s.\n", devname
);
782 /* Open the video interface */
783 sprintf(devname
, "/dev/em8300_mv-%d", dxr3_device_num
);
784 fd_video
= open(devname
, fdflags
);
786 /* Fall back to old naming scheme */
787 mp_tmsg(MSGT_VO
,MSGL_WARN
, "[VO_DXR3] Error opening %s for writing, trying /dev/em8300_mv instead.\n", devname
);
788 sprintf(devname
, "/dev/em8300_mv");
789 fd_video
= open(devname
, fdflags
);
791 mp_tmsg(MSGT_VO
,MSGL_ERR
, "[VO_DXR3] Error opening /dev/em8300_mv for writing as well!\nBailing out.\n");
796 mp_tmsg(MSGT_VO
,MSGL_INFO
, "[VO_DXR3] Opened: %s.\n", devname
);
798 strcpy(fdv_name
, devname
);
800 /* Open the subpicture interface */
801 sprintf(devname
, "/dev/em8300_sp-%d", dxr3_device_num
);
802 fd_spu
= open(devname
, fdflags
);
804 /* Fall back to old naming scheme */
805 mp_tmsg(MSGT_VO
,MSGL_WARN
, "[VO_DXR3] Error opening %s for writing, trying /dev/em8300_sp instead.\n", devname
);
806 sprintf(devname
, "/dev/em8300_sp");
807 fd_spu
= open(devname
, fdflags
);
809 mp_tmsg(MSGT_VO
,MSGL_ERR
, "[VO_DXR3] Error opening /dev/em8300_sp for writing as well!\nBailing out.\n");
814 mp_tmsg(MSGT_VO
,MSGL_INFO
, "[VO_DXR3] Opened: %s.\n", devname
);
816 strcpy(fds_name
, devname
);
821 /* Fucked up hack needed to enable overlay.
822 * Will be removed as soon as I figure out
823 * how to make it work like it should
827 XWindowAttributes attribs
;
829 dpy
= XOpenDisplay(NULL
);
831 mp_tmsg(MSGT_VO
,MSGL_ERR
, "[VO_DXR3] Unable to open display during overlay hack setup!\n");
834 XGetWindowAttributes(dpy
, RootWindow(dpy
, DefaultScreen(dpy
)), &attribs
);
835 ov
= overlay_init(fd_control
);
836 overlay_set_screen(ov
, attribs
.width
, attribs
.height
, PlanesOfScreen(ScreenOfDisplay(dpy
, 0)));
837 overlay_read_state(ov
, NULL
);
838 overlay_set_keycolor(ov
, KEY_COLOR
);
839 overlay_set_mode(ov
, EM8300_OVERLAY_MODE_OVERLAY
);
840 overlay_set_mode(ov
, EM8300_OVERLAY_MODE_RECTANGLE
);
843 /* End of fucked up hack */
845 /* Initialize overlay and X11 */
846 overlay_data
= overlay_init(fd_control
);
848 mp_tmsg(MSGT_VO
,MSGL_ERR
, "[VO_DXR3] Unable to init X11!\n");
855 ioctl(fd_control
, EM8300_IOCTL_SCR_GET
, &ioval
);
856 pts_offset
= vo_pts
- (ioval
<< 1);
857 if (pts_offset
< 0) {
865 /* Begin overlay.c */
866 static int update_parameters(overlay_t
*o
)
868 overlay_set_attribute(o
, EM9010_ATTRIBUTE_XOFFSET
, o
->xoffset
);
869 overlay_set_attribute(o
, EM9010_ATTRIBUTE_YOFFSET
, o
->yoffset
);
870 overlay_set_attribute(o
, EM9010_ATTRIBUTE_XCORR
, o
->xcorr
);
871 overlay_set_attribute(o
, EM9010_ATTRIBUTE_STABILITY
, o
->stability
);
872 overlay_set_attribute(o
, EM9010_ATTRIBUTE_JITTER
, o
->jitter
);
876 static int overlay_set_attribute(overlay_t
*o
, int attribute
, int value
)
878 em8300_attribute_t attr
;
880 attr
.attribute
= attribute
;
882 if (ioctl(o
->dev
, EM8300_IOCTL_OVERLAY_SET_ATTRIBUTE
, &attr
)==-1)
884 mp_tmsg(MSGT_VO
,MSGL_WARN
, "[VO_DXR3] Failed setting overlay attribute.\n");
891 static overlay_t
*overlay_init(int dev
)
895 o
= malloc(sizeof(overlay_t
));
900 memset(o
,0,sizeof(overlay_t
));
903 o
->xres
= 1280; o
->yres
=1024; o
->xcorr
=1000;
904 o
->color_interval
=10;
909 static int overlay_release(overlay_t
*o
)
925 static struct lut_entry
*new_lookuptable(overlay_t
*o
)
927 struct lut_entry m
[] = {
928 {"xoffset", TYPE_INT
, &o
->xoffset
},
929 {"yoffset", TYPE_INT
, &o
->yoffset
},
930 {"xcorr", TYPE_INT
, &o
->xcorr
},
931 {"jitter", TYPE_INT
, &o
->jitter
},
932 {"stability", TYPE_INT
, &o
->stability
},
933 {"keycolor", TYPE_XINT
, &o
->keycolor
},
934 {"colcal_upper", TYPE_COEFF
, &o
->colcal_upper
[0]},
935 {"colcal_lower", TYPE_COEFF
, &o
->colcal_lower
[0]},
936 {"color_interval", TYPE_FLOAT
, &o
->color_interval
},
940 p
= malloc(sizeof(m
));
941 memcpy(p
,m
,sizeof(m
));
945 static int lookup_parameter(overlay_t
*o
, struct lut_entry
*lut
, char *name
, void **ptr
, int *type
) {
948 for(i
=0; lut
[i
].name
; i
++) {
949 if(!strcmp(name
,lut
[i
].name
)) {
958 static int overlay_read_state(overlay_t
*o
, char *p
)
961 char path
[128],fname
[128],tmp
[128],line
[256];
963 struct lut_entry
*lut
;
969 av_strlcpy(fname
, getenv("HOME"), sizeof( fname
));
970 av_strlcat(fname
,"/.overlay", sizeof( fname
));
972 av_strlcpy(fname
, p
, sizeof( fname
));
974 sprintf(tmp
,"/res_%dx%dx%d",o
->xres
,o
->yres
,o
->depth
);
975 av_strlcat(fname
, tmp
, sizeof( fname
));
977 if(!(fp
=fopen(fname
,"r")))
980 lut
= new_lookuptable(o
);
983 if(!fgets(line
,256,fp
))
985 tok
=strtok(line
," ");
986 if(lookup_parameter(o
,lut
,tok
,&ptr
,&type
)) {
987 tok
=strtok(NULL
," ");
990 sscanf(tok
,"%d",(int *)ptr
);
993 sscanf(tok
,"%x",(int *)ptr
);
996 sscanf(tok
,"%f",(float *)ptr
);
1000 sscanf(tok
,"%f",&((struct coeff
*)ptr
)[j
].k
);
1001 tok
=strtok(NULL
," ");
1002 sscanf(tok
,"%f",&((struct coeff
*)ptr
)[j
].m
);
1003 tok
=strtok(NULL
," ");
1011 update_parameters(o
);
1018 static void overlay_update_params(overlay_t
*o
) {
1019 update_parameters(o
);
1022 static int overlay_write_state(overlay_t
*o
, char *p
)
1025 char path
[128],fname
[128],tmp
[128];
1027 char line
[256],*tok
;
1028 struct lut_entry
*lut
;
1032 av_strlcpy(fname
, getenv("HOME"), sizeof( fname
));
1033 av_strlcat(fname
,"/.overlay", sizeof( fname
));
1035 av_strlcpy(fname
, p
, sizeof( fname
));
1037 if(access(fname
, W_OK
|X_OK
|R_OK
)) {
1038 if(mkdir(fname
,0766))
1042 sprintf(tmp
,"/res_%dx%dx%d",o
->xres
,o
->yres
,o
->depth
);
1043 av_strlcat(fname
, tmp
, sizeof( fname
));
1045 if(!(fp
=fopen(fname
,"w")))
1048 lut
= new_lookuptable(o
);
1050 for(i
=0; lut
[i
].name
; i
++) {
1051 fprintf(fp
,"%s ",lut
[i
].name
);
1052 switch(lut
[i
].type
) {
1054 fprintf(fp
,"%d\n",*(int *)lut
[i
].ptr
);
1057 fprintf(fp
,"%06x\n",*(int *)lut
[i
].ptr
);
1060 fprintf(fp
,"%f\n",*(float *)lut
[i
].ptr
);
1064 fprintf(fp
,"%f %f ",((struct coeff
*)lut
[i
].ptr
)[j
].k
,
1065 ((struct coeff
*)lut
[i
].ptr
)[j
].m
);
1075 static int overlay_set_screen(overlay_t
*o
, int xres
, int yres
, int depth
)
1077 em8300_overlay_screen_t scr
;
1086 if (ioctl(o
->dev
, EM8300_IOCTL_OVERLAY_SETSCREEN
, &scr
)==-1)
1088 mp_tmsg(MSGT_VO
,MSGL_WARN
, "[VO_DXR3] Failed setting overlay screen!\nExiting.\n");
1094 static int overlay_set_mode(overlay_t
*o
, int mode
)
1096 if (ioctl(o
->dev
, EM8300_IOCTL_OVERLAY_SETMODE
, &mode
)==-1) {
1097 mp_tmsg(MSGT_VO
,MSGL_WARN
, "[VO_DXR3] Failed enabling overlay!\nExiting.\n");
1103 static int overlay_set_window(overlay_t
*o
, int xpos
,int ypos
,int width
,int height
)
1105 em8300_overlay_window_t win
;
1109 win
.height
= height
;
1111 if (ioctl(o
->dev
, EM8300_IOCTL_OVERLAY_SETWINDOW
, &win
)==-1)
1113 mp_tmsg(MSGT_VO
,MSGL_WARN
, "[VO_DXR3] Failed resizing overlay window!\n");
1119 static int overlay_set_bcs(overlay_t
*o
, int brightness
, int contrast
, int saturation
)
1122 bcs
.brightness
= brightness
;
1123 bcs
.contrast
= contrast
;
1124 bcs
.saturation
= saturation
;
1126 if (ioctl(o
->dev
, EM8300_IOCTL_GETBCS
, &bcs
)==-1)
1128 mp_tmsg(MSGT_VO
,MSGL_WARN
, "[VO_DXR3] Failed setting overlay bcs!\n");
1134 static int col_interp(float x
, struct coeff c
)
1145 static int overlay_set_keycolor(overlay_t
*o
, int color
) {
1146 int r
= (color
& 0xff0000) >> 16;
1147 int g
= (color
& 0x00ff00) >> 8;
1148 int b
= (color
& 0x0000ff);
1153 ru
= r
+o
->color_interval
;
1154 gu
= g
+o
->color_interval
;
1155 bu
= b
+o
->color_interval
;
1157 rl
= r
-o
->color_interval
;
1158 gl
= g
-o
->color_interval
;
1159 bl
= b
-o
->color_interval
;
1161 upper
= (col_interp(ru
, o
->colcal_upper
[0]) << 16) |
1162 (col_interp(gu
, o
->colcal_upper
[1]) << 8) |
1163 (col_interp(bu
, o
->colcal_upper
[2]));
1165 lower
= (col_interp(rl
, o
->colcal_lower
[0]) << 16) |
1166 (col_interp(gl
, o
->colcal_lower
[1]) << 8) |
1167 (col_interp(bl
, o
->colcal_lower
[2]));
1169 //printf("0x%06x 0x%06x\n",upper,lower);
1170 overlay_set_attribute(o
,EM9010_ATTRIBUTE_KEYCOLOR_UPPER
,upper
);
1171 overlay_set_attribute(o
,EM9010_ATTRIBUTE_KEYCOLOR_LOWER
,lower
);
1175 static void least_sq_fit(int *x
, int *y
, int n
, float *k
, float *m
)
1177 float sx
=0,sy
=0,sxx
=0,sxy
=0;
1181 for(i
=0; i
< n
; i
++) {
1190 *m
=(sxx
*sy
-sx
*sxy
)/delta
;
1191 *k
=(sxy
*n
-sx
*sy
)/delta
;
1194 static int overlay_autocalibrate(overlay_t
*o
, pattern_drawer_cb pd
, void *arg
)
1196 em8300_overlay_calibrate_t cal
;
1197 em8300_overlay_window_t win
;
1198 int x
[256],r
[256],g
[256],b
[256],n
;
1206 overlay_set_mode(o
, EM8300_OVERLAY_MODE_OVERLAY
);
1207 overlay_set_screen(o
, o
->xres
, o
->yres
, o
->depth
);
1209 /* Calibrate Y-offset */
1211 o
->draw_pattern(0x0000ff, 0, 0, 0, 355, 1, o
->dp_arg
);
1213 cal
.cal_mode
= EM8300_OVERLAY_CALMODE_YOFFSET
;
1214 if (ioctl(o
->dev
, EM8300_IOCTL_OVERLAY_CALIBRATE
, &cal
))
1216 mp_tmsg(MSGT_VO
,MSGL_WARN
, "[VO_DXR3] Failed getting overlay Y-offset values!\nExiting.\n");
1219 o
->yoffset
= cal
.result
;
1220 mp_tmsg(MSGT_VO
,MSGL_INFO
, "[VO_DXR3] Yoffset: %d.\n",cal
.result
);
1222 /* Calibrate X-offset */
1224 o
->draw_pattern(0x0000ff, 0, 0, 0, 2, 288, o
->dp_arg
);
1226 cal
.cal_mode
= EM8300_OVERLAY_CALMODE_XOFFSET
;
1227 if (ioctl(o
->dev
, EM8300_IOCTL_OVERLAY_CALIBRATE
, &cal
))
1229 mp_tmsg(MSGT_VO
,MSGL_WARN
, "[VO_DXR3] Failed getting overlay X-offset values!\nExiting.\n");
1232 o
->xoffset
= cal
.result
;
1233 mp_tmsg(MSGT_VO
,MSGL_INFO
, "[VO_DXR3] Xoffset: %d.\n",cal
.result
);
1235 /* Calibrate X scale correction */
1237 o
->draw_pattern(0x0000ff, 0, 355, 0, 2, 288, o
->dp_arg
);
1239 cal
.cal_mode
= EM8300_OVERLAY_CALMODE_XCORRECTION
;
1240 if (ioctl(o
->dev
, EM8300_IOCTL_OVERLAY_CALIBRATE
, &cal
))
1242 mp_tmsg(MSGT_VO
,MSGL_WARN
, "[VO_DXR3] Failed getting overlay X scale correction!\nExiting.\n");
1245 mp_tmsg(MSGT_VO
,MSGL_INFO
, "[VO_DXR3] Xcorrection: %d.\n",cal
.result
);
1246 o
->xcorr
= cal
.result
;
1250 win
.width
= o
->xres
-20;
1251 win
.height
= o
->yres
-20;
1252 if (ioctl(o
->dev
, EM8300_IOCTL_OVERLAY_SETWINDOW
, &win
)==-1) {
1253 mp_tmsg(MSGT_VO
,MSGL_ERR
, "[VO_DXR3] Failed resizing overlay window!\n");
1257 /* Calibrate key color upper limit */
1259 for(i
=128,n
=0; i
<= 0xff; i
+=4) {
1260 o
->draw_pattern(i
| (i
<< 8) | (i
<< 16), 0,
1261 (o
->xres
-200)/2,0,200,o
->yres
,o
->dp_arg
);
1265 cal
.cal_mode
= EM8300_OVERLAY_CALMODE_COLOR
;
1267 if (ioctl(o
->dev
, EM8300_IOCTL_OVERLAY_CALIBRATE
, &cal
))
1273 r
[n
] = (cal
.result
>>16)&0xff;
1274 g
[n
] = (cal
.result
>>8)&0xff;
1275 b
[n
] = (cal
.result
)&0xff;
1279 least_sq_fit(x
,r
,n
,&o
->colcal_upper
[0].k
,&o
->colcal_upper
[0].m
);
1280 least_sq_fit(x
,g
,n
,&o
->colcal_upper
[1].k
,&o
->colcal_upper
[1].m
);
1281 least_sq_fit(x
,b
,n
,&o
->colcal_upper
[2].k
,&o
->colcal_upper
[2].m
);
1283 /* Calibrate key color lower limit */
1285 for(i
=128,n
=0; i
<= 0xff; i
+=4) {
1286 o
->draw_pattern(i
| (i
<< 8) | (i
<< 16), 0xffffff,
1287 (o
->xres
-200)/2,0,200,o
->yres
, o
->dp_arg
);
1291 cal
.cal_mode
= EM8300_OVERLAY_CALMODE_COLOR
;
1293 if (ioctl(o
->dev
, EM8300_IOCTL_OVERLAY_CALIBRATE
, &cal
))
1298 r
[n
] = (cal
.result
>>16)&0xff;
1299 g
[n
] = (cal
.result
>>8)&0xff;
1300 b
[n
] = (cal
.result
)&0xff;
1304 least_sq_fit(x
,r
,n
,&o
->colcal_lower
[0].k
,&o
->colcal_lower
[0].m
);
1305 least_sq_fit(x
,g
,n
,&o
->colcal_lower
[1].k
,&o
->colcal_lower
[1].m
);
1306 least_sq_fit(x
,b
,n
,&o
->colcal_lower
[2].k
,&o
->colcal_lower
[2].m
);
1308 overlay_set_mode(o
, EM8300_OVERLAY_MODE_OFF
);
1314 static int overlay_signalmode(overlay_t
*o
, int mode
) {
1315 if(ioctl(o
->dev
, EM8300_IOCTL_OVERLAY_SIGNALMODE
, &mode
) ==-1) {
1316 mp_tmsg(MSGT_VO
,MSGL_WARN
, "[VO_DXR3] Failed to set signal mix!\n");