From: Nirbheek Chauhan Date: Mon, 2 Mar 2020 05:41:47 +0000 (+0530) Subject: Disable vaapi feature by default X-Git-Tag: 1.19.3~481^2~136 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=6dfcecb16a13980b4650a7c9e6102e8d71fc3f7b;p=platform%2Fupstream%2Fgstreamer.git Disable vaapi feature by default Having vaapi decoders/encoders accidentally available by default often causes strange test failures or weird behaviour since the plugins are sometimes buggy or have different behaviour. --- diff --git a/meson_options.txt b/meson_options.txt index 686c675..47b9c59 100644 --- a/meson_options.txt +++ b/meson_options.txt @@ -7,7 +7,7 @@ option('devtools', type : 'feature', value : 'auto') option('ges', type : 'feature', value : 'auto') option('rtsp_server', type : 'feature', value : 'auto') option('omx', type : 'feature', value : 'disabled') -option('vaapi', type : 'feature', value : 'auto') +option('vaapi', type : 'feature', value : 'disabled') option('sharp', type : 'feature', value : 'disabled') option('custom_subprojects', type : 'string', value : '', description : 'Comma-separated project names') option('gst-examples', type : 'feature', value : 'auto', description : 'Build gst-examples')