mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 20:21:24 +00:00
examples: codecparser: fix compiler warnings for unstable API use
Breaks build bots and build with --werror
This commit is contained in:
parent
18e4e80b7d
commit
47b68176a1
1 changed files with 2 additions and 2 deletions
|
@ -1,11 +1,11 @@
|
|||
executable('parse-jpeg', 'parse-jpeg.c',
|
||||
include_directories : [configinc],
|
||||
dependencies : [gstcodecparsers_dep, gst_dep],
|
||||
c_args : gst_plugins_bad_args,
|
||||
c_args : gst_plugins_bad_args + ['-DGST_USE_UNSTABLE_API'],
|
||||
install: false)
|
||||
|
||||
executable('parse-vp8', 'parse-vp8.c',
|
||||
include_directories : [configinc],
|
||||
dependencies : [gstcodecparsers_dep, gst_dep],
|
||||
c_args : gst_plugins_bad_args,
|
||||
c_args : gst_plugins_bad_args + ['-DGST_USE_UNSTABLE_API'],
|
||||
install: false)
|
||||
|
|
Loading…
Reference in a new issue