summaryrefslogtreecommitdiffstats
path: root/vidix/sis_vid.c
diff options
context:
space:
mode:
authorben <ben@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-04-22 15:18:48 +0000
committerben <ben@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-04-22 15:18:48 +0000
commit232f7407ee7674db6d56ee1c6456f0aa7adf6629 (patch)
tree96371f031b3b9a8864f622dd62e7f6675be2508d /vidix/sis_vid.c
parent2437bc0ca39daea9847548f4e5681f6a83921182 (diff)
downloadmpv-232f7407ee7674db6d56ee1c6456f0aa7adf6629.tar.bz2
mpv-232f7407ee7674db6d56ee1c6456f0aa7adf6629.tar.xz
removed useless code from vidix drivers
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23066 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'vidix/sis_vid.c')
-rw-r--r--vidix/sis_vid.c73
1 files changed, 0 insertions, 73 deletions
diff --git a/vidix/sis_vid.c b/vidix/sis_vid.c
index a861bc9b44..e8b8e0d4fa 100644
--- a/vidix/sis_vid.c
+++ b/vidix/sis_vid.c
@@ -184,9 +184,6 @@ static void set_brightness(uint8_t brightness);
static void set_contrast(uint8_t contrast);
static void set_saturation(char saturation);
static void set_hue(uint8_t hue);
-#if 0
-static void set_alpha(uint8_t alpha);
-#endif
/* IO Port access functions */
static uint8_t getvideoreg(uint8_t reg)
@@ -372,14 +369,6 @@ static int sis_init(void)
if (sr_data & 0x20) /* interlaced mode */
sis_vmode |= VMODE_INTERLACED;
-#if 0 /* getting back false data here... */
- /* CR9 bit 7 set = double scan active */
- inSISIDXREG(SISCR, 0x09, cr_data);
- if (cr_data & 0x40) {
- sis_vmode |= VMODE_DOUBLESCAN;
- }
-#endif
-
/* JCP: eventually I'd like to replace this with a call to sisfb
SISFB_GET_INFO ioctl to get video bridge info. Not for now,
since it requires a very new and not widely distributed version. */
@@ -768,20 +757,6 @@ static int sis_config_playback(vidix_playback_t * info)
overlay.srcW = src_w - (sx - src_x);
overlay.srcH = src_h - (sy - src_y);
- /* JCP: what to do about this? */
-#if 0
- if ((pPriv->oldx1 != overlay.dstBox.x1) ||
- (pPriv->oldx2 != overlay.dstBox.x2) ||
- (pPriv->oldy1 != overlay.dstBox.y1) ||
- (pPriv->oldy2 != overlay.dstBox.y2)) {
- pPriv->mustwait = 1;
- pPriv->oldx1 = overlay.dstBox.x1;
- pPriv->oldx2 = overlay.dstBox.x2;
- pPriv->oldy1 = overlay.dstBox.y1;
- pPriv->oldy2 = overlay.dstBox.y2;
- }
-#endif
-
/* set merge line buffer */
merge_line_buf(overlay.srcW > 384);
@@ -1215,35 +1190,6 @@ calc_scale_factor(SISOverlayPtr pOverlay, int index, int iscrt2)
index = index;
iscrt2 = iscrt2;
-#if 0 /* JCP: don't bother with this for now. */
- /* TW: Stretch image due to idiotic LCD "auto"-scaling on LVDS (and 630+301B) */
- if (pSiS->VBFlags & CRT2_LCD) {
- if (sis_bridge_is_slave) {
- if (pSiS->VBFlags & VB_LVDS) {
- dstH = (dstH * LCDheight) / pOverlay->SCREENheight;
- } else if ((sis_vga_engine == SIS_300_VGA) &&
- (pSiS->
- VBFlags & (VB_301B | VB_302B | VB_301LV |
- VB_302LV))) {
- dstH = (dstH * LCDheight) / pOverlay->SCREENheight;
- }
- } else if (iscrt2) {
- if (pSiS->VBFlags & VB_LVDS) {
- dstH = (dstH * LCDheight) / pOverlay->SCREENheight;
- if (sis_displaymode == DISPMODE_MIRROR)
- flag = 1;
- } else if ((sis_vga_engine == SIS_300_VGA) &&
- (pSiS->
- VBFlags & (VB_301B | VB_302B | VB_301LV |
- VB_302LV))) {
- dstH = (dstH * LCDheight) / pOverlay->SCREENheight;
- if (sis_displaymode == DISPMODE_MIRROR)
- flag = 1;
- }
- }
- }
-#endif
-
/* TW: For double scan modes, we need to double the height
* (Perhaps we also need to scale LVDS, but I'm not sure.)
* On 310/325 series, we need to double the width as well.
@@ -1319,13 +1265,6 @@ calc_scale_factor(SISOverlayPtr pOverlay, int index, int iscrt2)
if ((flag) && (mult = (srcH / origdstH)) >= 2)
pOverlay->pitch /= mult;
} else {
-#if 0
- if (((pOverlay->bobEnable & 0x08) == 0x00) &&
- (((srcPitch * i) >> 2) > 0xFFF)) {
- pOverlay->bobEnable |= 0x08;
- srcPitch >>= 1;
- }
-#endif
if (((srcPitch * i) >> 2) > 0xFFF) {
i = (0xFFF * 2 / srcPitch);
pOverlay->VUSF = 0xFFFF;
@@ -1544,18 +1483,6 @@ static void set_hue(uint8_t hue)
setvideoreg(Index_VI_Hue, (hue & 0x08) ? (hue ^ 0x07) : hue);
}
-#if 0
-/* JCP: not used (I don't think it's correct anyway) */
-static void set_alpha(uint8_t alpha)
-{
- uint8_t data;
-
- data = getvideoreg(Index_VI_Key_Overlay_OP);
- data &= 0x0F;
- setvideoreg(Index_VI_Key_Overlay_OP, data | (alpha << 4));
-}
-#endif
-
VDXDriver sis_drv = {
"sis",
NULL,