summaryrefslogtreecommitdiff
path: root/src/demuxers/demux_matroska.c
AgeCommit message (Collapse)Author
2006-11-14Implement decoding of A_MS/ACM streams in Matroska files. It is the ↵Diego 'Flameeyes' Pettenò
equivament of the A_MS/VFW/FOURCC for audio tracks. CVS patchset: 8377 CVS date: 2006/11/14 14:17:31
2006-09-26Don't check ebml value, after all dispose_ebml_parser() is just an alias to ↵Diego 'Flameeyes' Pettenò
free(), and it accepts NULL just fine. CVS patchset: 8280 CVS date: 2006/09/26 00:07:05
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-02Various static/const fixes from Gentoo.Darren Salt
CVS patchset: 8009 CVS date: 2006/06/02 22:18:56
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-11[coverity]Thibaut Mattern
CID: 268 Checker: UNINIT (help) File: xine-lib/src/demuxers/demux_matroska.c Function: parse_seek_entry Description: Using uninitialized value "id" CVS patchset: 7925 CVS date: 2006/03/11 09:03:24
2006-01-24Simplified a bit the calculation of the lace sizes for Xiph lacingMathieu Olivier
CVS patchset: 7842 CVS date: 2006/01/24 22:01:05
2006-01-24Matroska demuxer was miscalculating the lace sizes for fixed-size lacingMathieu Olivier
CVS patchset: 7841 CVS date: 2006/01/24 21:59:13
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-03Fixed aac detection bug.Thibaut Mattern
CVS patchset: 7753 CVS date: 2005/10/03 18:22:29
2005-10-02Fixed mpeg4 ASP.Thibaut Mattern
CVS patchset: 7751 CVS date: 2005/10/02 21:44:33
2005-10-02Added H264 support.Thibaut Mattern
CVS patchset: 7750 CVS date: 2005/10/02 21:29:39
2005-07-29Add support for mpeg1/2 video in matroskaJames Stembridge
CVS patchset: 7694 CVS date: 2005/07/29 17:57:00
2005-07-16Create DecoderSpecificInfo for AAC tracks. Fixes HE-AAC in Matroska playback.James Stembridge
CVS patchset: 7646 CVS date: 2005/07/16 17:50:58
2005-06-09Fixed empty master element handling.Thibaut Mattern
CVS patchset: 7616 CVS date: 2005/06/09 17:46:15
2005-02-06Added node_plugin_t pointer to the demux struct.Thibaut Mattern
Incremented demux API version. This is needed to unload plugins. CVS patchset: 7385 CVS date: 2005/02/06 15:26:00
2005-02-03**BUGFIX**František Dvořák
Fixed build on solaris: - use libresolv in hstrerror check - replace PRIiMAX and PRIXMAX by PRIdMAX and PRIxMAX Removed timezone struct for MinGW from public os_types.h, update header comment. Fixed build musepack library on some platforms using xine types. Thanks to Niki W. Waibel for reporting and testing. CVS patchset: 7378 CVS date: 2005/02/03 07:19:03
2004-12-13AC3 supportMiguel Freitas
CVS patchset: 7243 CVS date: 2004/12/13 16:07:43
2004-09-17Warning patch for Win32 - casted off_t to intmax_t for printing.František Dvořák
CVS patchset: 6979 CVS date: 2004/09/17 19:21:33
2004-08-27generic mechanism for specifying subtitles encoding at demuxer levelMiguel Freitas
fixes problems with matroska utf-8 subtitles CVS patchset: 6911 CVS date: 2004/08/27 21:07:31
2004-07-14Moritz patch for matroska vobsub supportMiguel Freitas
align vobsub to bottom in libspudec CVS patchset: 6791 CVS date: 2004/07/14 01:18:47
2004-06-13implement steps 1, 2, 3 and 4 of the seeking proposal:Miguel Freitas
http://article.gmane.org/gmane.comp.video.xine.devel/9532 it is now up to demuxers to decide what the 0..65535 position means. demuxers tested: ogg, voc, flac, rm, asf, vqa, vob, avi, y4m, au, mov, ts, mp3, mpg, wav, ra, mve CVS patchset: 6686 CVS date: 2004/06/13 21:28:52
2004-05-16Priority support.Thibaut Mattern
0 for "raw" demuxers 10 for "normal" demuxers CVS patchset: 6553 CVS date: 2004/05/16 18:01:26
2004-05-02- Better seekhead parsing.Thibaut Mattern
Use a list of toplevel elements to be sure to not parse an element twice, protection against recursion. - Fix decoder init CVS patchset: 6471 CVS date: 2004/05/02 12:28:35
2004-04-29Do not parse the whole file at start.Thibaut Mattern
CVS patchset: 6462 CVS date: 2004/04/29 23:03:49
2004-04-26Seeking support for matroska files.Thibaut Mattern
Patch from Moritz Bunkus. I've reviewed the patch and fixed some little issues. CVS patchset: 6448 CVS date: 2004/04/26 23:33:35
2004-03-05valgrind memleak fixesMichael Roitzsch
CVS patchset: 6218 CVS date: 2004/03/05 17:50:29
2004-02-12send default frame duration and aspect ratio to decoderJames Stembridge
CVS patchset: 6146 CVS date: 2004/02/12 23:31:19
2004-02-12the channel argument is not used in the format stringMichael Roitzsch
CVS patchset: 6133 CVS date: 2004/02/12 18:02:17
2004-02-08*) Don't set BUF_FLAG_STDHEADER for real headers, as they aren't standard ↵James Stembridge
headers *) Use function pointer for selecting codec initialisation CVS patchset: 6123 CVS date: 2004/02/08 18:17:28
2004-02-04buf->size should be 0 when BUF_FLAG_SPECIAL is setJames Stembridge
CVS patchset: 6118 CVS date: 2004/02/04 23:32:19
2004-02-03Support for some more real codecsJames Stembridge
CVS patchset: 6114 CVS date: 2004/02/03 21:37:12
2004-01-22time to update the todo listThibaut Mattern
CVS patchset: 6059 CVS date: 2004/01/22 21:36:45
2004-01-22Fix some memleaks.Thibaut Mattern
CVS patchset: 6058 CVS date: 2004/01/22 21:32:48
2004-01-22Set the preview flags with preview buffers.Thibaut Mattern
Better SSA handling. Use only one subtitle buffer type (BUF_SPU_OGM). CVS patchset: 6057 CVS date: 2004/01/22 00:41:53
2004-01-17- AUDIO_LANG and SPU_LANG supportThibaut Mattern
- initial subtitle support (utf8 is not converted) - some cleanup CVS patchset: 6052 CVS date: 2004/01/17 01:50:43
2004-01-13Pass framerate to real decoder in standard mannerJames Stembridge
CVS patchset: 6041 CVS date: 2004/01/13 20:44:22
2004-01-12spellingJames Stembridge
CVS patchset: 6035 CVS date: 2004/01/12 22:42:54
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-11fix loggingMichael Roitzsch
CVS patchset: 6023 CVS date: 2004/01/11 15:32:24
2004-01-11mmm hmm, I'm glad that you're trying to open the file, but do itMike Melanson
quietly... CVS patchset: 6021 CVS date: 2004/01/11 04:49:34
2004-01-10converting those weird linebreaks (this file was using \r instead of \n)Michael Roitzsch
CVS patchset: 6020 CVS date: 2004/01/10 21:42:04
2004-01-10start the multi stream support.Thibaut Mattern
It seems to work, i'm impressed. Great work Miguel. CVS patchset: 6019 CVS date: 2004/01/10 20:59:15
2004-01-10RealVideo support for the matroska demuxer.Thibaut Mattern
It seems to be a problem with timestamps, too many disc are detected. James Stembridge: see handle_realvideo function in demux_matroska.c CVS patchset: 6017 CVS date: 2004/01/10 01:47: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
2004-01-05Discontinuity handlingThibaut Mattern
Should fix first Siggi's problem. CVS patchset: 6004 CVS date: 2004/01/05 19:39:10
2004-01-05Do not read from non seekable input plugins.Thibaut Mattern
CVS patchset: 6002 CVS date: 2004/01/05 08:02:35
2004-01-05bad coding convention, bad!Mike Melanson
CVS patchset: 6000 CVS date: 2004/01/05 01:22:11
2004-01-05Initial matroska demuxer.Thibaut Mattern
It works with some test streams. Unsupported stuff: seeking lots of codecs subtitles metadata ... CVS patchset: 5998 CVS date: 2004/01/05 00:40:54