0
0
mirror of https://github.com/mpv-player/mpv.git synced 2024-09-20 20:03:10 +02:00
mpv/demux/timeline.h
wm4 61202bb364 ytdl_hook, edl: implement pseudo-DASH support
We use the metadata provided by youtube-dl to sort-of implement
fragmented DASH streaming.

This is all a bit hacky, but hopefully a makeshift solution until
libavformat has proper mechanisms. (Although in danger of being one
of those temporary hacks that become permanent.)
2017-02-04 22:34:38 +01:00

43 lines
1.0 KiB
C

#ifndef MP_TIMELINE_H_
#define MP_TIMELINE_H_
struct timeline_part {
double start;
double source_start;
char *url;
struct demuxer *source;
};
struct timeline {
struct mpv_global *global;
struct mp_log *log;
struct mp_cancel *cancel;
// main source
struct demuxer *demuxer;
bstr init_fragment;
bool dash;
// All referenced files. The source file must be at sources[0].
struct demuxer **sources;
int num_sources;
// Segments to play, ordered by time. parts[num_parts] must be valid; its
// start field sets the duration, and source must be NULL.
struct timeline_part *parts;
int num_parts;
struct demux_chapter *chapters;
int num_chapters;
// Which source defines the overall track list (over the full timeline).
struct demuxer *track_layout;
};
struct timeline *timeline_load(struct mpv_global *global, struct mp_log *log,
struct demuxer *demuxer);
void timeline_destroy(struct timeline *tl);
#endif