summaryrefslogtreecommitdiffstats
path: root/sub/sd_lavc.c
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2013-06-03 21:49:39 +0200
committerwm4 <wm4@nowhere>2013-06-03 22:40:32 +0200
commit61dfe121791adf953386642844cd9258ba99f179 (patch)
treeaf462c71bf0fba132a1e90ab89fc96ec779e6afe /sub/sd_lavc.c
parent3289be9a2856c0f935fcb49768fc39d878044202 (diff)
downloadmpv-61dfe121791adf953386642844cd9258ba99f179.tar.bz2
mpv-61dfe121791adf953386642844cd9258ba99f179.tar.xz
sub: add name field to all sub decoders
Might help with debugging.
Diffstat (limited to 'sub/sd_lavc.c')
-rw-r--r--sub/sd_lavc.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/sub/sd_lavc.c b/sub/sd_lavc.c
index 9f8db2d877..cb90e78a56 100644
--- a/sub/sd_lavc.c
+++ b/sub/sd_lavc.c
@@ -244,6 +244,7 @@ static void uninit(struct sd *sd)
}
const struct sd_functions sd_lavc = {
+ .name = "lavc",
.supports_format = supports_format,
.init = init,
.decode = decode,