From c259b8878e6c738a3441fb221108f2dd717d989a Mon Sep 17 00:00:00 2001 From: Nicolas Dufresne Date: Fri, 27 Jul 2018 22:33:47 -0400 Subject: [PATCH] meson: mjpegtools_api should have been 20K not 2K This was miss-ported when the options got added. The requires version was properly set to 2000 before. --- ext/mpeg2enc/meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/mpeg2enc/meson.build b/ext/mpeg2enc/meson.build index 69011a470c..9819050bc9 100644 --- a/ext/mpeg2enc/meson.build +++ b/ext/mpeg2enc/meson.build @@ -11,7 +11,7 @@ if mjpegtools_dep.found() and mpeg2enc_dep.found() 'gstmpeg2encoder.cc', 'gstmpeg2encstreamwriter.cc', 'gstmpeg2encpicturereader.cc', - cpp_args : gst_plugins_bad_args + ['-DGST_MJPEGTOOLS_API=2000'], + cpp_args : gst_plugins_bad_args + ['-DGST_MJPEGTOOLS_API=20000'], link_args : noseh_link_args, include_directories : [configinc, libsinc], dependencies : [gstvideo_dep, mjpegtools_dep, mpeg2enc_dep],