summaryrefslogtreecommitdiffstats
path: root/mpvcore/player/timeline/tl_matroska.c
Commit message (Collapse)AuthorAgeFilesLines
* Move mpvcore/player/ to player/wm42013-12-171-591/+0
|
* matroska: add --ordered-chapters-files optionwm42013-12-141-2/+16
| | | | | This option takes a playlist. The playlist will then be used as list of potential segment files for use with ordered chapters.
* tl_matroska: initialize segment related arrays with 0wm42013-11-011-4/+6
| | | | | | | | | | | | | mpv crashed when linked files were not found. The reason was that the chapters array contained some uninitialized data. I have no idea how this code works (after the merge). The old code actually seems to remove missing chapters, while the new code just leaves them unintiialized. Work around the crash by initializing the chapters array (and a bunch of other things) with 0, which means the missing chapter will be located at 00:00:00 and have no name. There is a regression since commit af0306d.
* Move files part of the playback core to player sub-directorywm42013-10-301-0/+575
All these files access mp_core.h and MPContext, and form the actual player application. They should be all in one place, and separate from the other sources that are mere utility helpers. Preparation for splitting mplayer.c into multiple smaller parts.