summaryrefslogtreecommitdiffstats
path: root/libavformat/matroska.c
Commit message (Collapse)AuthorAgeFilesLines
...
* add support for seeking in matroska filesAurelien Jacobs2007-04-091-0/+33
| | | | Originally committed as revision 8696 to svn://svn.ffmpeg.org/ffmpeg/trunk
* move matroska_find_track_by_num() upper in the fileAurelien Jacobs2007-04-091-13/+15
| | | | | | so that it can be used by other part of the code Originally committed as revision 8695 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cluster position is relative to segment_startAurelien Jacobs2007-04-091-1/+1
| | | | Originally committed as revision 8694 to svn://svn.ffmpeg.org/ffmpeg/trunk
* properly set streams start_timeAurelien Jacobs2007-04-091-0/+1
| | | | Originally committed as revision 8693 to svn://svn.ffmpeg.org/ffmpeg/trunk
* remove unused context fieldAurelien Jacobs2007-04-091-3/+0
| | | | Originally committed as revision 8692 to svn://svn.ffmpeg.org/ffmpeg/trunk
* remove wrong and no more used packet reordering codeAurelien Jacobs2007-04-091-51/+0
| | | | Originally committed as revision 8691 to svn://svn.ffmpeg.org/ffmpeg/trunk
* allocate 32 extra bytes at the end of the probe buffer and remove most probe ↵Michael Niedermayer2007-04-081-3/+0
| | | | | | buf_size checks Originally committed as revision 8677 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add support for V_THEORA into MatroskaAurelien Jacobs2007-03-251-0/+1
| | | | | | | | Original thread: Date: Thu, 22 Mar 2007 20:23:08 -0400 Subject: [Ffmpeg-devel] [PATCH] Theora in MKV (GSoC '07 Qualification) Originally committed as revision 8507 to svn://svn.ffmpeg.org/ffmpeg/trunk
* disable pts reordering code and initialize a parser insteadAurelien Jacobs2007-03-151-8/+1
| | | | Originally committed as revision 8418 to svn://svn.ffmpeg.org/ffmpeg/trunk
* remove outdated commentAurelien Jacobs2007-03-131-1/+0
| | | | Originally committed as revision 8370 to svn://svn.ffmpeg.org/ffmpeg/trunk
* remove no more needed parametersAurelien Jacobs2007-03-131-9/+3
| | | | Originally committed as revision 8369 to svn://svn.ffmpeg.org/ffmpeg/trunk
* set pkt->duration for laced packets tooAurelien Jacobs2007-03-131-8/+1
| | | | Originally committed as revision 8366 to svn://svn.ffmpeg.org/ffmpeg/trunk
* calculate pts for laced packetsAurelien Jacobs2007-03-131-4/+9
| | | | Originally committed as revision 8365 to svn://svn.ffmpeg.org/ffmpeg/trunk
* calculate default_duration for AAC tracksAurelien Jacobs2007-03-131-0/+1
| | | | Originally committed as revision 8364 to svn://svn.ffmpeg.org/ffmpeg/trunk
* scale duration and default_durationAurelien Jacobs2007-03-131-6/+7
| | | | Originally committed as revision 8363 to svn://svn.ffmpeg.org/ffmpeg/trunk
* move timecode calculation out of laces loopAurelien Jacobs2007-03-121-5/+7
| | | | Originally committed as revision 8359 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetic: indent after last commitAurelien Jacobs2007-03-111-1/+1
| | | | Originally committed as revision 8335 to svn://svn.ffmpeg.org/ffmpeg/trunk
* reorder pts of packets from tracks using V_MPEG* codecsAurelien Jacobs2007-03-111-0/+60
| | | | Originally committed as revision 8334 to svn://svn.ffmpeg.org/ffmpeg/trunk
* revert r7181Aurelien Jacobs2007-03-111-1/+1
| | | | | | | This was a stupid mistake. We already take care of time_scale in av_set_pts_info(). Originally committed as revision 8333 to svn://svn.ffmpeg.org/ffmpeg/trunk
* check if current block contains a B frame and gives this info to parse_block()Aurelien Jacobs2007-03-111-5/+12
| | | | Originally committed as revision 8332 to svn://svn.ffmpeg.org/ffmpeg/trunk
* extract ebml_read_binary() out of matroska_parse_block()Aurelien Jacobs2007-03-111-13/+24
| | | | | | | This allows to read all the blockgroup parameters before parsing the block itself. Originally committed as revision 8331 to svn://svn.ffmpeg.org/ffmpeg/trunk
* reindent after last commitAurelien Jacobs2007-03-111-27/+27
| | | | Originally committed as revision 8330 to svn://svn.ffmpeg.org/ffmpeg/trunk
* parse clusters until some packets are queuedAurelien Jacobs2007-03-111-6/+5
| | | | | | instead of parsing only one cluster Originally committed as revision 8329 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fix a stupid bug in ebml_read_sint()Aurelien Jacobs2007-03-111-1/+0
| | | | Originally committed as revision 8328 to svn://svn.ffmpeg.org/ffmpeg/trunk
* use codec_get_id() instead of deprecated codec_get_[bmp/wav]_id()Aurelien Jacobs2007-03-111-3/+3
| | | | Originally committed as revision 8327 to svn://svn.ffmpeg.org/ffmpeg/trunk
* don't rely on a specific appearance order for ebml elements at the same levelAurelien Jacobs2007-03-021-15/+14
| | | | Originally committed as revision 8181 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add support for simple blocks (ie. matroska v2)Aurelien Jacobs2007-03-021-2/+9
| | | | Originally committed as revision 8180 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: fix indentation of the new matroska_parse_block() functionAurelien Jacobs2007-03-011-162/+159
| | | | Originally committed as revision 8179 to svn://svn.ffmpeg.org/ffmpeg/trunk
* split a matroska_parse_block() function from matroska_parse_blockgroup()Aurelien Jacobs2007-03-011-29/+44
| | | | Originally committed as revision 8178 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fix an off-by-one error in probing functionAurelien Jacobs2007-03-011-1/+1
| | | | | | this prevented correct detection of Mushishi24-head.mkv Originally committed as revision 8177 to svn://svn.ffmpeg.org/ffmpeg/trunk
* rename BE/LE_8/16/32 to AV_RL/B_8/16/32Alex Beregszaszi2007-01-191-1/+1
| | | | Originally committed as revision 7587 to svn://svn.ffmpeg.org/ffmpeg/trunk
* matroska: scale timecode according to time_scaleAurelien Jacobs2006-11-281-1/+1
| | | | | | fixes jerky playback of planet.earth.mkv Originally committed as revision 7181 to svn://svn.ffmpeg.org/ffmpeg/trunk
* No need for special trick anymore for flac in matroska.Aurelien Jacobs2006-11-231-8/+0
| | | | | | The flac decoder now understand full metadata header in extradata. Originally committed as revision 7162 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add support for FLAC in matroskaAurelien Jacobs2006-11-211-0/+9
| | | | Originally committed as revision 7150 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add support for tta in matroskaAurelien Jacobs2006-11-201-0/+18
| | | | Originally committed as revision 7138 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: reindent after last commitAurelien Jacobs2006-11-201-7/+7
| | | | Originally committed as revision 7130 to svn://svn.ffmpeg.org/ffmpeg/trunk
* matroska: split real video frames so that each packet contains only one sliceAurelien Jacobs2006-11-201-7/+32
| | | | Originally committed as revision 7129 to svn://svn.ffmpeg.org/ffmpeg/trunk
* matroska: properly handle real video extradataAurelien Jacobs2006-11-201-1/+8
| | | | Originally committed as revision 7128 to svn://svn.ffmpeg.org/ffmpeg/trunk
* simplify free()+set to NULL using av_freep()Aurelien Jacobs2006-11-201-2/+1
| | | | Originally committed as revision 7127 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Allows playback of truncated matroska files.Aurelien Jacobs2006-11-121-4/+2
| | | | Originally committed as revision 6989 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix wrong comment.Steve L'Homme2006-11-111-1/+1
| | | | | | | | | Patch by Steve Lhomme % slhomme A divxcorp P com % Original thread: Date: Fri, 10 Nov 2006 15:29:50 +0100 Subject: [Ffmpeg-devel] [PATCH] fix a comment Originally committed as revision 6965 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add A_AAC codec identifier support in matroska.Steve L'Homme2006-11-111-2/+2
| | | | | | | | | Patch by Steve Lhomme % slhomme A divxcorp P com % Original thread: Date: Fri, 10 Nov 2006 15:22:33 +0100 Subject: [Ffmpeg-devel] [PATCH] Handle "A_AAC" in matroska codec IDs Originally committed as revision 6964 to svn://svn.ffmpeg.org/ffmpeg/trunk
* get rid of CODEC_ID_MPEG4AAC after next version bump, and change it to ↵Baptiste Coudurier2006-11-091-3/+2
| | | | | | CODEC_ID_AAC where used Originally committed as revision 6954 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add support for AAC in matroskaAurelien Jacobs2006-11-081-3/+55
| | | | Originally committed as revision 6947 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add audio output sampling freqency reading in matroskaAurelien Jacobs2006-11-081-0/+13
| | | | Originally committed as revision 6946 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Better way to detect cluster (fix files encoded with Haali's muxer).Aurelien Jacobs2006-11-081-5/+3
| | | | Originally committed as revision 6943 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Allow reading matroska title.Aurelien Jacobs2006-11-071-0/+11
| | | | Originally committed as revision 6927 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: reindent after last commitAurelien Jacobs2006-11-061-8/+8
| | | | Originally committed as revision 6926 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Don't need to check for NULL before av_free().Aurelien Jacobs2006-11-061-10/+0
| | | | | | And don't need to memset(0) the no more used priv_data. Originally committed as revision 6925 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add support for block duration.Steve L'Homme2006-11-061-6/+13
| | | | | | | | | Patch by Steve Lhomme % slhomme A divxcorp P com % Original thread: Date: Mon, 06 Nov 2006 19:22:14 +0100 Subject: [Ffmpeg-devel] [PATCH] Matroska block duration support Originally committed as revision 6924 to svn://svn.ffmpeg.org/ffmpeg/trunk
OpenPOWER on IntegriCloud