You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/sci-electronics/gazebo/files/ffmpeg4.patch

17 lines
619 B

Index: gazebo-11.10.1/gazebo/common/VideoEncoder.cc
===================================================================
--- gazebo-11.10.1.orig/gazebo/common/VideoEncoder.cc
+++ gazebo-11.10.1/gazebo/common/VideoEncoder.cc
@@ -224,7 +224,10 @@ bool VideoEncoder::Start(const std::stri
// The remainder of this function handles FFMPEG initialization of a video
// stream
- const AVOutputFormat *outputFormat = nullptr;
+#if LIBAVFORMAT_VERSION_MAJOR >= 59
+ const
+#endif
+ AVOutputFormat *outputFormat = nullptr;
// This 'if' and 'free' are just for safety. We chech the value of formatCtx
// below.