summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorRobin KAY <komadori@users.sourceforge.net>2002-11-02 22:30:20 +0000
committerRobin KAY <komadori@users.sourceforge.net>2002-11-02 22:30:20 +0000
commit15eb7ae2aa0fdd218038ec51d65e258d697c7b2e (patch)
tree1a8a1d699c05107dcf63ab6cb606fb18a749e3b3 /src
parent6489129c06b3865b626483371140a86fc7a9cc02 (diff)
downloadxine-lib-15eb7ae2aa0fdd218038ec51d65e258d697c7b2e.tar.gz
xine-lib-15eb7ae2aa0fdd218038ec51d65e258d697c7b2e.tar.bz2
Reinsert ifdefs around SPARC assembler code in pgx64. Enable building pgx64 on Solaris/IA32 again. Change xine to use -mcpu=ultrasparc on sun4u platform.
CVS patchset: 3158 CVS date: 2002/11/02 22:30:20
Diffstat (limited to 'src')
-rw-r--r--src/video_out/video_out_pgx64.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/video_out/video_out_pgx64.c b/src/video_out/video_out_pgx64.c
index 7d3fc2d4d..a39896573 100644
--- a/src/video_out/video_out_pgx64.c
+++ b/src/video_out/video_out_pgx64.c
@@ -17,7 +17,7 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*
- * $Id: video_out_pgx64.c,v 1.12 2002/11/02 04:31:06 komadori Exp $
+ * $Id: video_out_pgx64.c,v 1.13 2002/11/02 22:30:21 komadori Exp $
*
* video_out_pgx64.c, Sun PGX64/PGX24 output plugin for xine
*
@@ -370,6 +370,7 @@ static void pgx64_display_frame(pgx64_driver_t *this, pgx64_frame_t *frame)
}
break;
+#ifdef ENABLE_VIS
case DEINTERLACE_LINEARBLEND_VIS: {
register uint32_t *first = (uint32_t *)(frame->vo_frame.base[0]);
register uint32_t *second = (uint32_t *)(frame->vo_frame.base[0]+frame->width);
@@ -402,6 +403,7 @@ static void pgx64_display_frame(pgx64_driver_t *this, pgx64_frame_t *frame)
memcpy(dest, second, frame->width);
}
break;
+#endif
default: {
memcpy(this->fbbase+frame->buf_y, frame->vo_frame.base[0], frame->lengths[0]);