Update of /cvsroot/freevo/kaa/xine
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv16410

Modified Files:
        setup.py 
Log Message:
Add yuv2rgb code from xine with slight modifications to play better with
evas; add x86(_64) detection to setup.py; lots and lots of updates to
buffer vo -- it's almost done now, sans the vf_osd port.


Index: setup.py
===================================================================
RCS file: /cvsroot/freevo/kaa/xine/setup.py,v
retrieving revision 1.8
retrieving revision 1.9
diff -C2 -d -r1.8 -r1.9
*** setup.py    30 Jul 2005 20:55:15 -0000      1.8
--- setup.py    1 Aug 2005 04:07:11 -0000       1.9
***************
*** 27,31 ****
  
  # python imports
! import sys
  
  try:
--- 27,31 ----
  
  # python imports
! import sys, os
  
  try:
***************
*** 40,44 ****
           'src/post_out.c', 'src/post_in.c', 'src/event.c', 
'src/event_queue.c',
           'src/utils.c', 'src/post/fork.c', 'src/vo_driver.c',
! #         'src/drivers/yuv2rgb.c', 'src/drivers/yuv2rgb_mmx.c'
  ]
  xineso = Extension('kaa.xine._xinemodule', files, config='src/config.h')
--- 40,44 ----
           'src/post_out.c', 'src/post_in.c', 'src/event.c', 
'src/event_queue.c',
           'src/utils.c', 'src/post/fork.c', 'src/vo_driver.c',
!          'src/drivers/yuv2rgb.c', 'src/drivers/yuv2rgb_mmx.c'
  ]
  xineso = Extension('kaa.xine._xinemodule', files, config='src/config.h')
***************
*** 51,54 ****
--- 51,60 ----
      sys.exit(1)
  
+ arch = os.popen("uname -i").read().strip()
+ if arch == "x86_64":
+     xineso.config('#define ARCH_X86_64')
+ elif arch == "i386":
+     xineso.config('#define ARCH_X86')
+ 
  setup(module      = 'xine',
        version     = '0.1',



-------------------------------------------------------
SF.Net email is sponsored by: Discover Easy Linux Migration Strategies
from IBM. Find simple to follow Roadmaps, straightforward articles,
informative Webcasts and more! Get everything you need to get up to
speed, fast. http://ads.osdn.com/?ad_id=7477&alloc_id=16492&op=click
_______________________________________________
Freevo-cvslog mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/freevo-cvslog

Reply via email to