summaryrefslogtreecommitdiff
path: root/src/xine-utils/xine_check.c
AgeCommit message (Collapse)Author
2003-02-17fixing the xine_check Xv problem (using Xv calls, but no Xv dependency is ↵Michael Roitzsch
allowed) with Daniel's solution: statically linking in libXv.a if available, otherwise dlopen() dynamic one CVS patchset: 4186 CVS date: 2003/02/17 17:06:46
2003-02-07load Xv extension library by hand to avoid libXv linkingMichael Roitzsch
PROBLEM: At least on SuSE, libXv.so is not present, but the Xv extension is. So health check would return a false negative. Any better solution? CVS patchset: 4115 CVS date: 2003/02/07 17:34:40
2002-11-22wrong response on non-linux platforms fixedGuenter Bartsch
CVS patchset: 3343 CVS date: 2002/11/22 23:36:04
2002-11-21Fix typo preventing compile on non-Linux platformsRobin KAY
CVS patchset: 3327 CVS date: 2002/11/21 08:08:40
2002-11-21remove unused xine param defines, add title and explanation fields to xine-checkGuenter Bartsch
CVS patchset: 3325 CVS date: 2002/11/21 00:26:06
2002-11-18Fixed wording in a comment.Stephen Torri
CVS patchset: 3284 CVS date: 2002/11/18 00:48:57
2002-11-11Fix xine_check on non-Linux platformsRobin KAY
CVS patchset: 3240 CVS date: 2002/11/11 20:18:15
2002-11-11Updated so that the function set_hc_result is now private to the file.Stephen Torri
CVS patchset: 3229 CVS date: 2002/11/11 04:18:41
2002-11-11Major thanks to Daniel for guiding me through the wonderful world ofStephen Torri
C memory management. The code is much more simplified through the use of a function added to xine_check called set_hc_result. CVS patchset: 3227 CVS date: 2002/11/11 01:06:58
2002-11-10Clean up code for printing of strings.Stephen Torri
CVS patchset: 3225 CVS date: 2002/11/10 23:44:59
2002-11-10We are not borrowing code. Unnecessary comment from when I was debatig how to doStephen Torri
yuv12 support. CVS patchset: 3224 CVS date: 2002/11/10 20:48:30
2002-11-10src/video_out/video_out_xv.c:Stephen Torri
Cleared up trailing spaces src/xine-engine/Makefile.am: libxine should depend on the build libxineutil. src/xine-utils/Makefile.am: src/xine-utils/xine_check.c: src/xine-utils/xine_check.h: Added checking of support of yuv12 CVS patchset: 3223 CVS date: 2002/11/10 20:35:50
2002-11-04use self-dlsym()'d "xdisplayname" instead of referencing XDisplayName...Siggi Langauf
CVS patchset: 3187 CVS date: 2002/11/04 13:22:19
2002-11-04Clean up code. Provde dlopen for XOpenDisplay, XDisplayName, and ↵Stephen Torri
XvQueryExtension. NOTE: On my system XDisplayName is not resolved. I do not understand this. I am committing this code to make it easier to spot the problem. I hopefully have provided enough there in the code for debug. CVS patchset: 3182 CVS date: 2002/11/04 06:30:15
2002-11-04Fix a compile bug for non-intel platforms.Stephen Torri
CVS patchset: 3181 CVS date: 2002/11/04 00:55:36
2002-11-03Added newer interface to xine_health_checkStephen Torri
CVS patchset: 3175 CVS date: 2002/11/03 23:07:14
2002-11-03add config.h header #include, remove bad characters, fix some compilation issuesGuenter Bartsch
CVS patchset: 3173 CVS date: 2002/11/03 22:39:22
2002-11-02Thanks to Siggi, Bastien, and Robin for their help.Stephen Torri
Used dlopen to grab reference to XvQueryExtension. Added #ifdef statements to protect doing unnecessary checks if X11 or Xv not installed. (still need work here) Removed X11 libs from xine-config flag (--libs) CVS patchset: 3156 CVS date: 2002/11/02 21:53:00
2002-11-02Fixed support for 8 bit colour in pgx64. Changed xine_check only to include ↵Robin KAY
Xv headers on Linux. Added pgx64 to ChangeLog. Made AUTHORS pretty again. CVS patchset: 3139 CVS date: 2002/11/02 04:31:06
2002-11-02Beta version of xine_health_check. Double check XV detection function.Stephen Torri
CVS patchset: 3137 CVS date: 2002/11/02 02:59:44
2002-10-26Fix prototype, when compiled on something != linuxJuergen Keil
CVS patchset: 3019 CVS date: 2002/10/26 20:21:09
2002-10-26Changed xine_health_check to take cdrom and dvd device links as argumentsStephen Torri
CVS patchset: 3004 CVS date: 2002/10/26 03:55:47
2002-10-22Disable the xine_check code for !linux platforms for now.Juergen Keil
CVS patchset: 2936 CVS date: 2002/10/22 17:05:58
2002-10-20turn healt_check into c-code ;>Guenter Bartsch
CVS patchset: 2873 CVS date: 2002/10/20 14:19:29
2002-10-20AUTHORS:Stephen Torri
Added myself to AUTHORS configure.ac: Removed a '-O' flag from DEBUG_CFLAGS when its initialized. The flag is added later depending on architecture of CPU. include/xine.h.in: src/xine-utils/Makefile.am: src/xine-utils/xine_check.h: src/xine-utils/xine_check.c: misc/xine-config.in: Moved some of the system checks from xine-config.in to xine_check.c. Now some of the checks are written in C instead of shell script. This is the first beta/bleeding edge/kick the tires/it might break for you version. It works for me (Intel P3). It will report to the stdout your kernel version, MTRR (x86) architecture only (depends on kernel), symbolic link for CDROM is ok, symbolic link for DVD is ok, and if environment variable "DISPLAY" is set. It will later support telling if DMA is turned on for IDE based DVD drives (Need help here - see below) and XVinfo. DMA: <HELP REQUIRED>: DMA is successfully check but I cannot determine that from the /dev/dvd symbolic link for those DVD drives that need to use the ide-scsi module (e.g. My DVD/CDRW). I can verify DMA is set if I hard code the link into the code (obviously not a prime choice). So if any solutions are known please pass them along. misc/Makefile.am: misc/xine-config.in: src/xine-engine/Makefile.am: Removed xine_logo information from xine-lib. Please let me know if I missed anyting. CVS patchset: 2869 CVS date: 2002/10/20 02:17:36