summaryrefslogtreecommitdiffstats
path: root/mpvcore/player/timeline/tl_edl.c
Commit message (Collapse)AuthorAgeFilesLines
* timeline: remove support for the mplayer2 EDL formatwm42013-11-191-399/+0
| | | | | It was a bit too complicated and inconvenient, and I doubt anyone actively used it. The mpv EDL format should cover all use cases.
* timeline: add edl:// URIswm42013-11-191-1/+3
| | | | | Questionable change from user perspective, but internally needed to implement the next commit. Also useful for testing timeline stuff.
* timeline: add new EDL formatwm42013-11-191-0/+4
| | | | | | | | | | Edit Decision Lists (EDL) allow combining parts from multiple source files into one virtual file. MPlayer had an EDL format (which sucked), which mplayer2 tried to improve with its own format (which sucked). As logic demands, mpv introduces its very own format (which sucks). The new format should actually be much simpler and easier to use, and its implementation is simpler and smaller too.
* Move files part of the playback core to player sub-directorywm42013-10-301-0/+393
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.