diff options
author | Michael Niedermayer <michael@niedermayer.cc> | 2015-08-15 18:38:06 +0200 |
---|---|---|
committer | Michael Niedermayer <michael@niedermayer.cc> | 2015-08-17 17:18:01 +0200 |
commit | 21566b21d57ec9d8b0a40160e3e19c6970a813f7 (patch) | |
tree | 31382004b06736b0ca48010aca04601c7c3eb81c /libavfilter/allfilters.c | |
parent | 84170d4be053a4c7901965fe1977970b5c5e85e5 (diff) | |
download | ffmpeg-21566b21d57ec9d8b0a40160e3e19c6970a813f7.tar.gz |
avfilter: add scale2ref filter
This filter can be used to scale one stream to match another or based on
another, useful to scale subtitles or other things to be overlayed
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
Diffstat (limited to 'libavfilter/allfilters.c')
-rw-r--r-- | libavfilter/allfilters.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavfilter/allfilters.c b/libavfilter/allfilters.c index 2900e88d3d..ce5138220d 100644 --- a/libavfilter/allfilters.c +++ b/libavfilter/allfilters.c @@ -211,6 +211,7 @@ void avfilter_register_all(void) REGISTER_FILTER(ROTATE, rotate, vf); REGISTER_FILTER(SAB, sab, vf); REGISTER_FILTER(SCALE, scale, vf); + REGISTER_FILTER(SCALE2REF, scale2ref, vf); REGISTER_FILTER(SELECT, select, vf); REGISTER_FILTER(SENDCMD, sendcmd, vf); REGISTER_FILTER(SEPARATEFIELDS, separatefields, vf); |