diff options
author | Vitor Sessak <vitor1001@gmail.com> | 2008-02-15 21:36:03 +0000 |
---|---|---|
committer | Vitor Sessak <vitor1001@gmail.com> | 2008-02-15 21:36:03 +0000 |
commit | 426d5c252fb223c3093e983b5ca2c189ba6631ae (patch) | |
tree | 516b1e5235dfd819f23cca2a29473e16a04a9865 /libavfilter/avfilter.c | |
parent | eaf7eb6617858f227e25dbb459ec0fc9a521de1f (diff) | |
download | ffmpeg-426d5c252fb223c3093e983b5ca2c189ba6631ae.tar.gz |
Add an RGB24 <-> BGR24 conversion filter
Commited in SoC by Bobby Bingham on 2007-07-08 16:08:15
Originally committed as revision 11979 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 5c27751a08..33b9b05cab 100644 --- a/libavfilter/avfilter.c +++ b/libavfilter/avfilter.c @@ -239,6 +239,7 @@ void avfilter_init(void) avfilter_register(&vsrc_ppm); avfilter_register(&vf_crop); avfilter_register(&vf_passthrough); + avfilter_register(&vf_rgb2bgr) avfilter_register(&vf_slicify); avfilter_register(&vo_sdl); } |