zxing: Update decode hints usage for compatibility with ZXing >= 2.2
authorFrancisco Javier Velázquez-García <francisco.velazquez@appear.net>
Thu, 5 Dec 2024 12:39:38 +0000 (13:39 +0100)
committerBackport Bot <gitlab-backport-bot@gstreamer-foundation.org>
Thu, 5 Dec 2024 16:45:19 +0000 (16:45 +0000)
Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/8085>

subprojects/gst-plugins-bad/ext/zxing/gstzxing.cpp

index a8a0f7b49aa485483a898253f867e2567a408851..ef53d89fad604b5c4f2d47ca5f867eec789d1795 100644 (file)
@@ -354,7 +354,11 @@ gst_zxing_transform_frame_ip (GstVideoFilter * vfilter, GstVideoFrame * frame)
   GstZXing *zxing = GST_ZXING (vfilter);
   gpointer data;
   gint height, width;
-  DecodeHints hints;
+  #if ZXING_VERSION_MAJOR >= 2 && ZXING_VERSION_MINOR >= 2
+    ReaderOptions hints;
+  #else
+    DecodeHints hints;
+  #endif
 
   hints.setTryRotate(zxing->rotate);
   hints.setTryHarder(!zxing->faster);