mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-22 17:51:16 +00:00
gst-plugins-base: meson: Fix the condition to skip theoradec test
Due to operator priority "not a and b" is interpreted "(not a) and b". Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6260>
This commit is contained in:
parent
8859f257c2
commit
7e8873c100
1 changed files with 1 additions and 1 deletions
|
@ -74,7 +74,7 @@ if host_machine.system() != 'windows'
|
|||
[ 'elements/multisocketsink.c', not core_conf.has('HAVE_SYS_SOCKET_H') or not core_conf.has('HAVE_UNISTD_H') ],
|
||||
[ 'elements/playbin-complex.c', not ogg_dep.found() ],
|
||||
[ 'elements/textoverlay.c', not pango_dep.found() ],
|
||||
[ 'elements/theoradec.c', not ogg_dep.found() and theoradec_dep.found() ],
|
||||
[ 'elements/theoradec.c', not ogg_dep.found() or not theoradec_dep.found() ],
|
||||
[ 'elements/vorbisdec.c', not vorbis_dep.found(), [ vorbis_dep, vorbisenc_dep ] ],
|
||||
[ 'elements/vorbistag.c', not vorbisenc_dep.found(), [ vorbis_dep, vorbisenc_dep ] ],
|
||||
[ 'pipelines/oggmux.c', not ogg_dep.found(), [ ogg_dep, ] ],
|
||||
|
|
Loading…
Reference in a new issue