Commit be7d6710 authored by Paul B Mahol's avatar Paul B Mahol

lavfi/frei0r: use AV_OPT_TYPE_IMAGE_SIZE

Signed-off-by: 's avatarPaul B Mahol <onemda@gmail.com>
parent 7ac736af
...@@ -67,7 +67,6 @@ typedef struct Frei0rContext { ...@@ -67,7 +67,6 @@ typedef struct Frei0rContext {
char *dl_name; char *dl_name;
char *params; char *params;
char *size;
AVRational framerate; AVRational framerate;
/* only used by the source */ /* only used by the source */
...@@ -456,11 +455,6 @@ static av_cold int source_init(AVFilterContext *ctx) ...@@ -456,11 +455,6 @@ static av_cold int source_init(AVFilterContext *ctx)
{ {
Frei0rContext *s = ctx->priv; Frei0rContext *s = ctx->priv;
if (av_parse_video_size(&s->w, &s->h, s->size) < 0) {
av_log(ctx, AV_LOG_ERROR, "Invalid frame size: '%s'\n", s->size);
return AVERROR(EINVAL);
}
s->time_base.num = s->framerate.den; s->time_base.num = s->framerate.den;
s->time_base.den = s->framerate.num; s->time_base.den = s->framerate.num;
...@@ -507,7 +501,7 @@ static int source_request_frame(AVFilterLink *outlink) ...@@ -507,7 +501,7 @@ static int source_request_frame(AVFilterLink *outlink)
} }
static const AVOption frei0r_src_options[] = { static const AVOption frei0r_src_options[] = {
{ "size", "Dimensions of the generated video.", OFFSET(size), AV_OPT_TYPE_STRING, { .str = "" }, .flags = FLAGS }, { "size", "Dimensions of the generated video.", OFFSET(w), AV_OPT_TYPE_IMAGE_SIZE, { .str = "320x240" }, .flags = FLAGS },
{ "framerate", NULL, OFFSET(framerate), AV_OPT_TYPE_VIDEO_RATE, { .str = "25" }, .flags = FLAGS }, { "framerate", NULL, OFFSET(framerate), AV_OPT_TYPE_VIDEO_RATE, { .str = "25" }, .flags = FLAGS },
{ "filter_name", NULL, OFFSET(dl_name), AV_OPT_TYPE_STRING, .flags = FLAGS }, { "filter_name", NULL, OFFSET(dl_name), AV_OPT_TYPE_STRING, .flags = FLAGS },
{ "filter_params", NULL, OFFSET(params), AV_OPT_TYPE_STRING, .flags = FLAGS }, { "filter_params", NULL, OFFSET(params), AV_OPT_TYPE_STRING, .flags = FLAGS },
......
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