X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=modules%2Fcodec%2Ffake.c;h=6c47a525b16ead386c3496f0e11fbaa9a95dfe2a;hb=e5127326704fa04d68ae39c807e1d5e738a854dc;hp=d33710601217262c87e691d397cc3e3154daedd8;hpb=27d483e9ef7a451397d7857251c8d67097661f1d;p=vlc diff --git a/modules/codec/fake.c b/modules/codec/fake.c index d337106012..6c47a525b1 100644 --- a/modules/codec/fake.c +++ b/modules/codec/fake.c @@ -29,7 +29,7 @@ # include "config.h" #endif -#include +#include #include #include @@ -78,7 +78,7 @@ static int FakeCallback( vlc_object_t *, char const *, #define CHROMA_LONGTEXT N_( \ "Force use of a specific chroma for output. Default is I420." ) -static const char *ppsz_deinterlace_type[] = +static const char *const ppsz_deinterlace_type[] = { "deinterlace", "ffmpeg-deinterlace" }; @@ -86,8 +86,8 @@ static const char *ppsz_deinterlace_type[] = vlc_module_begin(); set_category( CAT_INPUT ); set_subcategory( SUBCAT_INPUT_VCODEC ); - set_shortname( _("Fake") ); - set_description( _("Fake video decoder") ); + set_shortname( N_("Fake") ); + set_description( N_("Fake video decoder") ); set_capability( "decoder", 1000 ); set_callbacks( OpenDecoder, CloseDecoder ); add_shortcut( "fake" );