summaryrefslogtreecommitdiff
path: root/src/video_out
AgeCommit message (Collapse)Author
2003-03-14include dha code in xineplug_vo_out_vidix.so rather than each and every ↵James Stembridge
vidix driver CVS patchset: 4416 CVS date: 2003/03/14 21:07:04
2003-03-14mute vidix driver console output. vidix itself still outputs messages to the ↵James Stembridge
console CVS patchset: 4415 CVS date: 2003/03/14 19:46:52
2003-03-14Split config callbacksJames Stembridge
CVS patchset: 4414 CVS date: 2003/03/14 19:23:00
2003-03-12Fix non-scaled yuv->rgb mmx routines when frame height is not a multiple of 16James Stembridge
CVS patchset: 4398 CVS date: 2003/03/12 19:58:09
2003-03-06steps toward muting xine's console output by defaultGuenter Bartsch
CVS patchset: 4345 CVS date: 2003/03/06 16:49:30
2003-03-05Add option to fix alignment problem with some (buggy) XVideo driversEwald Snel
Undo previous change to libreal (bug is general video decoding problem) CVS patchset: 4342 CVS date: 2003/03/05 22:12:40
2003-03-04fix compiler warnings at least in xine's native codeMichael Roitzsch
CVS patchset: 4330 CVS date: 2003/03/04 10:30:27
2003-03-01Must include "xineutils.h" to pic up the definition of the new XINE_ASSERTJuergen Keil
macro. This fixes a problem with the xshm videoout plugin not loading on solaris, when the mediaLib is installed. CVS patchset: 4313 CVS date: 2003/03/01 14:31:33
2003-02-28Xine assert() replacement:Stephen Torri
All assert() function calls, with exceptions of libdvdread and libdvdnav, have been replaced with XINE_ASSERT. Functionally XINE_ASSERT behaves just likes its predecesor but its adding the ability to print out a stack trace at the point where the assertion fails. So here are a few examples. assert (0); This use of assert was found in a couple locations most favorably being the default case of a switch statement. This was the only thing there. So if the switch statement was unable to find a match it would have defaulted to this and the user and the developers would be stuck wonder who died and where. So it has been replaced with XINE_ASSERT(0, "We have reach this point and don't have a default case"); It may seem a bit none descriptive but there is more going on behind the scene. In addition to checking a condition is true/false, in this case '0', the XINE_ASSERT prints out: <filename>:<function name>:<line number> - assertion '<assertion expression>' failed. <description> An example of this might be: input_dvd.c:open_plugin:1178 - assertion '0' failed. xine_malloc failed!!! You have run out of memory XINE_ASSERT and its helper function, print_trace, are found in src/xine-utils/xineutils.h CVS patchset: 4301 CVS date: 2003/02/28 02:51:47
2003-02-23Fix error in chroma plane interleavingJames Stembridge
CVS patchset: 4258 CVS date: 2003/02/23 01:15:59
2003-02-22- we need to init X thread safe libraries, the front-end might not haveBastien Nocera
CVS patchset: 4255 CVS date: 2003/02/22 16:56:01
2003-02-21Configure option and error checking for frame buffer deviceJames Stembridge
CVS patchset: 4236 CVS date: 2003/02/21 19:54:52
2003-02-21- don't abort when we're not on an mmx capable machine, simply fallbackBastien Nocera
on non-deinterlaced CVS patchset: 4233 CVS date: 2003/02/21 17:46:22
2003-02-21Allow vidix vo driver to be compiled without X/framebuffer supportJames Stembridge
CVS patchset: 4225 CVS date: 2003/02/21 01:55:18
2003-02-21Build vidix vo driver if we have X11 or linux framebuffer supportJames Stembridge
CVS patchset: 4224 CVS date: 2003/02/21 01:16:32
2003-02-20Add vidixfb driver for using vidix on linux frame bufferJames Stembridge
CVS patchset: 4221 CVS date: 2003/02/20 20:19:39
2003-02-19Force reconfiguration of vidix when changing colour key settings as some ↵James Stembridge
drivers don't actually do anything when calling vdlSetGrKeys CVS patchset: 4205 CVS date: 2003/02/19 21:44:23
2003-02-19Fix missing mediaLib include pathRobin KAY
CVS patchset: 4202 CVS date: 2003/02/19 21:21:49
2003-02-19Fix video processing segmentation fault at exitEwald Snel
CVS patchset: 4201 CVS date: 2003/02/19 13:41:07
2003-02-17this should be wrong hereMichael Roitzsch
CVS patchset: 4185 CVS date: 2003/02/17 16:49:18
2003-02-14fix u/v orderingGuenter Bartsch
CVS patchset: 4154 CVS date: 2003/02/14 14:48:08
2003-02-13FreeBSD compile fixesHeiko Schaefer
CVS patchset: 4146 CVS date: 2003/02/13 19:04:52
2003-02-05enix requires frames to be allocated in one memory chunk, fix commentGuenter Bartsch
CVS patchset: 4109 CVS date: 2003/02/05 23:30:23
2003-02-05- fix segfault with some OpenDivX streams (thanks Miguel for spotting myBastien Nocera
stupid mistakes) CVS patchset: 4108 CVS date: 2003/02/05 21:20:10
2003-02-03Fix default contrast and saturation settings for XShm driverEwald Snel
CVS patchset: 4101 CVS date: 2003/02/03 17:24:47
2003-02-03i guess i've finally made a breakthrought on completion event handling!Miguel Freitas
add fallback code to get the event directly from XLib in case the gui has not forwarded it yet. this may happen when gui is busy redrawing menus, for example. it should also improve xine robustness to scheduler issues. now we can have smooth playback even if xine-ui hasn't being scheduled in time. CVS patchset: 4098 CVS date: 2003/02/03 00:24:13
2003-02-02Code cleanupJames Stembridge
CVS patchset: 4094 CVS date: 2003/02/02 17:53:51
2003-02-02Don't use globals for MMX yuv2rgb conversion variables (not thread-safe)Ewald Snel
CVS patchset: 4092 CVS date: 2003/02/02 17:27:45
2003-02-02Add contrast support to MMX yuv2rgb conversion, fix 'cbu' clippingEwald Snel
CVS patchset: 4090 CVS date: 2003/02/02 14:09:21
2003-02-02Fix brightness, saturation control for MMX yuv2rgb using the XShm driverEwald Snel
TODO: don't use globals, fix contrast, fix non-MMX yuv2rgb CVS patchset: 4089 CVS date: 2003/02/02 13:38:24
2003-02-02Add support for brightness, saturation, contrast (not functional yet)Ewald Snel
CVS patchset: 4088 CVS date: 2003/02/02 12:44:03
2003-02-02Function replacedEwald Snel
CVS patchset: 4086 CVS date: 2003/02/02 11:33:36
2003-02-02Fix memory leak in XShm driverEwald Snel
CVS patchset: 4085 CVS date: 2003/02/02 11:21:34
2003-01-31Log/error messages updatedJames Stembridge
CVS patchset: 4071 CVS date: 2003/01/31 19:57:32
2003-01-31Revert parts of previous changes to frame copy functions such that only the ↵James Stembridge
necessary amount of data is memcpy'd CVS patchset: 4070 CVS date: 2003/01/31 19:38:28
2003-01-31Convert yv12 to yuy2 for vidix drivers that only support yuy2James Stembridge
CVS patchset: 4069 CVS date: 2003/01/31 19:20:25
2003-01-31Interleave u and v planes for display of yv12 on G200James Stembridge
CVS patchset: 4067 CVS date: 2003/01/31 17:59:57
2003-01-31Clean up yuy2 copy functionJames Stembridge
CVS patchset: 4065 CVS date: 2003/01/31 16:26:04
2003-01-31Damn - fix compile warningJames Stembridge
CVS patchset: 4064 CVS date: 2003/01/31 16:05:23
2003-01-31Remove unneeded printf'sJames Stembridge
CVS patchset: 4063 CVS date: 2003/01/31 16:00:26
2003-01-31Change few remaining printf's to match xine styleJames Stembridge
CVS patchset: 4062 CVS date: 2003/01/31 15:56:31
2003-01-31- MAX_PREVIEW_SIZE = 4096Miguel Freitas
- new fb driver with zero copy CVS patchset: 4058 CVS date: 2003/01/31 14:06:03
2003-01-31Don't load mga_crtc2_vid with G200James Stembridge
CVS patchset: 4056 CVS date: 2003/01/31 13:15:48
2003-01-31- Added debian into Makefile.am as a sub-directory rather than have theStephen Torri
makefile variable. - Cleaned up Makefile.am (wine, goom, libxinevdec) - Cleaned up compiler warnings (libfaad) - Cleaned up header includes (libfaad, libdha) CVS patchset: 4053 CVS date: 2003/01/31 01:20:24
2003-01-29adjust priorities to what we agreed on jun/2002.Miguel Freitas
it got lost homehow porting to new api. CVS patchset: 4039 CVS date: 2003/01/29 15:34:26
2003-01-29get rid of anyoing bug report when a user change his video card, and xv ↵Daniel Caujolle-Bert
property bounds are differents CVS patchset: 4038 CVS date: 2003/01/29 12:37:27
2003-01-29auto* fix: pass 1Daniel Caujolle-Bert
CVS patchset: 4036 CVS date: 2003/01/29 11:10:50
2003-01-25Fix bug introduced by previous commitEwald Snel
CVS patchset: 4006 CVS date: 2003/01/25 12:46:10
2003-01-24Fix yuv2rgb scaling, any destination size supported nowEwald Snel
This also allows for true bilinear filtering, which looks much better than the current 'horizontal filtering only' (TODO) CVS patchset: 4001 CVS date: 2003/01/24 17:04:37
2003-01-19trying to fix color errors and endianness problems in yuy2Miguel Freitas
CVS patchset: 3968 CVS date: 2003/01/19 17:19:36