summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2007-12-13Use ID3V2X_TAG and _MASK to identify ID3 signature.Diego 'Flameeyes' Pettenò
--HG-- extra : transplant_source : %88B%C1%C9%26%D9%8E%90%D6jW%E3%B0%F7%04%8E%AE%06h%9A
2007-12-13Define a generic ID3v2.x tag and a mask to identify it.Diego 'Flameeyes' Pettenò
--HG-- extra : transplant_source : %D77%80J%C1%FA%E6%1F%2A%84%15%D6%DA%10%B1%5D%1E1%F0%91
2007-12-13Remove FOURCC_TAG and replace with explicit BE_FOURCC.Diego 'Flameeyes' Pettenò
--HG-- extra : transplant_source : %8D%A1%26%2A%C6%8D%F0zA%FE%7BBKk2%F7%5D%B1%9B2
2007-12-13Replace the mp3_frame_header paramter (pointer to bytes) with a 32 bit ↵Diego 'Flameeyes' Pettenò
integer id3_signature. --HG-- extra : transplant_source : %9D%80%60W%B8%5E%13%F9%F1%1F%B6%3F%CE%98%F5B%16A%ACd
2007-12-13Eliminate a few conversions to upper case; use strcasestr.Darren Salt
2007-12-13Replace four-bytes comparison with a ME_FOURCC comparison.Diego 'Flameeyes' Pettenò
2007-12-13Use strcasestr rather than converting the mimetypes variables to lowercase.Diego 'Flameeyes' Pettenò
2007-12-13Fix vidix Makefile.in generation (broken in the preceding commit).Darren Salt
-module is needed to avoid "not a standard libtool library name" errors.
2007-12-13Fix vidix compilation.Darren Salt
2007-12-13Fix Quicktime (w32dll) decoder compilation.Darren Salt
2007-12-12Merge with 1.2-plugins-changes.Diego 'Flameeyes' Pettenò
2007-12-12Remove xine_[av]o_driver_t typedefs (deprecated).Diego 'Flameeyes' Pettenò
2007-12-12Remove str_sticky attribute from xine_cfg_entry_s; ABI changes from here on ↵Diego 'Flameeyes' Pettenò
again.
2007-12-12Remove xine_gui_send_vo_data (deprecated).Diego 'Flameeyes' Pettenò
2007-12-12Remove tvmode functions, deprecated for a while now.Diego 'Flameeyes' Pettenò
2007-12-12Fix LDFLAGS test so that -Wl,-z,defs is found correctly again.Diego 'Flameeyes' Pettenò
2007-12-11Provide some change log for the branch.Diego 'Flameeyes' Pettenò
2007-12-11Don't export _x_demux_check_extension, now that plugins don't need it anymore.Diego 'Flameeyes' Pettenò
2007-12-11Fail when using BY_CONTENT detection, missing autodetection.Diego 'Flameeyes' Pettenò
2007-12-11Allow the TS demuxer to accept dvb streams; fix BY_MRL detection for slave.Diego 'Flameeyes' Pettenò
2007-12-11Check if a dot was found before dereferencing the pointer.Diego 'Flameeyes' Pettenò
2007-12-11Fail opening the device while using BY_CONTENT detection method, only allow ↵Diego 'Flameeyes' Pettenò
BY_MRL and EXPLITIC. Also report cdda:/ as extension so that the global BY_MRL check will check for that.
2007-12-11Make _x_demux_check_extension check for protocol prefixes too if :/ is in ↵Diego 'Flameeyes' Pettenò
the string.
2007-12-11Rename METHOD_BY_EXTENSION to METHOD_BY_MRL, as it's used to identify ↵Diego 'Flameeyes' Pettenò
protocols too.
2007-12-11Remove redundant METHOD_BY_EXTENSION checks now that libxine takes care of them.Diego 'Flameeyes' Pettenò
2007-12-11Let _x_demux_check_extension() consider empty extensions string as an ↵Diego 'Flameeyes' Pettenò
always-pass.
2007-12-11Remove stray variable.Diego 'Flameeyes' Pettenò
2007-12-11Check if the extension is compatible with the plugin before trying to open it.Diego 'Flameeyes' Pettenò
2007-12-11Update the plugins loader to use the new extensions and mimetypes attributes.Diego 'Flameeyes' Pettenò
2007-12-11Transform get_extensions and get_mimetypes into strings.Diego 'Flameeyes' Pettenò
Please note that this commit temporarily breaks building.
2007-12-11Bump the interface version of the VCD plugin (which got missed earlier).Darren Salt
2007-12-11Bump the interface version for video decoder plugins.Diego 'Flameeyes' Pettenò
2007-12-11Bump the interface version for audio decoder plugins.Diego 'Flameeyes' Pettenò
2007-12-11Bump the interface version for demuxer plugins.Diego 'Flameeyes' Pettenò
2007-12-11Bump the interface version for video output plugins.Diego 'Flameeyes' Pettenò
2007-12-11Bump the interface version for audio output plugins.Diego 'Flameeyes' Pettenò
2007-12-11Bump the interface version for SPU decoders.Diego 'Flameeyes' Pettenò
2007-12-11Bump the input plugins interface version to 18 as they got updated.Diego 'Flameeyes' Pettenò
2007-12-11Merge from 1.2 main branch.Diego 'Flameeyes' Pettenò
2007-12-11Fix thinko.Diego 'Flameeyes' Pettenò
2007-12-11Mark wc3_pal_lookup static.Diego 'Flameeyes' Pettenò
2007-12-11Don't use the if(foo) free(foo); construct, as free(NULL); is well defined.Diego 'Flameeyes' Pettenò
2007-12-11Mark empty_spu static const.Diego 'Flameeyes' Pettenò
2007-12-11Don't use two C files to build the two versions of directfb. Just add ↵Diego 'Flameeyes' Pettenò
-DDIRECTFB_X11 to CFLAGS.
2007-12-11Add a default_demux_plugin_dispose macro, and use it when the plugin dispose ↵Diego 'Flameeyes' Pettenò
macro just calls free().
2007-12-11Use default_*_class_dispose macro whenever the class dispose function only ↵Diego 'Flameeyes' Pettenò
called free().
2007-12-11Define free() as the default dispose function for plugin classes.Diego 'Flameeyes' Pettenò
Most plugin classes in xine define a dispose function simply to call free(), but free() is ABI-compatible with our dispose functions, so add a macro that allows to pass free() directly as dispose function. It's an opt-in so that no extra conditional is needed, and plugin authors won't forget about providing a dispose function (if they need to).
2007-12-11Use N_() rather than _(), passing the string just once to gettext().Diego 'Flameeyes' Pettenò
This way the gettext code for description does not need to be repeated by every plugin.
2007-12-11Use dgettext to localise the description string for plugins.Diego 'Flameeyes' Pettenò
2007-12-11Add a textdomain field to allow using a different i18n catalog for the ↵Diego 'Flameeyes' Pettenò
description translation.