summaryrefslogtreecommitdiff
path: root/src/xine-engine
AgeCommit message (Collapse)Author
2003-07-31introduce config file versioningMichael Roitzsch
A new entry in the config file ".version:" stores the current version of the config file. The '.' at the beginning of ".version" shows that this is a somewhat hidden (read: internal) entry and it makes the line easy to spot and prevents clashes with regular config entries. The first use of this is to reset all decoder priorities to 0 (= use default) so that we hopefully won't have problems like the qtv decoder clash any more. CVS patchset: 5226 CVS date: 2003/07/31 11:59:10
2003-07-27priority reset mechanismSiggi Langauf
CVS patchset: 5224 CVS date: 2003/07/27 23:39:02
2003-07-27- removed xine-engine/locale.c as it is unused, fix static functions in theBastien Nocera
engine and the utils, removed unused variables CVS patchset: 5219 CVS date: 2003/07/27 12:47:23
2003-07-27- remove unused functions, fixes warnings at compile-timeBastien Nocera
CVS patchset: 5218 CVS date: 2003/07/27 12:25:04
2003-07-26Stop asserts happening on underruns.James Courtier-Dutton
Delay support for USB hotplug until linux kernel supports it better. CVS patchset: 5213 CVS date: 2003/07/26 00:27:20
2003-07-25small housekeeping: demuxer api seeks in milisecondsMiguel Freitas
CVS patchset: 5211 CVS date: 2003/07/25 21:02:04
2003-07-22allow all values greater 0 as success returnsMichael Roitzsch
CVS patchset: 5206 CVS date: 2003/07/22 09:36:03
2003-07-20OSS never return 1, but write() length.Daniel Caujolle-Bert
CVS patchset: 5201 CVS date: 2003/07/20 19:28:14
2003-07-20More USB soundcard updates.James Courtier-Dutton
CVS patchset: 5199 CVS date: 2003/07/20 12:29:18
2003-07-20Improve playback on USB sound cards.James Courtier-Dutton
These changes improve xine's response to the removal of a USB cable while playing audio. Further changes will need to happen so as to allow sound output to continue when the USB cable is plugged back in, without having to stop the media stream. To enable that, when xine detects that the sound card is not there any more, it will have to close both pcm and mixer, so that the kernel can release USB resources, then when the USB cable is plugged back in, the pcm and mixer are opened again. This code might also modify what xine does in underrun situations, so this code might need to be changed again. CVS patchset: 5196 CVS date: 2003/07/20 10:34:29
2003-07-16more cleanup; remove unused variables; use lprintfMarco Zuehlke
CVS patchset: 5168 CVS date: 2003/07/16 14:14:17
2003-07-13set pos/time information on video frames as wellGuenter Bartsch
CVS patchset: 5161 CVS date: 2003/07/13 15:27:34
2003-07-12reports the number of skipped/discarded framesMiguel Freitas
http://sourceforge.net/mailarchive/forum.php?thread_id=2753813&forum_id=7131 CVS patchset: 5155 CVS date: 2003/07/12 20:31:49
2003-07-12trying to fix make distMiguel Freitas
CVS patchset: 5154 CVS date: 2003/07/12 19:43:31
2003-07-12- adding support for the Intel compiler iccMichael Roitzsch
- general multipass compilation make targets CVS patchset: 5149 CVS date: 2003/07/12 12:31:13
2003-07-10when two concurrent threads want to create the same config entry, bothMichael Roitzsch
might run the lookup simultaneously and so both might find the entry missing; as a result, the entry might be created twice afterwards -> fixed by moving the mutex to protect the lookup as well CVS patchset: 5139 CVS date: 2003/07/10 14:14:40
2003-07-02Metronom does the pts prediction now, not the decoders.James Courtier-Dutton
CVS patchset: 5123 CVS date: 2003/07/02 23:10:21
2003-06-27these functions actually have (void) parameters, not (), which is equal to (...)Michael Roitzsch
CVS patchset: 5105 CVS date: 2003/06/27 13:40:51
2003-06-22some additional pthread_*_destroy() callsMichael Roitzsch
(based on the implementation, this might fix memleaks on some platforms, although I doubt that this is the case here) CVS patchset: 5091 CVS date: 2003/06/22 17:10:41
2003-06-20the new logging macros, for details see README.loggingMarco Zuehlke
CVS patchset: 5077 CVS date: 2003/06/20 20:57:28
2003-06-18Use the same discard mecanism for audio and video in xine_demux_flush_engine.Thibaut Mattern
CVS patchset: 5061 CVS date: 2003/06/18 07:05:12
2003-06-17Protect this->discard_buffers and this->flush_audio_driver with a mutex.Thibaut Mattern
Replace the "while usleep" loop by a pthread_cond_t. CVS patchset: 5058 CVS date: 2003/06/17 18:53:14
2003-06-16Patch from Jeroen Asselman:Stefan Holst
- fixes mimetype in realaudio demuxer - big improvement of v4l input and associated demuxer. Including sound capture using alsa and a/v sync. Now radio is supported as well. CVS patchset: 5054 CVS date: 2003/06/16 16:42:51
2003-06-13defaultMiguel Freitas
CVS patchset: 5034 CVS date: 2003/06/13 01:50:45
2003-06-11- add VO_INTERLACED_FLAG to get_frameMiguel Freitas
- do not trust progressive_frame for detecting NTSC 3:2, quote: 'the alternating progressive_frame encoding problem. This is a problem where the progressive_frame flag alternates between true and false every frame, when it really should have been set to "true" all the time.' 'There is a lot of content that is affected by this issue, because it's caused by a dumb decision by a very big company that made a very popular MPEG encoder. They've since fixed the encoder, but there are apparently still authoring companies that use it, because the problem is on a lot of high-profile current discs, like Disney's "Monsters Inc." and "Beauty and the Beast".' http://www.hometheaterhifi.com/volume_8_2/dvd-benchmark-special-report-chroma-bug-4-2001.html CVS patchset: 5025 CVS date: 2003/06/11 23:08:54
2003-06-11Fix io_helper for Win32. The http plugin now works again for Win32Tim Champagne
CVS patchset: 5024 CVS date: 2003/06/11 00:51:23
2003-06-06initial ideas for automatic enabling/disabling deinterlacerMiguel Freitas
fixes, comments, suggestions are welcome CVS patchset: 5011 CVS date: 2003/06/06 19:42:04
2003-06-05Compile io_helper.Thibaut Mattern
CVS patchset: 5006 CVS date: 2003/06/05 19:11:13
2003-06-05io_helper functions.Thibaut Mattern
see http://article.gmane.org/gmane.comp.video.xine.devel/4178 CVS patchset: 5005 CVS date: 2003/06/05 19:08:06
2003-06-03progressive_frame flag may be used to select how to convert yv12->yuy2Miguel Freitas
CVS patchset: 5003 CVS date: 2003/06/03 03:33:15
2003-06-02patch by Tim to kill the #ifdefs, replacing them with more portableMichael Roitzsch
PRI64d define from inttypes.h (looks like C99 requires these defines) CVS patchset: 5001 CVS date: 2003/06/02 16:52:20
2003-05-31update video out api to allow better frame management (explicit locking)Miguel Freitas
img->displayed is obsolete now, drivers should use img->free. CVS patchset: 4994 CVS date: 2003/05/31 18:33:28
2003-05-31do not probe audio_none_outMiguel Freitas
CVS patchset: 4992 CVS date: 2003/05/31 13:33:10
2003-05-31added placeholder fourccs for On2 VPx videoMike Melanson
CVS patchset: 4990 CVS date: 2003/05/31 02:18:01
2003-05-28buffer type and fourcc's for raw i420 videoJames Stembridge
CVS patchset: 4973 CVS date: 2003/05/28 13:11:53
2003-05-28fix macroMiguel Freitas
CVS patchset: 4970 CVS date: 2003/05/28 12:20:16
2003-05-28adding parameters apiMiguel Freitas
CVS patchset: 4966 CVS date: 2003/05/28 04:26:02
2003-05-26untested cygwin patchMiguel Freitas
CVS patchset: 4958 CVS date: 2003/05/26 23:34:41
2003-05-26added experimental .4xm file demuxerMike Melanson
CVS patchset: 4950 CVS date: 2003/05/26 21:06:00
2003-05-25audio_step is a 64 bits integer in the metronom (pts_per_smpls), use the ↵Thibaut Mattern
same type here. CVS patchset: 4939 CVS date: 2003/05/25 21:34:59
2003-05-25speex support contributed by Conrad Parker <conrad@metadecks.org>Guenter Bartsch
CVS patchset: 4926 CVS date: 2003/05/25 13:39:13
2003-05-24Remove pointless if statementJames Stembridge
CVS patchset: 4918 CVS date: 2003/05/24 10:53:47
2003-05-24Revert previous commit that added checks for the driver being open before ↵James Stembridge
writing silence to the driver CVS patchset: 4917 CVS date: 2003/05/24 10:49:06
2003-05-24Wait for audio out loop to be blocked on empty fifo before closing driver ↵James Stembridge
rather than just waiting for fifo to be empty CVS patchset: 4916 CVS date: 2003/05/24 10:35:48
2003-05-20This fixes http support for Win32Tim Champagne
CVS patchset: 4891 CVS date: 2003/05/20 20:40:29
2003-05-20that's english nowMichael Roitzsch
CVS patchset: 4888 CVS date: 2003/05/20 14:55:55
2003-05-20a decoder priority of 0 enables the decoder's default priorityMichael Roitzsch
everyone is advised to use priority 0 from now on CVS patchset: 4886 CVS date: 2003/05/20 14:50:47
2003-05-20no double inclusionMichael Roitzsch
CVS patchset: 4884 CVS date: 2003/05/20 13:58:10
2003-05-20public header cleanup:Michael Roitzsch
* regulate mutual inclusion based on XINE_COMPILE * src/xine-engine/spu_decoder.h was unused -> make it the spu decoder API header and remove src/libspudec/spu_decoder_api.h * mark some xine_stream_t members as unused for next cleanup CVS patchset: 4883 CVS date: 2003/05/20 13:50:55
2003-05-19new MP3 fourccMike Melanson
CVS patchset: 4877 CVS date: 2003/05/19 21:49:57