From 7ea82eb7bc2d95bffa3135c8d93930c8b88e32b6 Mon Sep 17 00:00:00 2001 From: wm4 Date: Tue, 17 Feb 2015 23:49:38 +0100 Subject: demux: remove file_contents field Only demux_cue and demux_edl used it. It's a weird field and doesn't help with anything anymore - by now, it only saves a priv context in the mentioned demuxers. Reducing the number of confusing things the demuxer struct has is more important than minimizing the code. (cherry picked from commit 082371a1603eaaa6c5c9f4bd57f9e77ff027ee15) --- demux/demux.c | 1 - 1 file changed, 1 deletion(-) (limited to 'demux/demux.c') diff --git a/demux/demux.c b/demux/demux.c index 96e277f2c5..17d9fafce8 100644 --- a/demux/demux.c +++ b/demux/demux.c @@ -755,7 +755,6 @@ static void demux_copy(struct demuxer *dst, struct demuxer *src) dst->attachments = src->attachments; dst->num_attachments = src->num_attachments; dst->matroska_data = src->matroska_data; - dst->file_contents = src->file_contents; dst->playlist = src->playlist; dst->seekable = src->seekable; dst->partially_seekable = src->partially_seekable; -- cgit v1.2.3