diff options
author | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2009-10-27 21:40:43 +0000 |
---|---|---|
committer | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2009-10-27 21:40:43 +0000 |
commit | fcbed3c73554d7edeb0f7431e25d64a387d65ff2 (patch) | |
tree | 6c493e67bfc11973f5753d4fe2636f9adcaaab26 /libavfilter/allfilters.c | |
parent | 51135d1d8e113aef5dbafd578460daeb92972c7f (diff) | |
download | ffmpeg-fcbed3c73554d7edeb0f7431e25d64a387d65ff2.tar.gz |
Add format and noformat filters.
Originally committed as revision 20390 to svn://svn.ffmpeg.org/ffmpeg/trunk
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 d7bdb70b71..ac26805372 100644 --- a/libavfilter/allfilters.c +++ b/libavfilter/allfilters.c @@ -35,6 +35,8 @@ void avfilter_register_all(void) initialized = 1; REGISTER_FILTER (CROP,crop,vf); + REGISTER_FILTER (FORMAT,format,vf); + REGISTER_FILTER (NOFORMAT,noformat,vf); REGISTER_FILTER (NULL,null,vf); REGISTER_FILTER (VFLIP,vflip,vf); } |