summaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
Diffstat (limited to 'core')
-rw-r--r--core/av_common.c10
1 files changed, 2 insertions, 8 deletions
diff --git a/core/av_common.c b/core/av_common.c
index 14a7a6b089..bf1af853d9 100644
--- a/core/av_common.c
+++ b/core/av_common.c
@@ -66,14 +66,8 @@ void mp_add_lavc_decoders(struct mp_decoder_list *list, enum AVMediaType type)
if (!cur)
break;
if (av_codec_is_decoder(cur) && cur->type == type) {
- struct mp_decoder_entry entry = {
- .family = "lavc",
- .codec = mp_codec_from_av_codec_id(cur->id),
- .decoder = cur->name,
- .desc = cur->long_name,
- };
- assert(entry.family);
- MP_TARRAY_APPEND(list, list->entries, list->num_entries, entry);
+ mp_add_decoder(list, "lavc", mp_codec_from_av_codec_id(cur->id),
+ cur->name, cur->long_name);
}
}
}