Commit 38ce8b3d authored by vitor's avatar vitor

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


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@11978 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 9e6cef81
...@@ -236,6 +236,7 @@ void avfilter_register(AVFilter *filter) ...@@ -236,6 +236,7 @@ void avfilter_register(AVFilter *filter)
void avfilter_init(void) void avfilter_init(void)
{ {
avfilter_register(&vsrc_dummy); avfilter_register(&vsrc_dummy);
avfilter_register(&vsrc_ppm);
avfilter_register(&vf_crop); avfilter_register(&vf_crop);
avfilter_register(&vf_passthrough); avfilter_register(&vf_passthrough);
avfilter_register(&vf_slicify); avfilter_register(&vf_slicify);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment