summaryrefslogtreecommitdiffstats
path: root/network/MEGAsync/megasync-4.7.1.0_ffmpeg5.patch
diff options
context:
space:
mode:
Diffstat (limited to 'network/MEGAsync/megasync-4.7.1.0_ffmpeg5.patch')
-rw-r--r--network/MEGAsync/megasync-4.7.1.0_ffmpeg5.patch19
1 files changed, 19 insertions, 0 deletions
diff --git a/network/MEGAsync/megasync-4.7.1.0_ffmpeg5.patch b/network/MEGAsync/megasync-4.7.1.0_ffmpeg5.patch
new file mode 100644
index 0000000000..ea5ad2a3e3
--- /dev/null
+++ b/network/MEGAsync/megasync-4.7.1.0_ffmpeg5.patch
@@ -0,0 +1,19 @@
+--- MEGAsync-4.7.1.0_Win/src/MEGASync/mega/src/gfx/freeimage.cpp 2022-09-27 20:24:16.000000000 +0900
++++ MEGAsync-4.7.1.0_Win.New/src/MEGASync/mega/src/gfx/freeimage.cpp 2022-10-12 10:30:22.849460973 +0900
+@@ -313,7 +313,7 @@
+
+ // Find decoder for video stream
+ AVCodecID codecId = codecParm->codec_id;
+- AVCodec* decoder = avcodec_find_decoder(codecId);
++ auto decoder = avcodec_find_decoder(codecId);
+ if (!decoder)
+ {
+ LOG_warn << "Codec not found: " << codecId;
+@@ -330,7 +330,6 @@
+
+ // Force seeking to key frames
+ formatContext->seek2any = false;
+- videoStream->skip_to_keyframe = true;
+ if (decoder->capabilities & CAP_TRUNCATED)
+ {
+ codecContext->flags |= CAP_TRUNCATED;