Commit 11e571c7 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

hwaccel: uniformize plugin descriptions

parent 9495b3ca
...@@ -39,7 +39,7 @@ static int Open(vlc_va_t *, AVCodecContext *, const es_format_t *); ...@@ -39,7 +39,7 @@ static int Open(vlc_va_t *, AVCodecContext *, const es_format_t *);
static void Close(vlc_va_t *); static void Close(vlc_va_t *);
vlc_module_begin() vlc_module_begin()
set_description(N_("Dummy video decoding accelerator")) set_description(N_("Dummy video decoder"))
set_capability("hw decoder", 0) set_capability("hw decoder", 0)
set_category(CAT_INPUT) set_category(CAT_INPUT)
set_subcategory(SUBCAT_INPUT_VCODEC) set_subcategory(SUBCAT_INPUT_VCODEC)
......
...@@ -59,9 +59,9 @@ static void Delete( vlc_va_t * ); ...@@ -59,9 +59,9 @@ static void Delete( vlc_va_t * );
vlc_module_begin () vlc_module_begin ()
#if defined (VLC_VA_BACKEND_XLIB) #if defined (VLC_VA_BACKEND_XLIB)
set_description( N_("Video Acceleration (VA) API / X11") ) set_description( N_("VA-API video decoder via X11") )
#elif defined (VLC_VA_BACKEND_DRM) #elif defined (VLC_VA_BACKEND_DRM)
set_description( N_("Video Acceleration (VA) API / DRM") ) set_description( N_("VA-API video decoder via DRM") )
#endif #endif
set_capability( "hw decoder", 0 ) set_capability( "hw decoder", 0 )
set_category( CAT_INPUT ) set_category( CAT_INPUT )
......
...@@ -42,7 +42,7 @@ static int Open(vlc_va_t *, AVCodecContext *, const es_format_t *); ...@@ -42,7 +42,7 @@ static int Open(vlc_va_t *, AVCodecContext *, const es_format_t *);
static void Close(vlc_va_t *); static void Close(vlc_va_t *);
vlc_module_begin() vlc_module_begin()
set_description(N_("VDPAU hardware-accelerated decoder")) set_description(N_("VDPAU video decoder"))
set_capability("hw decoder", 100) set_capability("hw decoder", 100)
set_category(CAT_INPUT) set_category(CAT_INPUT)
set_subcategory(SUBCAT_INPUT_VCODEC) set_subcategory(SUBCAT_INPUT_VCODEC)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment