[vlc-commits] vaapi: drop priority to zero
Rémi Denis-Courmont
git at videolan.org
Thu Jul 18 18:35:47 CEST 2013
vlc | branch: master | Rémi Denis-Courmont <remi at remlab.net> | Thu Jul 18 19:29:41 2013 +0300| [748f6b2f318aff180067bc341804fa91e51534d5] | committer: Rémi Denis-Courmont
vaapi: drop priority to zero
The plugin does not correctly check decoder profiles, so it should
really not be enabled automatically. It can still be enabled manually
from the UI or CLI as before.
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=748f6b2f318aff180067bc341804fa91e51534d5
---
modules/codec/avcodec/vaapi.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/modules/codec/avcodec/vaapi.c b/modules/codec/avcodec/vaapi.c
index d8703a0..87c4fd2 100644
--- a/modules/codec/avcodec/vaapi.c
+++ b/modules/codec/avcodec/vaapi.c
@@ -51,7 +51,7 @@ static void Delete( vlc_va_t * );
vlc_module_begin ()
set_description( N_("Video Acceleration (VA) API") )
- set_capability( "hw decoder", 50 )
+ set_capability( "hw decoder", 0 )
set_category( CAT_INPUT )
set_subcategory( SUBCAT_INPUT_VCODEC )
set_callbacks( Create, Delete )
More information about the vlc-commits
mailing list