summaryrefslogtreecommitdiffstats
path: root/sub/filter_regex.c
diff options
context:
space:
mode:
authorAvi Halachmi (:avih) <avihpit@yahoo.com>2021-07-22 20:23:13 +0300
committeravih <avih@users.noreply.github.com>2021-08-05 21:32:22 +0300
commitab689a33a86d806726ee551fb25994fd0918a2a2 (patch)
tree4f4c8381209c44788e80215495990a021cc71402 /sub/filter_regex.c
parent24357cb7b5a1a8ca4407c2e6d9316f07a7a5ef0d (diff)
downloadmpv-ab689a33a86d806726ee551fb25994fd0918a2a2.tar.bz2
mpv-ab689a33a86d806726ee551fb25994fd0918a2a2.tar.xz
sub: add filter text utils, use from filter-regex (no-op)
Add two stand-alone function to help with the text-extraction task which ass filters need. Makes it easier to add new filters without cargo-culting this functionality. Currently, on malformed event (which shouldn't happen), a warning is printed when a filter tries to extract the text, so if few filters are enabled, we'll get multiple warnings (like before) - not critical. The regex filter now uses these utils, the SDH filter not yet.
Diffstat (limited to 'sub/filter_regex.c')
-rw-r--r--sub/filter_regex.c25
1 files changed, 3 insertions, 22 deletions
diff --git a/sub/filter_regex.c b/sub/filter_regex.c
index a5aa03a849..66e4b1a1da 100644
--- a/sub/filter_regex.c
+++ b/sub/filter_regex.c
@@ -44,15 +44,7 @@ static bool rf_init(struct sd_filter *ft)
if (!p->num_regexes)
return false;
- char *headers = ft->event_format;
- while (headers && headers[0]) {
- p->offset += 1;
- headers = strchr(headers, ',');
- if (headers)
- headers += 1;
- }
- p->offset -= 1; // removes Start/End, adds ReadOrder
-
+ p->offset = sd_ass_fmt_offset(ft->event_format);
return true;
}
@@ -68,20 +60,9 @@ static struct demux_packet *rf_filter(struct sd_filter *ft,
struct demux_packet *pkt)
{
struct priv *p = ft->priv;
- char *line = bstrto0(NULL, (bstr){(char *)pkt->buffer, pkt->len});
+ char *text = bstrto0(NULL, sd_ass_pkt_text(ft, pkt, p->offset));
bool drop = false;
- char *text = line;
- for (int n = 0; n < p->offset - 1; n++) {
- text = strchr(text, ',');
- if (!text) {
- MP_WARN(ft, "Malformed event: '%s'\n", line);
- text = line; // shouldn't happen; random fallback
- break;
- }
- text = text + 1;
- }
-
for (int n = 0; n < p->num_regexes; n++) {
int err = regexec(&p->regexes[n], text, 0, NULL, 0);
if (err == 0) {
@@ -94,7 +75,7 @@ static struct demux_packet *rf_filter(struct sd_filter *ft,
}
}
- talloc_free(line);
+ talloc_free(text);
return drop ? NULL : pkt;
}