Age | Commit message (Collapse) | Author |
|
|
|
written only when switching binaries for different platforms.
|
|
|
|
|
|
|
|
All the initialisation functions returning a new object instance that
was allocated through malloc() or calloc() can get the malloc
attribute so that the compiler can optimise their call.
|
|
Using asprintf() instead of malloc() + sprintf() reduces the lines of
code in xine-lib (moving the allocation to the C library or asprintf
replacement), makes it safer to access the string and can also improve
performance whenever the value returned by a function was used as
parameter, as before it had to run the function twice in almost every
case (once for strlen(), once for sprintf()).
|
|
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
|
|
|
|
--HG--
extra : transplant_source : %E0%D0%C5%8B%BEU%DD%24%5D7%1F%ADV%AD%EB%23%CBU%80%EB
|
|
For contributed code, leave whatever the version we last synced for is using
to make simpler future syncs.
|
|
|
|
Intent is to allow front ends to rename their old, badly-named, config items.
|
|
Two of the modified files are headers, but each contains definitions as well as
declarations and is only ever used once.
|
|
frontends (like Kaffeine). Thanks to Christoph Pfister for reporting. This change introduces a few warnings of incompatible pointers internally in configfile.c. These are non-fatal (in C) and they just tell the compiler to handle more stuff as const internally without changing the function interface.
CVS patchset: 8620
CVS date: 2007/02/22 15:49:16
|
|
compatibility wrong.
CVS patchset: 8606
CVS date: 2007/02/20 00:01:19
|
|
rather than char* array.
CVS patchset: 8605
CVS date: 2007/02/19 23:53:40
|
|
strings or names of files, device nodes or directories. This information is
available to front ends (via .num_value) so that they can present
file/dir-open dialogue boxes if they so choose.
Subtitle font selection is split up due to this.
CVS patchset: 8425
CVS date: 2006/12/19 19:10:50
|
|
and avoid deeply nested code.
Closes Coverity Scan CIDs 246 and 247.
CVS patchset: 8305
CVS date: 2006/09/26 21:51:11
|
|
CVS patchset: 8063
CVS date: 2006/06/20 00:35:07
|
|
Allow the backup of an empty configuration file to succeed.
CVS patchset: 7708
CVS date: 2005/08/21 17:01:02
|
|
reentrancy problems (as reported by Reinhard Nissl and Darren Salt)
- add a new recursive mutex support check to configure so we should fail
nicely if system doesn't provides it
(please test)
CVS patchset: 7670
CVS date: 2005/07/21 02:51:14
|
|
Locking problem with string config item callbacks which access config items.
CVS patchset: 7655
CVS date: 2005/07/17 23:05:09
|
|
Fixed config locking.
CVS patchset: 7389
CVS date: 2005/02/07 18:53:17
|
|
- duplicate all strings, needed to allow plugin unloading
- move duplicated code to functions
This should not change anything to the behavior of the config system.
CVS patchset: 7373
CVS date: 2005/01/30 16:51:20
|
|
Change separator from ", " to ",".
Make domain matching stricter - require that the character at the start of
the match or the immediately preceding character is a dot.
Add '=DOMAIN' (full match: domain "foo.bar" matches host "foo.bar" only).
Modify config option's description and help text accordingly.
CVS patchset: 7323
CVS date: 2005/01/05 00:37:29
|
|
reserves these names for use by the C implementation
CVS patchset: 7288
CVS date: 2004/12/20 21:22:18
|
|
CVS patchset: 7241
CVS date: 2004/12/13 11:11:27
|
|
remove the identical translations entirely for clarity
CVS patchset: 7240
CVS date: 2004/12/13 10:58:33
|
|
translate keys: instead, try lookup, translate, retry lookup. As was, this
would cause stack overflows (and was preventing my use of Xv).
Special-case the plugin priority translation in case of third-party decoder
plugins and corresponding config entries of the form "decoders.*_priority".
CVS patchset: 7235
CVS date: 2004/12/13 03:49:44
|
|
and backwards compatible translation
Sorry, I got a litte tired proof-reading the patch, so their might be
bugs lurking around. I will give it some further examination and
(as necessary) fixing tomorrow.
CVS patchset: 7233
CVS date: 2004/12/12 22:00:47
|
|
CVS patchset: 6968
CVS date: 2004/09/12 19:23:36
|
|
CVS patchset: 6837
CVS date: 2004/07/22 14:26:24
|
|
the users it is better if we structure by intuitive categories, not strictly
by plugins
CVS patchset: 6712
CVS date: 2004/06/19 19:54:59
|
|
strings
-> read and update them as strings
* remove the obsolete CONFIG_TYPE_* constants and replace them with
XINE_CONFIG_TYPE_* from xine.h
CVS patchset: 6496
CVS date: 2004/05/07 14:38:14
|
|
CVS patchset: 6276
CVS date: 2004/03/16 21:32:23
|
|
to be enabled by the user
CVS patchset: 6274
CVS date: 2004/03/16 20:50:08
|
|
before aborting
CVS patchset: 6211
CVS date: 2004/03/03 20:09:11
|
|
chars), backup fail (fgets/fputs), and value can't be saved, never. Move to fread/fwrite, single shot, backup function (need to reproduce ?: <http://xine.sf.net/daniel/config_failure>)
CVS patchset: 6051
CVS date: 2004/01/16 23:03:38
|
|
CVS patchset: 5879
CVS date: 2003/12/09 00:02:28
|
|
Replace XINE_ASSERT by _x_assert, which works exaclty as assert, except that it still warns with NDEBUG defined (but don't abort). Fix missuning of assert(0), which isn't safe, abort is abort, assert is for debugging purpose only, so all assert(0) has been converted to abort() alls. In osd_preload_fonts(): alloc needed memory chunk. Define NDEBUG in CFLAGS, for non DEBUG build only.
CVS patchset: 5860
CVS date: 2003/12/07 15:34:29
|
|
relevant too. Small other little fix (can't remember). Change few internal function prototype because it xine_t pointer need to be used if some xine's internal sections. NOTE: libdvd{nav,read} is still too noisy, i will take a look to made it quit, without invasive changes. To be continued...
CVS patchset: 5844
CVS date: 2003/12/05 15:54:56
|
|
CVS patchset: 5796
CVS date: 2003/11/26 19:43:26
|
|
BIG NOTE: use helpers to access to these informations (get/set/reset):
_x_{stream,meta}_info_{get,set,reset}()
are for internal use, don't use *_public() ones from inside the beast ;-)
Some wrongly names "xine_" fonction renaming.
CVS patchset: 5757
CVS date: 2003/11/16 23:33:42
|
|
CVS patchset: 5721
CVS date: 2003/11/11 18:44:50
|
|
values set to their default are commented out
CVS patchset: 5677
CVS date: 2003/11/02 16:59:18
|
|
* sorting hierarchy changed:
- sort by section name
- sort by plugin name (not used yet)
- sort by experience level (this step is new)
- sort by config entry name
* use strdup instead of its private reimplementation
* use locking more consistently (up to now, entry lookups were unlocked,
which can be dangerous if someone else is in the middle of adding a new entry)
CVS patchset: 5604
CVS date: 2003/10/26 11:38:50
|
|
CVS patchset: 5566
CVS date: 2003/10/21 22:10:34
|
|
onle directory.
Note, this is patch only for xine-engine. It doesn't cover cfg:// MRLs used by xine-ui.
CVS patchset: 5558
CVS date: 2003/10/20 08:36:56
|
|
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
|