summaryrefslogtreecommitdiff
path: root/libavfilter/f_realtime.c
diff options
context:
space:
mode:
Diffstat (limited to 'libavfilter/f_realtime.c')
-rw-r--r--libavfilter/f_realtime.c10
1 files changed, 2 insertions, 8 deletions
diff --git a/libavfilter/f_realtime.c b/libavfilter/f_realtime.c
index 278ee18f36..83793bbe15 100644
--- a/libavfilter/f_realtime.c
+++ b/libavfilter/f_realtime.c
@@ -25,6 +25,7 @@
#include "audio.h"
#include "avfilter.h"
#include "internal.h"
+#include "video.h"
#include <float.h>
typedef struct RealtimeContext {
@@ -86,13 +87,6 @@ static const AVFilterPad avfilter_vf_realtime_inputs[] = {
},
};
-static const AVFilterPad avfilter_vf_realtime_outputs[] = {
- {
- .name = "default",
- .type = AVMEDIA_TYPE_VIDEO,
- },
-};
-
const AVFilter ff_vf_realtime = {
.name = "realtime",
.description = NULL_IF_CONFIG_SMALL("Slow down filtering to match realtime."),
@@ -100,7 +94,7 @@ const AVFilter ff_vf_realtime = {
.priv_class = &realtime_class,
.flags = AVFILTER_FLAG_METADATA_ONLY,
FILTER_INPUTS(avfilter_vf_realtime_inputs),
- FILTER_OUTPUTS(avfilter_vf_realtime_outputs),
+ FILTER_OUTPUTS(ff_video_default_filterpad),
.process_command = ff_filter_process_command,
};
#endif /* CONFIG_REALTIME_FILTER */