diff options
author | Nicolas Dufresne <nicolas.dufresne@collabora.com> | 2018-07-27 22:33:47 -0400 |
---|---|---|
committer | Nicolas Dufresne <nicolas.dufresne@collabora.com> | 2018-07-27 22:33:47 -0400 |
commit | c259b8878e6c738a3441fb221108f2dd717d989a (patch) | |
tree | 717ceaff4766412cb528bc0e227dc123677d678b /ext/mpeg2enc | |
parent | 638677cca6a56357ff64788e0997b397237212ab (diff) |
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.
Diffstat (limited to 'ext/mpeg2enc')
-rw-r--r-- | ext/mpeg2enc/meson.build | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/mpeg2enc/meson.build b/ext/mpeg2enc/meson.build index 69011a470..9819050bc 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], |