summaryrefslogtreecommitdiff
path: root/src/xine-engine/input_cache.c
AgeCommit message (Collapse)Author
2009-11-30Trim trailing space & reduce space+tab.Darren Salt
2008-05-09Remove a new bunch of xine_malloc() calls.Diego 'Flameeyes' Pettenò
Also don't reset memory after it's allocated if we do that with calloc.
2008-05-07xine_xmalloc() deprecation: replace its use with static and non-zero size.Diego 'Flameeyes' Pettenò
The xine_xmalloc() function is going to be deprecated, as its behaviour is rarely needed as such, and it's thus misused. With this, almost all uses of xine_xmalloc() with static size (for instance the value returned by sizeof()) or with a size that is guaranteed not to be zero (like strlen()+1) are replaced with calls to either calloc(1, ...) or malloc(). malloc() is used whenever the allocated memory is going to be immediately overwritten, while calloc() is used in every other case, as it sets the whole memory area to zero. --HG-- extra : transplant_source : %8F%98%EC%02%1E%83%F0s%06X%83C%205Y%80%B12%CC%E1
2007-11-23Merge.Darren Salt
2007-11-15assert that not more than the buffersize is readMatthias Kretz
2007-11-10Delete most of the CVS $Id$/$Log$ lines.Darren Salt
--HG-- extra : transplant_source : %E0%D0%C5%8B%BEU%DD%24%5D7%1F%ADV%AD%EB%23%CBU%80%EB
2007-11-09Update FSF address on non-contributed code and COPYING files.Diego 'Flameeyes' Pettenò
For contributed code, leave whatever the version we last synced for is using to make simpler future syncs.
2007-04-18Limit common-case buffer copying optimisation to i386 & amd64.Darren Salt
This fixes reported alignment issues on ARM. (We could require correct alignment on some architectures, but this is easier.)
2007-02-20Fix a lot of format warnings in lprintf calls (mostly %ldd -> %"PRId64").Diego 'Flameeyes' Pettenò
CVS patchset: 8608 CVS date: 2007/02/20 00:34:55
2007-01-19Make get_mrl return a const char * too.Diego 'Flameeyes' Pettenò
CVS patchset: 8524 CVS date: 2007/01/19 01:05:24
2006-09-08Try to match input plugin block size.Thibaut Mattern
See bugreport [ 1551996 ]. CVS patchset: 8204 CVS date: 2006/09/08 06:20:37
2006-06-20Fix generic warnings.Diego 'Flameeyes' Pettenò
CVS patchset: 8063 CVS date: 2006/06/20 00:35:07
2006-05-22Fixed unaligned access on IA64 (Andreas Schwab).Matthias Hopf
CVS patchset: 7994 CVS date: 2006/05/22 17:00:40
2005-11-28*BUGFIX*František Dvořák
Improved cross-compiling: detect and precedence of the host-specific libs W32dll: enabled by platforms as originaly, user can override it Fixed shell errors in the Makefile of the hackersguide Detect the place of SDL header independently on platform Fixed spelling in CDDA, include the header sys/param.h if available Fixed format strings (fix warnings (or even bugs) on Gentoo/FreeBSD) CVS patchset: 7815 CVS date: 2005/11/28 12:24:56
2005-10-14input plugin time seeking patch.Miguel Freitas
hopefuly somebody will be able to help fixing the mess i did in dvdnav ;) CVS patchset: 7759 CVS date: 2005/10/14 21:02:16
2005-05-22**BUGFIX**James Stembridge
Sparc can't do unaligned access CVS patchset: 7558 CVS date: 2005/05/22 19:50:05
2005-02-09Finally commit the plugin loader improvements.Thibaut Mattern
see my last mail about this stuff: http://thread.gmane.org/gmane.comp.video.xine.devel/12547 and this thread: http://thread.gmane.org/gmane.comp.video.xine.devel/11213 CVS patchset: 7395 CVS date: 2005/02/09 20:03:18
2004-12-13make sure position doesn't get < 0Miguel Freitas
CVS patchset: 7245 CVS date: 2004/12/13 18:19:48
2004-11-16do never cache input position.Miguel Freitas
assuming the position is well behaved breaks several plugins since it may change either due navigation (dvd) or streaming (mms). fixes #1066926 CVS patchset: 7127 CVS date: 2004/11/16 21:16:43
2004-10-31last fixes...Miguel Freitas
CVS patchset: 7098 CVS date: 2004/10/31 22:29:04
2004-10-30fix time/position displaying for dvdsMiguel Freitas
CVS patchset: 7090 CVS date: 2004/10/30 13:34:33
2004-10-27Thibaut's request optimizer input layerMiguel Freitas
CVS patchset: 7077 CVS date: 2004/10/27 13:09:07