diff options
author | Vitor Sessak <vitor1001@gmail.com> | 2008-02-15 21:37:26 +0000 |
---|---|---|
committer | Vitor Sessak <vitor1001@gmail.com> | 2008-02-15 21:37:26 +0000 |
commit | e2fcb3cb9ab44e81a931a80d456dd7ebb46a1277 (patch) | |
tree | 5d85297fc8b61a5ad0204926af317625f67b33f3 | |
parent | 246184413a2b9fbd8575461be7eb9a3a49d2c9bf (diff) | |
download | ffmpeg-e2fcb3cb9ab44e81a931a80d456dd7ebb46a1277.tar.gz |
Add a vertical flip filter
Commited in SoC by Bobby Bingham on 2007-08-08 17:22:54
Originally committed as revision 12000 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavfilter/avfilter.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavfilter/avfilter.c b/libavfilter/avfilter.c index 6157521ab3..b004d118f0 100644 --- a/libavfilter/avfilter.c +++ b/libavfilter/avfilter.c @@ -221,6 +221,7 @@ void avfilter_init(void) avfilter_register(&vf_passthrough); avfilter_register(&vf_rgb2bgr); avfilter_register(&vf_slicify); + avfilter_register(&vf_vflip); avfilter_register(&vo_sdl); } |