summaryrefslogtreecommitdiff
path: root/src/libw32dll/qt_decoder.c
AgeCommit message (Collapse)Author
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-08-15Workaround for recent glibc & -D_FORTIFY_SOURCE=2 (defines open() as a macro).Darren Salt
According to bug 1773769, this breaks foo->open(). The fix (as used in Ville Skyttä's patch, which doesn't cover all cases) is to replace this with (foo->open)(). This patch was generated using sed -i -re 's/(([[:alnum:]_]+(->|\.))+open) ?\(/(\1) (/' `grep '[>.]open \?(' include -rIl` One change (in a comment) is not committed.
2007-06-16Rename the BE/LE/ME macros with a _X_ prefix, so they don't clash with ↵Diego 'Flameeyes' Pettenò
Solaris definitions.
2006-07-10Implement visibility support, available on GCC 4.0 and later and on some 3.4 ↵Diego 'Flameeyes' Pettenò
(through backports), to avoid exporting unneeded internal symbols, making plugins' loading faster and use of internal copies of libraries more solid. It should automatically fall back to the old way in GCCs that does not support -fvisibility=hidden, but has to be tested carefully. No issues were found in the months of testing in Gentoo, but this requires special attention anyway. CVS patchset: 8101 CVS date: 2006/07/10 22:08:12
2006-06-11Re-commit lost change: Fix the freeze on QuickTime files when configured ↵František Dvořák
with non-existing win32 codecs path. win32.c have known nothing about all paths tested in module.c. CVS patchset: 8033 CVS date: 2006/06/11 15:09:47
2006-06-02Various static/const fixes from Gentoo.Darren Salt
CVS patchset: 8009 CVS date: 2006/06/02 22:18:56
2006-05-07Setup FS segment to make win32 gods happy with the smiley red deamon.František Dvořák
(fixed multithread audio and video playback on FreeBSD with different LDTs) One coverity fix. CVS patchset: 7988 CVS date: 2006/05/07 09:31:57
2006-05-03Make various arrays and structures (mainly xine_plugin_info) const.Darren Salt
(Diego Pettenò) CVS patchset: 7985 CVS date: 2006/05/03 19:46:06
2006-03-07Fixed channels to mode translation in audio decoders.Thibaut Mattern
Patch from Chris Brien. CVS patchset: 7922 CVS date: 2006/03/07 08:03:08
2004-12-17forgot this one:Michael Roitzsch
use UTF-8 meta info setting, where we know the string is ASCII (costly conversion is not necessary, because ASCII is a subset of UTF-8) CVS patchset: 7268 CVS date: 2004/12/17 13:39:54
2004-12-12huge patch ahead: reorganizing config entries with automatic conversionMichael Roitzsch
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
2004-06-06Don't assume buffer contains waveformatex header when BUF_FLAG_STDHEADER is ↵James Stembridge
set, it's optional CVS patchset: 6649 CVS date: 2004/06/06 16:13:30
2004-05-24Reset support.Thibaut Mattern
Pass the seeking stress test now ;) CVS patchset: 6586 CVS date: 2004/05/24 19:43:47
2004-04-26help strings added for all remaining config entries (so I hope)Michael Roitzsch
please everybody watch out for spelling (and other) errors CVS patchset: 6442 CVS date: 2004/04/26 17:50:06
2004-03-16changing decoder priorities:Michael Roitzsch
* increase ffmpeg from 5 to 6 * increase some others from 6 to 7 (they should still override ffmpeg) * increase liba52 from 2 to 5 (since 5 is somewhat default) * decrease win32 DLL Qt from 5 to 1 (don't worry, this is the only decoder to handle these types, so this is not really a change; it's just that all the other win32 decoders use prio 1) CVS patchset: 6272 CVS date: 2004/03/16 14:12:03
2004-03-03use the _x_abort() macro instead of abort, since it prints some debug infoMichael Roitzsch
before aborting CVS patchset: 6211 CVS date: 2004/03/03 20:09:11
2004-01-12it seems i forgot to commit the api increase (demux/decoder). weird.Miguel Freitas
CVS patchset: 6030 CVS date: 2004/01/12 17:35:14
2004-01-09- rework semantics of some buffer flags. check buffer.h for details.Miguel Freitas
- increase demux and decoder apis - fix runtime changing of ogg/ogm audio channels note: i hope i haven't broken any demux->decoder data exchange. please report any problems. CVS patchset: 6014 CVS date: 2004/01/09 01:26:32
2003-12-24time for some Christmas presents...Michael Roitzsch
libw32 compiles here without a single compiler warning CVS patchset: 5946 CVS date: 2003/12/24 16:55:35
2003-12-14API version bounceSiggi Langauf
CVS patchset: 5912 CVS date: 2003/12/14 22:13:22
2003-12-05cleanup phase II. use xprintf when it's relevant, use xine_xmalloc when it's ↵Daniel Caujolle-Bert
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
2003-11-26lprintf cleanup, pass I.Daniel Caujolle-Bert
CVS patchset: 5796 CVS date: 2003/11/26 19:43:26
2003-11-16New stream/meta info (safe) stuff.Daniel Caujolle-Bert
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
2003-11-15more helper functions cleanup (stream info, meta info)Miguel Freitas
CVS patchset: 5731 CVS date: 2003/11/15 13:01:00
2003-11-13define FOURCC only onceMarco Zuehlke
CVS patchset: 5729 CVS date: 2003/11/13 15:23:00
2003-11-11rename internal API function (_x_<function>).Daniel Caujolle-Bert
CVS patchset: 5721 CVS date: 2003/11/11 18:44:50
2003-10-23I should have seen this coming...Michael Roitzsch
The changes to the video API of course require the video/spu decoder and post plugin APIs to be increased as well. CVS patchset: 5579 CVS date: 2003/10/23 20:12:33
2003-08-04support for arbitrary aspect ratiosMiguel Freitas
patch by Philip Jgenstedt CVS patchset: 5243 CVS date: 2003/08/04 03:47:09
2003-05-10rework the QT stsd/ImageDescription passing from demuxer -> decoderMike Melanson
CVS patchset: 4815 CVS date: 2003/05/10 04:26:17
2003-05-09QT DLL decoder just got deprioritizedMike Melanson
CVS patchset: 4810 CVS date: 2003/05/09 23:55:40
2003-04-04add initial async error/general message reporting to frontendMiguel Freitas
obs: more messages should be added CVS patchset: 4539 CVS date: 2003/04/04 19:20:46
2003-03-09use windows codec path as provided by configureMichael Roitzsch
CVS patchset: 4388 CVS date: 2003/03/09 12:19:13
2003-02-19Qclp support, courtesy of Chris Rankin <cj.rankin@ntlworld.com>; alsoMike Melanson
added codec name meta-info CVS patchset: 4198 CVS date: 2003/02/19 02:08:40
2003-02-17missing files from my last commitMiguel Freitas
CVS patchset: 4179 CVS date: 2003/02/17 03:19:58
2003-01-30fourcc QDM1 seems wrong, it's QDMC (slap me if i'm wrong)Daniel Caujolle-Bert
CVS patchset: 4048 CVS date: 2003/01/30 14:56:45
2003-01-29fix hang problem reported by bastienMiguel Freitas
CVS patchset: 4042 CVS date: 2003/01/29 17:51:05
2003-01-29fix segfault reported by bastienMiguel Freitas
CVS patchset: 4040 CVS date: 2003/01/29 17:16:01
2003-01-11whoups, thats codec_initialized, not decoder_ok in this oneGuenter Bartsch
CVS patchset: 3872 CVS date: 2003/01/11 13:10:13
2003-01-11open and close outputGuenter Bartsch
CVS patchset: 3862 CVS date: 2003/01/11 05:26:55
2003-01-11reduce compile warnings, patch provided by chris rankinGuenter Bartsch
CVS patchset: 3861 CVS date: 2003/01/11 04:57:50
2003-01-08fixes/cleanups of the handled/unhandled codecsMiguel Freitas
for more information see message on xine-devel CVS patchset: 3818 CVS date: 2003/01/08 01:02:27
2003-01-03preload to register codec pathMiguel Freitas
CVS patchset: 3767 CVS date: 2003/01/03 23:18:13
2003-01-01real video v40 support by chris rankin, added missing copyright ↵Guenter Bartsch
notices/credits for mplayer CVS patchset: 3746 CVS date: 2003/01/01 20:39:19
2002-12-30fix pts situation (hopefully)Mike Melanson
CVS patchset: 3728 CVS date: 2002/12/30 05:09:53
2002-12-28Fix segmentation fault in QuickTime binary codecsEwald Snel
CVS patchset: 3705 CVS date: 2002/12/28 09:50:49
2002-12-21- add buf->decoder_info_ptr: portability for systems where pointer hasMiguel Freitas
different sizeof than integer. - add extra_info structure to pass informations from input/demuxers down to the output frame. this can be used, for example, to pass the frame number of a frame (when known by decoder). also, immediate benefict is that we now have a slider which really shows the current position of the playing stream. new fields can be added to extra_info keeping binary compatibility - bumpy everybody's api versions CVS patchset: 3603 CVS date: 2002/12/21 12:56:44
2002-12-21...my beautiful, beautiful special information buffer facility...okayMike Melanson
it's just a hack. Oh well, set it straight CVS patchset: 3600 CVS date: 2002/12/21 03:03:15
2002-12-18first draft of quicktime binary-only codec supportGuenter Bartsch
CVS patchset: 3580 CVS date: 2002/12/18 04:00:45