[vlc-devel] commit: Add a FIXME and fix a capability declaration. (Antoine Cellerier )
git version control
git at videolan.org
Mon Jun 9 10:03:52 CEST 2008
vlc | branch: master | Antoine Cellerier <dionoea at videolan.org> | Sun Jun 8 00:23:42 2008 +0200| [24463d005000387f52b962cc29558981e6975025]
Add a FIXME and fix a capability declaration.
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=24463d005000387f52b962cc29558981e6975025
---
modules/codec/ffmpeg/imgresample.c | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/modules/codec/ffmpeg/imgresample.c b/modules/codec/ffmpeg/imgresample.c
index 1a13275..75c605f 100644
--- a/modules/codec/ffmpeg/imgresample.c
+++ b/modules/codec/ffmpeg/imgresample.c
@@ -45,13 +45,13 @@ vlc_module_begin();
/* crop/padd submodule */
add_submodule();
- set_capability( "crop padd", 10 );
+ set_capability( "crop padd", 10 ); /* FIXME / Remove */
set_callbacks( OpenCropPadd, CloseFilter );
set_description( N_("FFmpeg crop padd filter") );
/* chroma conversion submodule */
add_submodule();
- set_capability( "chroma", 50 );
+ set_capability( "video filter2", 50 );
set_callbacks( OpenChroma, CloseChroma );
set_description( N_("FFmpeg chroma conversion") );
vlc_module_end();
More information about the vlc-devel
mailing list