summaryrefslogtreecommitdiff
path: root/src/xine-engine
AgeCommit message (Collapse)Author
2002-10-14introduction of xine_stream_t and async xine events - all still in developementGuenter Bartsch
CVS patchset: 2828 CVS date: 2002/10/14 15:46:48
2002-10-12Discard buffered audio driver data after the demuxer is stopped & closed.Juergen Keil
CVS patchset: 2820 CVS date: 2002/10/12 19:22:05
2002-10-12Bind the audio_out thread to a separate LWP on solaris 8 (like video_out,Juergen Keil
video_decoder and audio_decoder) CVS patchset: 2819 CVS date: 2002/10/12 19:20:02
2002-10-12added GSM 6.10 audio decoderMike Melanson
CVS patchset: 2818 CVS date: 2002/10/12 19:18:48
2002-10-12Make flush of audio work properly.James Courtier-Dutton
CVS patchset: 2813 CVS date: 2002/10/12 10:36:50
2002-10-10Audio out reorganisation to improve sync.James Courtier-Dutton
Tested with alsa09 and oss. CVS patchset: 2807 CVS date: 2002/10/10 13:12:17
2002-10-09configure.ac:Stephen Torri
- OpenGL header GL/gl.h is checked to see if its exists with wrong header name (GL/GL.h). Test failed despite the file required by src/video_out/video_out_opengl.c was GL/gl.h - Ascii-Art library version incorrect. Required version is 1.4 (contains aalib-config) m4/aa.m4: - Changed aalib version to 1.4 src/audio_out/Makefile.am: src/demuxers/Makefile.am: src/dxr3/Makefile.am: src/input/Makefile.am: src/input/libdvdnav/Makefile.am: src/input/libdvdread/Makefile.am: src/libffmpeg/libavcodec/Makefile.am: src/libffmpeg/libavcodec/i386/Makefile.am: src/libffmpeg/libavcodec/mlib/Makefile.am: src/libmad/Makefile.am: src/libmpeg2/Makefile.am: src/libvorbis/Makefile.am: src/libw32dll/Makefile.am: src/libw32dll/wine/Makefile.am: src/libxineadec/Makefile.am: src/libxvid/Makefile.am: src/video_out/Makefile.am: src/video_out/libdha/Makefile.am: src/video_out/vidix/Makefile.am: src/xine-engine/Makefile.am: src/xine-utils/Makefile.am: - Removed @CFLAGS@ from all AM_CFLAGS. @CFLAGS@ are added in Makefile.in. Adding it here was redundant. Thanks to Mike and others for pointing this out. CVS patchset: 2805 CVS date: 2002/10/09 05:13:38
2002-10-06Workaround for code generation bug in gcc on SPARC. Mike's endian macros now ↵Robin KAY
moved to bswap.h CVS patchset: 2794 CVS date: 2002/10/06 03:48:13
2002-10-04added support for raw YV12 dataMike Melanson
CVS patchset: 2780 CVS date: 2002/10/04 04:55:43
2002-10-04support for more Quicktime audio fourccsMike Melanson
CVS patchset: 2778 CVS date: 2002/10/04 02:27:00
2002-10-03Slightly reorganize xine_exit, so that "xine --help" does not segfault any more.Juergen Keil
xine --help is using xine_exit() on a structure that has not been xine_init'ed. CVS patchset: 2776 CVS date: 2002/10/03 17:46:29
2002-09-30Fixes and performance improvements to the alphablend.c code.James Courtier-Dutton
The fixes involved getting blend_rgb16 to correctly handle different colours in the highlight area and general overlay area. Another fix involved fixing the overlay scaling function so that it scales in the same proportion as the yuv2rgb code. Currently, blend_yuv has not been updated. blend_rgb16 has been improved. blend_rgb24 and blend_rgb32 have not been changed and will probably not work now. The performance improvements are due to two things: - 1) Special detection of overlays without any buttons/clip areas. This is detected by ensuring overl->clip_top = -1 when no button is present. 2) Reorganise the blending code so that for each time round the loop, the fewest possible IF statements are executed. So, for overlays without any buttons, not checks for the clip area is done. For overlay with buttons, state is kept as to whether we are above, to the left, inside or to the right or below the clip area, thus saving having to do IF statements each time round the loop to find out where we are. CVS patchset: 2762 CVS date: 2002/09/30 05:16:45
2002-09-29make xine less hysterical when it encounters this corner caseMike Melanson
CVS patchset: 2759 CVS date: 2002/09/29 01:01:58
2002-09-22API review part IMichael Roitzsch
- bring our beloved xine_t * back (no more const there) - remove const on some input plugin functions where the data changes with media (dvd, ...) changes and is therefore not const CVS patchset: 2740 CVS date: 2002/09/22 14:29:40
2002-09-21Rename xine_(load/save/reset)_config to xine_config_(load/save/reset).Daniel Caujolle-Bert
CVS patchset: 2728 CVS date: 2002/09/21 12:20:47
2002-09-21Add forgotten xine_get_string_version() to public header.Daniel Caujolle-Bert
CVS patchset: 2727 CVS date: 2002/09/21 11:58:40
2002-09-21Avoid segfault if get_first_entry wasn't called first.Daniel Caujolle-Bert
CVS patchset: 2726 CVS date: 2002/09/21 11:39:45
2002-09-20Fix compilation bug when building external video output plugin.Daniel Caujolle-Bert
CVS patchset: 2724 CVS date: 2002/09/20 22:34:26
2002-09-20first attempt to solve skin problemMichael Roitzsch
CVS patchset: 2723 CVS date: 2002/09/20 15:53:24
2002-09-19small fix to link libxineutils statically, not dynamically to libxineGuenter Bartsch
CVS patchset: 2709 CVS date: 2002/09/19 15:25:51
2002-09-19forgot to reset counterMichael Roitzsch
CVS patchset: 2706 CVS date: 2002/09/19 11:16:59
2002-09-19Updated cvscompile.sh to look for configure.acStephen Torri
Replaced configure.in with configure.ac Remove acconfig.h (Unnecessary with autoconf 2.52 or above) Updated configure.ac to remove deprecated macros, upgraded AC_DEFINE to include comments, merged in acconfig.h. Combined libxine and libxineutils into one library. libxineutils is created but not installed. Its statically linked into libxine. Advanced libxine version from 0.2.0 to 1.0.0 Removed references for skins. Plugins now installed to <libdir>/xine/plugins/$XINE_MAJOR.$XINE_MORE. $XINE_SUB Xine-config updated for new location of plugins Sorted file lists in Makefile.am to make them more readable. TODO: remove skins references from xine-config CVS patchset: 2705 CVS date: 2002/09/19 06:01:18
2002-09-19C is funGuenter Bartsch
CVS patchset: 2701 CVS date: 2002/09/19 01:59:50
2002-09-19user-configurable decoder prioritiesGuenter Bartsch
CVS patchset: 2700 CVS date: 2002/09/19 00:53:43
2002-09-19remove the need to memset ui-provided cfg entry, remember audio/video driver ↵Guenter Bartsch
after probing CVS patchset: 2699 CVS date: 2002/09/19 00:40:02
2002-09-19whoups - one semicolon too muchGuenter Bartsch
CVS patchset: 2697 CVS date: 2002/09/19 00:21:44
2002-09-18make new plugin loader check api versions, fix api versions for adapted ↵Guenter Bartsch
demux plugins, remove dvd plugin from build while it doesn't compile CVS patchset: 2696 CVS date: 2002/09/18 22:12:16
2002-09-18should not happen any moreMichael Roitzsch
CVS patchset: 2690 CVS date: 2002/09/18 15:37:43
2002-09-18fix reentrant in event listeners by only allowing one event per typeMichael Roitzsch
CVS patchset: 2689 CVS date: 2002/09/18 15:37:11
2002-09-18serialize config accessMichael Roitzsch
CVS patchset: 2688 CVS date: 2002/09/18 14:31:39
2002-09-18do not hand out unclaimed config entriesGuenter Bartsch
CVS patchset: 2687 CVS date: 2002/09/18 12:12:35
2002-09-18Try to get xine-lib to compile.James Courtier-Dutton
CVS patchset: 2682 CVS date: 2002/09/18 06:42:23
2002-09-18Updating the DVD menu code to use better nav_pci information.James Courtier-Dutton
libspudec parses nav_pci info correctly. libdvdnav does not parse nav_pci info at all. CVS patchset: 2681 CVS date: 2002/09/18 04:20:09
2002-09-18first steps towards implementing stream/meta infoGuenter Bartsch
CVS patchset: 2680 CVS date: 2002/09/18 00:51:33
2002-09-17be a bit more tolerantMichael Roitzsch
CVS patchset: 2678 CVS date: 2002/09/17 10:32:45
2002-09-16- sync ffmpeg to cvs (sorry Mike it still doesn't decode your teststream --Miguel Freitas
something must be broken at ffmpeg, also happens with mplayer) - added priority sorted lists, now autoprobing should work again. - fixed infinite loop in plugin loader. obs: latest ffmpeg contains ppc optimizations, someone will have to enable these though. CVS patchset: 2676 CVS date: 2002/09/16 21:49:34
2002-09-16Introduce a deep copy in the xine_config_lookup functions.James Courtier-Dutton
Care must be taken to make sure xine_cfg_entry_t is all zeros before any calls to xine_config_lookup functions. CVS patchset: 2673 CVS date: 2002/09/16 15:09:36
2002-09-16don't distortMichael Roitzsch
CVS patchset: 2672 CVS date: 2002/09/16 13:17:49
2002-09-15More mem leak patches from ewald@rambo.its.tudelft.nlJames Courtier-Dutton
CVS patchset: 2667 CVS date: 2002/09/15 12:28:16
2002-09-15Memory leak fixes, using a slightly modified version of the patch fromJames Courtier-Dutton
ewald@rambo.its.tudelft.nl CVS patchset: 2666 CVS date: 2002/09/15 11:35:08
2002-09-14obsulete public_entry removedGuenter Bartsch
CVS patchset: 2665 CVS date: 2002/09/14 20:11:52
2002-09-14latest xine_config api changes as proposed by jamesGuenter Bartsch
CVS patchset: 2664 CVS date: 2002/09/14 19:04:07
2002-09-13duplicating behaviour of XShm fixes the bug James discoveredMichael Roitzsch
(some values in vo_scale being 0) CVS patchset: 2661 CVS date: 2002/09/13 19:57:13
2002-09-13introducing meta information and some audio controls - but nothing is really ↵Guenter Bartsch
implemented yet, so please move on, nothing to see here... CVS patchset: 2660 CVS date: 2002/09/13 18:25:22
2002-09-11- more programming guidelines in public xine headerGuenter Bartsch
- make most char pointers const in public api - simpler get_spu_lang / get_audio_lang signature CVS patchset: 2651 CVS date: 2002/09/11 17:41:07
2002-09-10- don't return failure on successMichael Roitzsch
- xine-ui now calls xine_get_pos_length with NULL pointers (the cvslog missed that again) CVS patchset: 2646 CVS date: 2002/09/10 14:07:21
2002-09-10Fix a segfault in XV output.James Courtier-Dutton
redraw is being called too early. CVS patchset: 2645 CVS date: 2002/09/10 14:06:33
2002-09-10missing header filesGuenter Bartsch
CVS patchset: 2643 CVS date: 2002/09/10 10:50:30
2002-09-10remove untrue warningMichael Roitzsch
CVS patchset: 2642 CVS date: 2002/09/10 10:40:22
2002-09-09when reading in the config file the logo callback can be called beforeuid86226
metronom is initialized CVS patchset: 2640 CVS date: 2002/09/09 20:43:20