xbmc: update to xbmc-c68abb0

Signed-off-by: Stephan Raue <stephan@openelec.tv>
This commit is contained in:
Stephan Raue 2013-05-05 21:43:00 +02:00
parent 2c00390897
commit 78e6975f13
12 changed files with 1590 additions and 2312 deletions

View File

@ -21,7 +21,7 @@
PKG_NAME="xbmc-theme-Confluence"
PKG_VERSION="12.2.0"
if [ "$XBMC" = "master" ]; then
PKG_VERSION="83b16d0"
PKG_VERSION="c68abb0"
fi
PKG_REV="1"
PKG_ARCH="any"

View File

@ -321,8 +321,8 @@ export gl_cv_func_gettimeofday_clobber=no
# setup default skin inside the sources
sed -i -e "s|skin.confluence|$SKIN_DIR|g" xbmc/settings/Settings.h
make externals
make xbmc.bin
make -j1 V=1 externals
make -j1 V=1 xbmc.bin
if [ "$DISPLAYSERVER" = "xorg-server" ]; then
make xbmc-xrandr

View File

@ -21,7 +21,7 @@
PKG_NAME="xbmc"
PKG_VERSION="12.2.0"
if [ "$XBMC" = "master" ]; then
PKG_VERSION="83b16d0"
PKG_VERSION="c68abb0"
fi
PKG_REV="1"
PKG_ARCH="any"
@ -144,8 +144,13 @@ if [ "$AIRPLAY_SUPPORT" = yes ]; then
fi
if [ "$AIRTUNES_SUPPORT" = yes ]; then
PKG_BUILD_DEPENDS="$PKG_BUILD_DEPENDS libshairport"
PKG_DEPENDS="$PKG_DEPENDS libshairport"
if [ "$XBMC" = master ]; then
PKG_BUILD_DEPENDS="$PKG_BUILD_DEPENDS libshairplay"
PKG_DEPENDS="$PKG_DEPENDS libshairplay"
else
PKG_BUILD_DEPENDS="$PKG_BUILD_DEPENDS libshairport"
PKG_DEPENDS="$PKG_DEPENDS libshairport"
fi
fi
if [ "$NFS_SUPPORT" = yes ]; then

View File

@ -1,45 +0,0 @@
From 2280026c33ad6334e0b03b0eee1e35e8de4c5921 Mon Sep 17 00:00:00 2001
From: vicbitter <xbmcvb@gmail.com>
Date: Fri, 12 Apr 2013 11:06:45 +0100
Subject: [PATCH] ffmpeg 1.2 - rollback ff_read_frame_flush to
av_read_frame_flush for external ffmpeg
---
lib/DllAvFormat.h | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/lib/DllAvFormat.h b/lib/DllAvFormat.h
index 7fc831e..7937421 100644
--- a/lib/DllAvFormat.h
+++ b/lib/DllAvFormat.h
@@ -43,8 +43,7 @@ extern "C" {
#include <ffmpeg/avformat.h>
#endif
/* av_read_frame_flush() is defined for us in lib/xbmc-dll-symbols/DllAvFormat.c */
- // void av_read_frame_flush(AVFormatContext *s); // av_read_frame_flush decrepated
- void ff_read_frame_flush(AVFormatContext *s); // internal replacement
+ void av_read_frame_flush(AVFormatContext *s);
#else
#include "libavformat/avformat.h"
void ff_read_frame_flush(AVFormatContext *s); // internal replacement
@@ -46,7 +46,7 @@ extern "C" {
void av_read_frame_flush(AVFormatContext *s);
#else
#include "libavformat/avformat.h"
- void ff_read_frame_flush(AVFormatContext *s); // internal replacement
+ void av_read_frame_flush(AVFormatContext *s);
#endif
}
@@ -117,7 +117,7 @@ public:
virtual AVInputFormat *av_find_input_format(const char *short_name) { return ::av_find_input_format(short_name); }
virtual void avformat_close_input(AVFormatContext **s) { ::avformat_close_input(s); }
virtual int av_read_frame(AVFormatContext *s, AVPacket *pkt) { return ::av_read_frame(s, pkt); }
- virtual void av_read_frame_flush(AVFormatContext *s) { ::ff_read_frame_flush(s); } // av_read_frame_flush decrepated
+ virtual void av_read_frame_flush(AVFormatContext *s) { ::av_read_frame_flush(s); }
virtual int av_read_play(AVFormatContext *s) { return ::av_read_play(s); }
virtual int av_read_pause(AVFormatContext *s) { return ::av_read_pause(s); }
virtual int av_seek_frame(AVFormatContext *s, int stream_index, int64_t timestamp, int flags) { return ::av_seek_frame(s, stream_index, timestamp, flags); }
--
1.7.10.4