summaryrefslogtreecommitdiff
path: root/libavfilter/avfilter.c
diff options
context:
space:
mode:
authorVitor Sessak <vitor1001@gmail.com>2008-02-15 21:39:51 +0000
committerVitor Sessak <vitor1001@gmail.com>2008-02-15 21:39:51 +0000
commitcc0bb5a1606d4bd9782f0c263338e949aba6f6d2 (patch)
treef1d7623eab77ff6873238902f95d0fd418a0941e /libavfilter/avfilter.c
parent2fd46877f83c3342e5d5ccde456016de28b4f0ad (diff)
Change the passthrough filter to a noformat filter. It's now similar to
the mplayer noformat filter except that the default behavior if no formats are specified is to allow allow all formats (ie. virtually the same as the old passthrough behavior) Commited in SoC by Bobby Bingham on 2007-12-24 21:42:56 Originally committed as revision 12033 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavfilter/avfilter.c')
-rw-r--r--libavfilter/avfilter.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/avfilter.c b/libavfilter/avfilter.c
index 19f0946efb..89a56ccd5d 100644
--- a/libavfilter/avfilter.c
+++ b/libavfilter/avfilter.c
@@ -298,8 +298,8 @@ void avfilter_init(void)
avfilter_register(&avfilter_vf_graphfile);
avfilter_register(&avfilter_vf_hflip);
avfilter_register(&avfilter_vf_negate);
+ avfilter_register(&avfilter_vf_noformat);
avfilter_register(&avfilter_vf_overlay);
- avfilter_register(&avfilter_vf_passthrough);
avfilter_register(&avfilter_vf_scale);
avfilter_register(&avfilter_vf_slicify);
avfilter_register(&avfilter_vf_split);