diff options
author | Stefano Sabatini <stefasab@gmail.com> | 2013-04-21 15:00:11 +0200 |
---|---|---|
committer | Stefano Sabatini <stefasab@gmail.com> | 2013-05-14 20:10:44 +0200 |
commit | 7ddb0ef9af50e07bf949b5fb691a3efad00fd972 (patch) | |
tree | 392aa3d45e77dba8a00f8ff164ac690b218fa86e /libavfilter/allfilters.c | |
parent | dc7656279ae1109adabc3e67f714ce4542183168 (diff) | |
download | ffmpeg-7ddb0ef9af50e07bf949b5fb691a3efad00fd972.tar.gz |
lavfi: add zmq filters
Diffstat (limited to 'libavfilter/allfilters.c')
-rw-r--r-- | libavfilter/allfilters.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavfilter/allfilters.c b/libavfilter/allfilters.c index ddb967331d..19d73a5036 100644 --- a/libavfilter/allfilters.c +++ b/libavfilter/allfilters.c @@ -72,6 +72,7 @@ void avfilter_register_all(void) REGISTER_FILTER(ASYNCTS, asyncts, af); REGISTER_FILTER(ATEMPO, atempo, af); REGISTER_FILTER(ATRIM, atrim, af); + REGISTER_FILTER(AZMQ, azmq, af); REGISTER_FILTER(BANDPASS, bandpass, af); REGISTER_FILTER(BANDREJECT, bandreject, af); REGISTER_FILTER(BASS, bass, af); @@ -184,6 +185,7 @@ void avfilter_register_all(void) REGISTER_FILTER(VIDSTABDETECT, vidstabdetect, vf); REGISTER_FILTER(VIDSTABTRANSFORM, vidstabtransform, vf); REGISTER_FILTER(YADIF, yadif, vf); + REGISTER_FILTER(ZMQ, zmq, vf); REGISTER_FILTER(CELLAUTO, cellauto, vsrc); REGISTER_FILTER(COLOR, color, vsrc); |