games/yabause: Patched to fix build with ffmpeg 3.x.

Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
This commit is contained in:
Willy Sudiarto Raharjo 2017-04-14 21:21:49 +07:00
parent c4be6f532f
commit c12a3dcc11
2 changed files with 27 additions and 4 deletions

View File

@ -0,0 +1,20 @@
--- yabause-0.9.15/src/mpeg_card.c.orig 2017-04-14 21:15:44.908378882 +0700
+++ yabause-0.9.15/src/mpeg_card.c 2017-04-14 21:17:15.386497605 +0700
@@ -535,7 +535,7 @@
yab_mpeg.audio.context->channels = 2;
yab_mpeg.audio.context->sample_rate = 44100;
- ret = av_image_alloc(out_buf,out_linesize, 320, 240,PIX_FMT_RGB32, 1);
+ ret = av_image_alloc(out_buf,out_linesize, 320, 240,AV_PIX_FMT_RGB32, 1);
if(!ret)
assert(0);
@@ -561,7 +561,7 @@
//dest width, height, format
out_width,
out_height,
- PIX_FMT_RGB32,
+ AV_PIX_FMT_RGB32,
//flags
SWS_BILINEAR,
//source/dest filters

View File

@ -24,12 +24,12 @@
PRGNAM=yabause
VERSION=${VERSION:-0.9.15}
BUILD=${BUILD:-1}
BUILD=${BUILD:-2}
TAG=${TAG:-_SBo}
if [ -z "$ARCH" ]; then
case "$( uname -m )" in
i?86) ARCH=i486 ;;
i?86) ARCH=i586 ;;
arm*) ARCH=arm ;;
*) ARCH=$( uname -m ) ;;
esac
@ -40,8 +40,8 @@ TMP=${TMP:-/tmp/SBo}
PKG=$TMP/package-$PRGNAM
OUTPUT=${OUTPUT:-/tmp}
if [ "$ARCH" = "i486" ]; then
SLKCFLAGS="-O2 -march=i486 -mtune=i686"
if [ "$ARCH" = "i586" ]; then
SLKCFLAGS="-O2 -march=i586 -mtune=i686"
LIBDIRSUFFIX=""
elif [ "$ARCH" = "i686" ]; then
SLKCFLAGS="-O2 -march=i686 -mtune=i686"
@ -82,6 +82,9 @@ for pic in $(find . -name "*\.png");do
mv ${pic}.new $pic
done
# Patch against ffmpeg 3
patch -p1 < $CWD/ffmpeg3.patch
mkdir build
cd build
cmake -G "Unix Makefiles" \