diff options
author | Vitor Sessak <vitor1001@gmail.com> | 2008-02-15 21:35:59 +0000 |
---|---|---|
committer | Vitor Sessak <vitor1001@gmail.com> | 2008-02-15 21:35:59 +0000 |
commit | eaf7eb6617858f227e25dbb459ec0fc9a521de1f (patch) | |
tree | f81b14e9e66254cae78ef0e778d9a0f0275f147f /libavfilter/avfilter.c | |
parent | ce356b0980a4a1ebd713cc019cc73581b26ae4b5 (diff) | |
download | ffmpeg-eaf7eb6617858f227e25dbb459ec0fc9a521de1f.tar.gz |
Add a simple video source filter which loads a PPM file and outputs it as
the videos frames. Useful for testing PRESERVE buffers, and soon automatic
colorspace conversion.
Commited in SoC by Bobby Bingham on 2007-07-08 16:06:30
Originally committed as revision 11978 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavfilter/avfilter.c')
-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 3e2d60ad03..5c27751a08 100644 --- a/libavfilter/avfilter.c +++ b/libavfilter/avfilter.c @@ -236,6 +236,7 @@ void avfilter_register(AVFilter *filter) void avfilter_init(void) { avfilter_register(&vsrc_dummy); + avfilter_register(&vsrc_ppm); avfilter_register(&vf_crop); avfilter_register(&vf_passthrough); avfilter_register(&vf_slicify); |