Skip to content

Commit ac73e47

Browse files
author
Tiziano Bacocco
committed
Added interpolateframe
1 parent 4ccd2b3 commit ac73e47

File tree

4 files changed

+406
-0
lines changed

4 files changed

+406
-0
lines changed

configure

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2683,6 +2683,7 @@ cover_rect_filter_deps="avcodec avformat gpl"
26832683
cropdetect_filter_deps="gpl"
26842684
delogo_filter_deps="gpl"
26852685
deshake_filter_select="pixelutils"
2686+
intepolateframes_filter_select="pixelutils"
26862687
drawtext_filter_deps="libfreetype"
26872688
ebur128_filter_deps="gpl"
26882689
eq_filter_deps="gpl"

libavfilter/Makefile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -220,6 +220,7 @@ OBJS-$(CONFIG_XBR_FILTER) += vf_xbr.o
220220
OBJS-$(CONFIG_YADIF_FILTER) += vf_yadif.o
221221
OBJS-$(CONFIG_ZMQ_FILTER) += f_zmq.o
222222
OBJS-$(CONFIG_ZOOMPAN_FILTER) += vf_zoompan.o
223+
OBJS-$(CONFIG_FRAMEINTERP_FILTER) += vf_interpolateframes.o
223224

224225
OBJS-$(CONFIG_CELLAUTO_FILTER) += vsrc_cellauto.o
225226
OBJS-$(CONFIG_COLOR_FILTER) += vsrc_testsrc.o

libavfilter/allfilters.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -147,6 +147,7 @@ void avfilter_register_all(void)
147147
REGISTER_FILTER(FIND_RECT, find_rect, vf);
148148
REGISTER_FILTER(FORMAT, format, vf);
149149
REGISTER_FILTER(FPS, fps, vf);
150+
REGISTER_FILTER(FRAMEINTERP, frameinterp, vf);
150151
REGISTER_FILTER(FRAMEPACK, framepack, vf);
151152
REGISTER_FILTER(FRAMESTEP, framestep, vf);
152153
REGISTER_FILTER(FREI0R, frei0r, vf);

0 commit comments

Comments
 (0)