mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-21 10:55:51 +02:00
Merge commit 'f13ab29925883b4245da4129694af3af378d67be'
* commit 'f13ab29925883b4245da4129694af3af378d67be': vf_fps: switch to an AVOptions-based system. Conflicts: libavfilter/vf_fps.c Merged-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
commit
81c1ed748b
@ -666,6 +666,7 @@ int avfilter_init_filter(AVFilterContext *filter, const char *args, void *opaque
|
||||
!strcmp(filter->filter->name, "drawtext" ) ||
|
||||
!strcmp(filter->filter->name, "fade" ) ||
|
||||
!strcmp(filter->filter->name, "fieldorder") ||
|
||||
!strcmp(filter->filter->name, "fps" ) ||
|
||||
!strcmp(filter->filter->name, "format") ||
|
||||
!strcmp(filter->filter->name, "noformat") ||
|
||||
!strcmp(filter->filter->name, "resample")
|
||||
|
@ -273,8 +273,6 @@ static const AVFilterPad avfilter_vf_fps_outputs[] = {
|
||||
{ NULL }
|
||||
};
|
||||
|
||||
static const char *const shorthand[] = { "fps", "round", NULL };
|
||||
|
||||
AVFilter avfilter_vf_fps = {
|
||||
.name = "fps",
|
||||
.description = NULL_IF_CONFIG_SMALL("Force constant framerate"),
|
||||
@ -283,9 +281,8 @@ AVFilter avfilter_vf_fps = {
|
||||
.uninit = uninit,
|
||||
|
||||
.priv_size = sizeof(FPSContext),
|
||||
.priv_class = &fps_class,
|
||||
|
||||
.inputs = avfilter_vf_fps_inputs,
|
||||
.outputs = avfilter_vf_fps_outputs,
|
||||
.priv_class = &fps_class,
|
||||
.shorthand = shorthand,
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user