summaryrefslogtreecommitdiff
path: root/games-emulation/ppsspp/files
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2018-09-21 18:00:10 +0100
committerV3n3RiX <venerix@redcorelinux.org>2018-09-21 18:00:10 +0100
commit265dbe5dbc14c199299496c6db8fce3f76647015 (patch)
treeab18b5617d138f6684566b619405090989d55a2c /games-emulation/ppsspp/files
parent586819755b4dbfdffdc8a725ab7c0f86095b8489 (diff)
gentoo resync : 21.09.2018
Diffstat (limited to 'games-emulation/ppsspp/files')
-rw-r--r--games-emulation/ppsspp/files/ppsspp-1.5.4-ffmpeg-4.patch34
1 files changed, 34 insertions, 0 deletions
diff --git a/games-emulation/ppsspp/files/ppsspp-1.5.4-ffmpeg-4.patch b/games-emulation/ppsspp/files/ppsspp-1.5.4-ffmpeg-4.patch
new file mode 100644
index 000000000000..d738d4bc56c3
--- /dev/null
+++ b/games-emulation/ppsspp/files/ppsspp-1.5.4-ffmpeg-4.patch
@@ -0,0 +1,34 @@
+From 70c54a7d1ab15c0cf84a205b944db7e0339242e0 Mon Sep 17 00:00:00 2001
+From: Greg V <greg@unrelenting.technology>
+Date: Sat, 21 Apr 2018 16:44:45 +0300
+Subject: [PATCH] Fix build with ffmpeg 4.0
+
+---
+ Core/HLE/sceMpeg.cpp | 11 +++++++----
+ 1 file changed, 7 insertions(+), 4 deletions(-)
+
+diff --git a/Core/HLE/sceMpeg.cpp b/Core/HLE/sceMpeg.cpp
+index 592320515e..ae309d7b2e 100644
+--- a/Core/HLE/sceMpeg.cpp
++++ b/Core/HLE/sceMpeg.cpp
+@@ -884,13 +884,16 @@ class H264Frames{
+ }
+ };
+ #ifndef USE_FFMPEG
+-#define FF_INPUT_BUFFER_PADDING_SIZE 16
++#define AV_INPUT_BUFFER_PADDING_SIZE 16
++#endif
++#ifndef AV_INPUT_BUFFER_PADDING_SIZE
++#define AV_INPUT_BUFFER_PADDING_SIZE FF_INPUT_BUFFER_PADDING_SIZE
+ #endif
+ void addpadding(){
+- u8* str = new u8[size + FF_INPUT_BUFFER_PADDING_SIZE];
++ u8* str = new u8[size + AV_INPUT_BUFFER_PADDING_SIZE];
+ memcpy(str, stream, size);
+- memset(str + size, 0, FF_INPUT_BUFFER_PADDING_SIZE);
+- size += FF_INPUT_BUFFER_PADDING_SIZE;
++ memset(str + size, 0, AV_INPUT_BUFFER_PADDING_SIZE);
++ size += AV_INPUT_BUFFER_PADDING_SIZE;
+ delete[] stream;
+ stream = str;
+ }