summaryrefslogtreecommitdiffstats
path: root/demux/demux.h
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2015-08-12 11:10:45 +0200
committerwm4 <wm4@nowhere>2015-08-12 11:11:23 +0200
commit828881816acbfae0451e038c45e63b6784681daa (patch)
tree204b590332a95f2e5778a3e184b676e0e719ac4c /demux/demux.h
parentc7329e5118d4e26d02f74fed66747392916ceae7 (diff)
downloadmpv-828881816acbfae0451e038c45e63b6784681daa.tar.bz2
mpv-828881816acbfae0451e038c45e63b6784681daa.tar.xz
demux: remove redundant demux_chapter.name field
Instead, force everyone to use the metadata struct and set a "title" field. This is only a problem for the timeline producers, which set up chapters manually. (They do this because a timeline is a separate struct.) This fixes the behavior of the chapter-metadata property, which never returned a "title" property for e.g. ordered chapters.
Diffstat (limited to 'demux/demux.h')
-rw-r--r--demux/demux.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/demux/demux.h b/demux/demux.h
index 710073d26c..7e4dcea5d0 100644
--- a/demux/demux.h
+++ b/demux/demux.h
@@ -113,7 +113,6 @@ typedef struct demux_chapter
{
int original_index;
double pts;
- char *name;
struct mp_tags *metadata;
uint64_t demuxer_id; // for mapping to internal demuxer data structures
} demux_chapter_t;