aboutsummaryrefslogtreecommitdiffhomepage
path: root/stream/stream_edl.c
Commit message (Collapse)AuthorAge
* Add more constGravatar wm42014-06-11
| | | | | | | While I'm not very fond of "const", it's important for declarations (it decides whether a symbol is emitted in a read-only or read/write section). Fix all these cases, so we have writeable global data only when we really need.
* stream: remove chaos related to writeable streamsGravatar wm42014-05-24
| | | | | | | | | | For some reason, we support writeable streams. (Only encoding uses that, and the use of it looks messy enough that I want to replace it with FILE or avio today.) It's a chaos: most streams do not actually check the mode parameter like they should. Simplify it, and let streams signal availability of write mode by setting a flag in the stream info struct.
* timeline: add edl:// URIsGravatar wm42013-11-19
Questionable change from user perspective, but internally needed to implement the next commit. Also useful for testing timeline stuff.