summaryrefslogtreecommitdiffstats
path: root/libmpdemux/demux_mkv.c
Commit message (Expand)AuthorAgeFilesLines
* demux_mkv: fix decoded length calculation of LZO decompressionreimar2010-11-021-2/+4
* demux_mkv: add some sanity checksUoti Urpala2010-11-021-16/+31
* cleanup: malloc+memset->calloc, sizeof(TYPE)->sizeof(*ptr)reimar2010-11-021-19/+18
* demux_mkv: support V_MJPEG video tagUoti Urpala2010-10-271-0/+1
* demux_mkv: accept files with no doctype in EBML headerUoti Urpala2010-10-211-1/+4
* demux_mkv: enable automatic index generation by defaultUoti Urpala2010-06-021-1/+1
* demux_mkv: fix possible seek crashUoti Urpala2010-05-311-2/+2
* demux_mkv: support VP8 video tagUoti Urpala2010-05-301-0/+1
* demux_mkv: support WebM filesUoti Urpala2010-05-301-2/+3
* cosmetics: "struct vf_instance* vf" -> "struct vf_instance *vf"Uoti Urpala2010-05-291-2/+2
* demux_mkv: fix realvideo extradata handlingUoti Urpala2010-05-261-2/+1
* demux_mkv: fix crash bug introduced by recent changeUoti Urpala2010-05-241-2/+2
* demux_mkv: support switching to/from -nosoundUoti Urpala2010-05-221-18/+13
* demux_mkv: store streams sequentially in demuxer->[avs]_streamsUoti Urpala2010-05-221-49/+55
* demux_mkv: read tags.Anton Khirnov2010-05-221-1/+17
* demux: use bstr arguments for demuxer_add_attachment() and demuxer_add_chapter()Anton Khirnov2010-05-221-8/+4
* bstr.[ch]: add new files for struct bstr related functionalityUoti Urpala2010-05-201-2/+2
* demux_mkv: fix verbose output of chapter numberingUoti Urpala2010-04-251-1/+1
* demux_mkv: Fix problem with compressed subtitle private dataUoti Urpala2010-03-211-10/+12
* Delete things related to old translation systemUoti Urpala2010-03-101-1/+0
* Merge svn changes up to r30643Uoti Urpala2010-03-101-4/+1
|\
| * Add separate header for real_fix_timestamp(); avoids forward declarations.diego2010-02-171-2/+1
| * Remove one more incorrect direct ass.h include.reimar2009-12-271-1/+0
| * Avoid miscompilation issues with the grow_array function more permanentlyreimar2009-12-111-1/+1
* | demux_mkv: remove incorrect error message about compressionUoti Urpala2010-01-281-1/+1
* | demux_mkv: improve compression handlingUoti Urpala2010-01-271-26/+34
* | demux_mkv: use new EBML parser to read all track headersUoti Urpala2010-01-271-227/+135
* | demux_mkv: handle compressed text subtitlesUoti Urpala2010-01-271-3/+6
* | demux_mkv: don't print errors for 0-size zlib decodingUoti Urpala2010-01-271-0/+4
* | demux_mkv: use new EBML parser to read TrackEncodingsUoti Urpala2010-01-271-151/+67
* | demux_mkv: use new EBML parser to read Video elementUoti Urpala2010-01-271-61/+33
* | demux_mkv: use new EBML parser to read Audio elementUoti Urpala2010-01-271-44/+22
* | demux_mkv: use new EBML parser for Info parsingUoti Urpala2010-01-271-51/+29
* | demux_mkv: remove pointless 'long double' useUoti Urpala2010-01-271-3/+3
* | demux_mkv: use new EBML parser for chapter parsingUoti Urpala2010-01-271-198/+101
* | demux_mkv: use new EBML parser for attachment parsingUoti Urpala2010-01-271-80/+21
* | demux: take chapter/attachment name strings without 0-terminationUoti Urpala2010-01-271-2/+3
* | demux_mkv: don't stop playback on non-Cluster elementsUoti Urpala2010-01-271-2/+5
* | demux_mkv: improve Cues parsingUoti Urpala2010-01-271-65/+18
* | demux_mkv: support reading all headers based on SeekHeadUoti Urpala2010-01-271-150/+148
* | demux_mkv: use new EBML parser for file headerUoti Urpala2010-01-271-5/+29
* | matroska: add new parsing codeUoti Urpala2010-01-271-20/+20
* | demux_mkv: improve seeking with generated indexUoti Urpala2010-01-011-46/+69
* | demux_mkv: remove useless codeUoti Urpala2009-12-311-16/+2
* | demux_mkv: respect -forceidxUoti Urpala2009-12-311-1/+1
* | demux_mkv.c, ebml.c: Reformat to K&R styleUoti Urpala2009-12-291-2232/+2037
* | Support for multiple editions in MatroskaDaniel Dawson2009-12-041-27/+65
* | demux_mkv: Detect and warn about virtual timeline nestingDaniel Dawson2009-12-041-0/+16
* | demux_mkv.c: Make time arithmetic more precise in one more caseUoti Urpala2009-12-021-1/+1
* | demux_mkv: Stop moving FLAC extradata into stream packetsUoti Urpala2009-10-171-8/+6
* | Merge svn changes up to r29752Uoti Urpala2009-10-061-26/+6
|\|
| * Avoid void * arithmetic.reimar2009-09-301-1/+1
| * Simplify aac_get_sample_rate_indexreimar2009-09-301-24/+4
| * Check for grow_array allocation failure.reimar2009-09-301-0/+8
| * Avoid a possible crash if num_cluster_pos is 0.reimar2009-09-301-1/+1
| * Check for integer overflow in grow_array.reimar2009-09-301-1/+4
| * Rearrange code of grow_array to make it easier to extend.reimar2009-09-301-2/+3
| * Avoid a memleak if realloc fails in grow_array.reimar2009-09-301-0/+3
| * Change grow_array argument from void ** to void *, this avoids a aliasingreimar2009-09-301-4/+5
* | demux_mkv: Fix memory leaks in attachment readingUoti Urpala2009-09-181-2/+10
* | Merge svn changes up to r29532Uoti Urpala2009-08-181-1/+4
|\|
| * Fix incompatible pointer types warning, also seems to fix mis-compilation wit...reimar2009-08-171-2/+2
| * Add Dolby TrueHD support for mkv demuxer.cehoyos2009-08-131-1/+4
| * whitespace cosmetics: Remove all trailing whitespace.diego2009-05-131-17/+17
* | Remove internal libass treeUoti Urpala2009-07-261-2/+1
* | Replace libavutil internal header #includes with MPlayer copiesUoti Urpala2009-07-261-1/+1
* | demux_mkv.c: Make some time arithmetic more preciseUoti Urpala2009-07-101-20/+21
* | demux_mkv: Round more seeks to "backwards" keyframesUoti Urpala2009-07-091-1/+1
* | demux_mkv: Make seeks more precise in some casesUoti Urpala2009-07-091-2/+2
* | Remove trailing whitespace from most filesUoti Urpala2009-07-071-13/+13
* | Merge svn changes up to r29304Uoti Urpala2009-07-071-4/+19
|\|
| * Add standard license header to all files in libmpdemux.diego2009-05-081-4/+19
* | Translation system changes part 2: replace macros by stringsAmar Takhar2009-07-071-17/+17
* | Translation system changes part 1: wrap translated stringsAmar Takhar2009-07-071-16/+16
* | Support chapter seeking with ordered chaptersUoti Urpala2009-04-021-0/+1
* | demux_mkv: Remove first_tc and stop_timecodeUoti Urpala2009-04-021-33/+3
* | demux_mkv: Adjust seeks a bit to catch inexact keyframe matchesUoti Urpala2009-04-021-0/+4
* | Add improved relative seek modeUoti Urpala2009-03-241-7/+17
* | demux_mkv: Parse ordered chapter informationUoti Urpala2009-03-221-2/+73
* | demux_mkv: Some cleanup, fix duration printed at verbose levelUoti Urpala2009-03-211-154/+134
* | Merge svn changes up to r28537Uoti Urpala2009-02-121-89/+11
|\|
| * change internal real video packetizing format to the more straight forward oneaurel2009-02-091-86/+8
| * Convert CONFIG_ZLIB into a 0/1 option.diego2009-02-071-3/+3
* | Merge svn changes up to r28461Uoti Urpala2009-02-041-7/+7
|\|
| * Adapt to lzo changes in libavutilreimar2009-02-021-7/+7
* | Merge svn changes up to r27841Uoti Urpala2008-10-281-208/+0
|\|
| * Factorize vobsub idx/extradata handling.aurel2008-10-271-208/+0
| * Revert bad changes to SSA/ASS subtitle packet formatuau2008-09-081-38/+1
| * demux_mkv: output correctly formated ASS packetsaurel2008-09-051-1/+38
* | Merge svn changes up to r27374Uoti Urpala2008-07-301-6/+6
|\|
| * Start unifying names of internal preprocessor directives.diego2008-07-301-6/+6
| * Remove unused function, fixes the warning:diego2008-05-151-19/+0
| * Remove unused variable, fixes the warning:diego2008-05-151-1/+0
| * cosmetics: Break overly long lines.diego2008-05-151-5/+7
| * Mark static tables const.diego2008-05-151-4/+4
| * Revert r26412: policy violationrtogni2008-04-191-8/+7
* | demux_mkv.c: Compiler warning fixesUoti Urpala2008-04-281-31/+12
* | Move dvdsub_id to options structUoti Urpala2008-04-231-5/+0
* | Move correct_pts to options structUoti Urpala2008-04-231-1/+3
|/
* demux_mkv.c: Mark some static tables constuau2008-04-121-7/+8
* Support 'default' attribute for audio and subtitle tracks.eugeni2008-03-301-0/+2
* Remove unused function.eugeni2008-02-291-20/+0
* Reindent.eugeni2008-02-291-18/+18
* Don't select audio stream in lavf and mkv demuxers.eugeni2008-02-291-11/+1
* Don't select subtitle track in lavf and mkv demuxers.eugeni2008-02-291-21/+0
* Remove stupid checks of free() argument.eugeni2008-02-291-20/+10
* Fill sh_sub_t.lang in lavf, mkv and ogg demuxers. Use it for printing subtitleeugeni2008-02-291-20/+2
* Fill sh_audio_t.lang in lavf and mkv demuxers. Use it for printing audio trackeugeni2008-02-291-21/+2
* FFmpeg now uses different (unified) #include paths.diego2008-02-251-5/+0
* -chapter is now handled uniformly calling demuxer_seek_chapter() insteadnicodvb2008-02-111-11/+0
* Allow demuxers to choose a default value for correct_ptsreimar2008-02-031-1/+3
* Use defines to give names to the different seek flags.reimar2008-01-291-5/+6
* Make all demuxer_desc_t const, thus moving them to .rodatareimar2008-01-131-1/+1
* Instead of keeping attachments in mkv demuxer, use demuxer_add_attachment().eugeni2008-01-121-44/+1
* Move all subtitle parsing from mkv demuxer to update_subtitles().eugeni2008-01-111-22/+1
* Init and destroy ass_tracks in demuxer.c based on sh_sub->type value.eugeni2008-01-111-40/+1
* Set extradata for subtitle tracks in mkv demuxer.eugeni2008-01-111-0/+4
* Factorize private data decoding for subtitle tracks in mkv demuxer.eugeni2008-01-111-20/+12
* Vobsub support tridx setting in .idx file.ulion2007-12-191-2/+8
* Move temp variable declaration into inner loop scope.ulion2007-12-101-2/+3
* Convert vobsub custom colors from rgb to yuv using a common function.ulion2007-12-091-1/+3
* Move vobsub palette->yuv convert code into a common function.ulion2007-12-081-9/+3
* Restore y of palette into the same value range as it was in the .ifo file.ulion2007-12-081-0/+1
* add support for wavpack into matroskaaurel2007-10-211-0/+4
* Fix warnings:diego2007-08-261-2/+0
* Avoid crash if a non-existent audio track is selected with -aidreimar2007-07-161-5/+5
* fix typo in a commentaurel2007-07-131-1/+1
* Add some missing frees.reimar2007-07-051-2/+7
* Avoid code duplication and ugly config.h hack by using av_strlcat/av_strlcpyreimar2007-07-051-2/+3
* index_mode is already defined in demuxer.hreimar2007-06-241-2/+0
* Remove the now unused demux_mkv_change_subs functionreimar2007-06-241-39/+0
* Set demuxer->sub->sh to one of the s_streams like done for audio and video.reimar2007-06-241-24/+17
* 100l, last demux_mkv patch passed ints instead of pointers to them to sscanfreimar2007-06-231-1/+1
* Use sh_sub_t instead of mkv_track_t argument where possible, simplifying the ...reimar2007-06-231-30/+30
* demux_mkv very long seek fixuau2007-06-201-1/+1
* Don't set random codec parameters for AC3/DTS in mkv.aurel2007-06-101-2/+2
* Fix segfault when encoding from an mkv file with embedded fonts.eugeni2007-06-071-1/+2
* Get rid of __attribute__((__packed__)) in Matroska demuxerreimar2007-05-281-122/+43
* Remove useless setting of dp->len, it is already set to that value byreimar2007-05-171-1/+0
* Fix indentation broken in r23287reimar2007-05-101-4/+4
* Support theora in mkv. Sample: http://samples.mplayerhq.hu/Matroska/theora.mkvreimar2007-05-101-0/+1
* Avoid code duplication in mkv demuxer for standard fourcc/extradata handlingreimar2007-05-101-29/+23
* Fix NULL pointer dereference in demux_mkv that happens wheneugeni2007-05-011-2/+2
* Matroska seeking fixesuau2007-03-161-12/+22
* Use explicit path for headers from the loader/ directory.diego2007-03-151-1/+1
* Add explicit location for headers from the stream/ directory.diego2007-03-151-1/+1
* Remove subcp_open/subcp_close from mkv demuxer, they are useless since a long...reimar2007-03-051-7/+0
* Use libavutil's av_clip* instead of unreadable MIN/MAX chaos.reimar2007-03-011-13/+3
* Make sure sub->sh is set when a subtitle is selectedreimar2007-02-081-0/+4
* Another round of subtitle code cleanupreimar2007-02-051-54/+12
* Make mkv demuxer use ffmpeg LZO as well.reimar2007-01-311-17/+13
* Simplify and make lzo decompression code more similar to zlib one.reimar2007-01-271-2/+2
* Forgotten free on errorreimar2007-01-271-0/+2
* *dest = malloc (*size); is useless directly before *dest = realloc (*dest, *s...reimar2007-01-271-1/+1
* Remove comment printed by -demuxer help, it belongs in the copyright header.diego2007-01-251-1/+1
*