summaryrefslogtreecommitdiffstats
path: root/player
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2018-01-31 04:21:02 +0100
committerwm4 <wm4@nowhere>2018-02-01 10:21:55 +0100
commit8b3306924d1b80ed85907449ffa2549946e8b137 (patch)
treec4696b0af7fb2ef363d40696b370e6ce24c3b275 /player
parent4b567aeac8d1741b14bf2ee363a5434a4877565e (diff)
downloadmpv-8b3306924d1b80ed85907449ffa2549946e8b137.tar.bz2
mpv-8b3306924d1b80ed85907449ffa2549946e8b137.tar.xz
codecs: remove unused family field
MPlayer used this to distinguish multiple decoder wrappers (such as libavcodec vs. binary codec loader vs. builtin decoders). It lost meaning in mpv as non-libavcodec things were dropped. Now it doesn't serve any purpose anymore. Parsing was removed quite a while ago, and the recent filter change removed any use of the internal family field. Get rid of it.
Diffstat (limited to 'player')
-rw-r--r--player/command.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/player/command.c b/player/command.c
index 1b074b8767..06c5e388ca 100644
--- a/player/command.c
+++ b/player/command.c
@@ -3538,7 +3538,6 @@ static int get_decoder_entry(int item, int action, void *arg, void *ctx)
struct mp_decoder_entry *c = &codecs->entries[item];
struct m_sub_property props[] = {
- {"family", SUB_PROP_STR(c->family)},
{"codec", SUB_PROP_STR(c->codec)},
{"driver" , SUB_PROP_STR(c->decoder)},
{"description", SUB_PROP_STR(c->desc)},