From 8b3306924d1b80ed85907449ffa2549946e8b137 Mon Sep 17 00:00:00 2001 From: wm4 Date: Wed, 31 Jan 2018 04:21:02 +0100 Subject: 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. --- audio/decode/ad_spdif.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'audio') diff --git a/audio/decode/ad_spdif.c b/audio/decode/ad_spdif.c index c97c62ddaa..0706b11614 100644 --- a/audio/decode/ad_spdif.c +++ b/audio/decode/ad_spdif.c @@ -378,7 +378,7 @@ struct mp_decoder_list *select_spdif_codec(const char *codec, const char *pref) const char *suffix_name = dts_hd_allowed ? "dts_hd" : codec; char name[80]; snprintf(name, sizeof(name), "spdif_%s", suffix_name); - mp_add_decoder(list, "spdif", codec, name, + mp_add_decoder(list, codec, name, "libavformat/spdifenc audio pass-through decoder"); return list; } -- cgit v1.2.3