From: Eunhye Choi Date: Wed, 24 Jul 2024 04:50:43 +0000 (+0900) Subject: enable va even if tv profile X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=refs%2Fheads%2Ftizen_devel_vaapi;p=platform%2Fupstream%2Fgstreamer.git enable va even if tv profile Change-Id: Id01f971284d2c8848d62d1c9209adf08ca3d1587 --- diff --git a/packaging/gstreamer.spec b/packaging/gstreamer.spec index c16b110e7e..128fc12099 100644 --- a/packaging/gstreamer.spec +++ b/packaging/gstreamer.spec @@ -333,11 +333,11 @@ BuildRequires: pkgconfig(libxml-2.0) BuildRequires: pkgconfig(wayland-client) >= 1.0.0 BuildRequires: pkgconfig(wayland-cursor) >= 1.0.0 BuildRequires: pkgconfig(wayland-protocols) -BuildRequires: pkgconfig(libva) %endif %if %{with x} BuildRequires: pkgconfig(x11) %endif +BuildRequires: pkgconfig(libva) Requires: gstreamer >= %{version} %description -n gst-plugins-bad @@ -742,6 +742,7 @@ meson --auto-features=disabled --prefix=/usr --libdir=%{_libdir} --datadir=%{_da -D %{_bad_opt}videoframe_audiolevel=enabled \ -D %{_bad_opt}videoparsers=enabled \ -D %{_bad_opt}webrtc=enabled \ + -D %{_bad_opt}va=enabled \ %if %{with wayland} -D %{_bad_opt}wayland=enabled \ %endif @@ -762,7 +763,6 @@ meson --auto-features=disabled --prefix=/usr --libdir=%{_libdir} --datadir=%{_da -D %{_bad_opt}rtp=enabled \ -D %{_bad_opt}srt=enabled \ -D %{_bad_opt}smoothstreaming=enabled \ - -D %{_bad_opt}va=enabled \ %if 0%{?enable_gl:1} -D %{_bad_opt}gl=enabled \ %endif # gl diff --git a/subprojects/gst-plugins-bad/sys/meson.build b/subprojects/gst-plugins-bad/sys/meson.build index 74f0d50473..734eedc888 100644 --- a/subprojects/gst-plugins-bad/sys/meson.build +++ b/subprojects/gst-plugins-bad/sys/meson.build @@ -22,9 +22,9 @@ subdir('shm') subdir('tinyalsa') subdir('uvch264') subdir('v4l2codecs') -if not (get_option('tv-profile')) +# if not (get_option('tv-profile')) subdir('va') -endif +# endif subdir('wasapi') subdir('wasapi2') subdir('wic')