Commit 9c9d5bf2 authored by Paul B Mahol's avatar Paul B Mahol

avfilter/f_metadata: add ends_with() function for comparing ends of strings

parent 6ca3d34f
...@@ -21856,6 +21856,10 @@ Values are interpreted as floats, returns true if metadata value is greater than ...@@ -21856,6 +21856,10 @@ Values are interpreted as floats, returns true if metadata value is greater than
@item expr @item expr
Values are interpreted as floats, returns true if expression from option @code{expr} Values are interpreted as floats, returns true if expression from option @code{expr}
evaluates to true. evaluates to true.
@item ends_with
Values are interpreted as strings, returns true if metadata value ends with
the @code{value} option string.
@end table @end table
@item expr @item expr
......
...@@ -54,6 +54,7 @@ enum MetadataFunction { ...@@ -54,6 +54,7 @@ enum MetadataFunction {
METADATAF_EQUAL, METADATAF_EQUAL,
METADATAF_GREATER, METADATAF_GREATER,
METADATAF_EXPR, METADATAF_EXPR,
METADATAF_ENDS_WITH,
METADATAF_NB METADATAF_NB
}; };
...@@ -107,6 +108,7 @@ static const AVOption filt_name##_options[] = { \ ...@@ -107,6 +108,7 @@ static const AVOption filt_name##_options[] = { \
{ "equal", NULL, 0, AV_OPT_TYPE_CONST, {.i64 = METADATAF_EQUAL }, 0, 3, FLAGS, "function" }, \ { "equal", NULL, 0, AV_OPT_TYPE_CONST, {.i64 = METADATAF_EQUAL }, 0, 3, FLAGS, "function" }, \
{ "greater", NULL, 0, AV_OPT_TYPE_CONST, {.i64 = METADATAF_GREATER }, 0, 3, FLAGS, "function" }, \ { "greater", NULL, 0, AV_OPT_TYPE_CONST, {.i64 = METADATAF_GREATER }, 0, 3, FLAGS, "function" }, \
{ "expr", NULL, 0, AV_OPT_TYPE_CONST, {.i64 = METADATAF_EXPR }, 0, 3, FLAGS, "function" }, \ { "expr", NULL, 0, AV_OPT_TYPE_CONST, {.i64 = METADATAF_EXPR }, 0, 3, FLAGS, "function" }, \
{ "ends_with", NULL, 0, AV_OPT_TYPE_CONST, {.i64 = METADATAF_ENDS_WITH }, 0, 0, FLAGS, "function" }, \
{ "expr", "set expression for expr function", OFFSET(expr_str), AV_OPT_TYPE_STRING, {.str = NULL }, 0, 0, FLAGS }, \ { "expr", "set expression for expr function", OFFSET(expr_str), AV_OPT_TYPE_STRING, {.str = NULL }, 0, 0, FLAGS }, \
{ "file", "set file where to print metadata information", OFFSET(file_str), AV_OPT_TYPE_STRING, {.str=NULL}, 0, 0, FLAGS }, \ { "file", "set file where to print metadata information", OFFSET(file_str), AV_OPT_TYPE_STRING, {.str=NULL}, 0, 0, FLAGS }, \
{ NULL } \ { NULL } \
...@@ -122,6 +124,14 @@ static int starts_with(MetadataContext *s, const char *value1, const char *value ...@@ -122,6 +124,14 @@ static int starts_with(MetadataContext *s, const char *value1, const char *value
return !strncmp(value1, value2, strlen(value2)); return !strncmp(value1, value2, strlen(value2));
} }
static int ends_with(MetadataContext *s, const char *value1, const char *value2)
{
const int len1 = strlen(value1);
const int len2 = strlen(value2);
return !strncmp(value1 + FFMAX(len1 - len2, 0), value2, len2);
}
static int equal(MetadataContext *s, const char *value1, const char *value2) static int equal(MetadataContext *s, const char *value1, const char *value2)
{ {
float f1, f2; float f1, f2;
...@@ -212,6 +222,9 @@ static av_cold int init(AVFilterContext *ctx) ...@@ -212,6 +222,9 @@ static av_cold int init(AVFilterContext *ctx)
case METADATAF_STARTS_WITH: case METADATAF_STARTS_WITH:
s->compare = starts_with; s->compare = starts_with;
break; break;
case METADATAF_ENDS_WITH:
s->compare = ends_with;
break;
case METADATAF_LESS: case METADATAF_LESS:
s->compare = less; s->compare = less;
break; break;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment