Merge pull request #4672 from lrusak/kodi-16

Thanks :)
This commit is contained in:
Christian Hewitt 2016-02-03 14:36:31 +04:00
commit d6fd1efc64
16 changed files with 16 additions and 72 deletions

View File

@ -17,7 +17,7 @@
################################################################################
PKG_NAME="adsp.basic"
PKG_VERSION="cb56e0e"
PKG_VERSION="598900a"
PKG_REV="1"
PKG_ARCH="any"
PKG_LICENSE="GPL"

View File

@ -17,7 +17,7 @@
################################################################################
PKG_NAME="adsp.biquad.filters"
PKG_VERSION="d63d8ac"
PKG_VERSION="71087c4"
PKG_REV="1"
PKG_ARCH="any"
PKG_LICENSE="GPL"

View File

@ -17,7 +17,7 @@
################################################################################
PKG_NAME="adsp.freesurround"
PKG_VERSION="08b691d"
PKG_VERSION="990fee2"
PKG_REV="1"
PKG_ARCH="any"
PKG_LICENSE="GPL"

View File

@ -17,7 +17,7 @@
################################################################################
PKG_NAME="audiodecoder.ncsf"
PKG_VERSION="b452778"
PKG_VERSION="db9517f"
PKG_REV="1"
PKG_ARCH="any"
PKG_LICENSE="GPL"

View File

@ -17,7 +17,7 @@
################################################################################
PKG_NAME="audiodecoder.organya"
PKG_VERSION="ed0d3a5"
PKG_VERSION="88d8a0f"
PKG_REV="1"
PKG_ARCH="any"
PKG_LICENSE="GPL"

View File

@ -17,7 +17,7 @@
################################################################################
PKG_NAME="audiodecoder.qsf"
PKG_VERSION="83b18d7"
PKG_VERSION="4330729"
PKG_REV="1"
PKG_ARCH="any"
PKG_LICENSE="GPL"

View File

@ -17,7 +17,7 @@
################################################################################
PKG_NAME="pvr.dvblink"
PKG_VERSION="3524d32"
PKG_VERSION="dcec4c8"
PKG_REV="1"
PKG_ARCH="any"
PKG_LICENSE="GPL"

View File

@ -17,7 +17,7 @@
################################################################################
PKG_NAME="pvr.hts"
PKG_VERSION="fcca45f"
PKG_VERSION="3274354"
PKG_REV="1"
PKG_ARCH="any"
PKG_LICENSE="GPL"

View File

@ -17,7 +17,7 @@
################################################################################
PKG_NAME="pvr.mediaportal.tvserver"
PKG_VERSION="2a79f5d"
PKG_VERSION="58a3d3d"
PKG_REV="1"
PKG_ARCH="any"
PKG_LICENSE="GPL"

View File

@ -17,7 +17,7 @@
################################################################################
PKG_NAME="pvr.mythtv"
PKG_VERSION="e012168"
PKG_VERSION="74d5409"
PKG_REV="1"
PKG_ARCH="any"
PKG_LICENSE="GPL"

View File

@ -17,7 +17,7 @@
################################################################################
PKG_NAME="pvr.nextpvr"
PKG_VERSION="a5a97c8"
PKG_VERSION="82462e7"
PKG_REV="1"
PKG_ARCH="any"
PKG_LICENSE="GPL"

View File

@ -17,7 +17,7 @@
################################################################################
PKG_NAME="pvr.vdr.vnsi"
PKG_VERSION="1747e47"
PKG_VERSION="927c49c"
PKG_REV="1"
PKG_ARCH="any"
PKG_LICENSE="GPL"

View File

@ -17,7 +17,7 @@
################################################################################
PKG_NAME="kodi-theme-Confluence"
PKG_VERSION="16.0-rc1-1f22732"
PKG_VERSION="16.0-rc3-34d1e49"
PKG_REV="1"
PKG_ARCH="any"
PKG_LICENSE="GPL"

View File

@ -17,7 +17,7 @@
################################################################################
PKG_NAME="kodi"
PKG_VERSION="16.0-rc1-1f22732"
PKG_VERSION="16.0-rc3-34d1e49"
PKG_REV="1"
PKG_ARCH="any"
PKG_LICENSE="GPL"

View File

@ -1,56 +0,0 @@
Arnold Neugebauer Zweikeks jpc_husky@yahoo.de
bug fix for http://trac.kodi.tv #16515
http://openelec.tv/forum/87-vdr-addon/79303-need-help-live-tv-freeze-after-a-short-play
diff -Naur kodi-16.0-rc1-1f22732.orig/xbmc/cores/dvdplayer/DVDCodecs/Video/AMLCodec.cpp kodi-16.0-rc1-1f22732/xbmc/cores/dvdplayer/DVDCodecs/Video/AMLCodec.cpp
--- kodi-16.0-rc1-1f22732.orig/xbmc/cores/dvdplayer/DVDCodecs/Video/AMLCodec.cpp 2016-01-31 13:14:30.374861770 +0100
+++ kodi-16.0-rc1-1f22732/xbmc/cores/dvdplayer/DVDCodecs/Video/AMLCodec.cpp 2016-01-30 20:13:20.699416700 +0100
@@ -150,11 +150,11 @@
// order matters, so pay attention
// to codec_para_t in codec_types.h
- CBitstreamConverter::write_bits(&bs, 32, 0); // CODEC_HANDLE handle
- CBitstreamConverter::write_bits(&bs, 32, 0); // CODEC_HANDLE cntl_handle
- CBitstreamConverter::write_bits(&bs, 32, 0); // CODEC_HANDLE sub_handle
+ CBitstreamConverter::write_bits(&bs, 32, -1); // CODEC_HANDLE handle, init to invalid
+ CBitstreamConverter::write_bits(&bs, 32, -1); // CODEC_HANDLE cntl_handle
+ CBitstreamConverter::write_bits(&bs, 32, -1); // CODEC_HANDLE sub_handle
- CBitstreamConverter::write_bits(&bs, 32, 0); // CODEC_HANDLE audio_utils_handle
+ CBitstreamConverter::write_bits(&bs, 32, -1); // CODEC_HANDLE audio_utils_handle
CBitstreamConverter::write_bits(&bs, 32, p_in->stream_type); // stream_type_t stream_type
@@ -199,6 +199,10 @@
#else
// direct struct usage, we do not know which flavor
// so just use what we get from headers and pray.
+ p_out->handle = -1; //init to invalid
+ p_out->cntl_handle = -1;
+ p_out->sub_handle = -1;
+ p_out->audio_utils_handle = -1;
p_out->has_video = 1;
p_out->noblock = p_in->noblock;
p_out->video_pid = p_in->video_pid;
@@ -1389,6 +1393,10 @@
m_dll->Load();
}
am_private->m_dll = m_dll;
+ am_private->vcodec.handle = -1; //init to invalid
+ am_private->vcodec.cntl_handle = -1;
+ am_private->vcodec.sub_handle = -1;
+ am_private->vcodec.audio_utils_handle = -1;
}
@@ -1667,10 +1675,6 @@
SysfsUtils::SetInt("/sys/class/tsync/enable", 1);
ShowMainVideo(false);
-
- // add a little delay after closing in case
- // we are reopened too fast.
- usleep(500 * 1000);
}
void CAMLCodec::Reset()

View File

@ -17,12 +17,12 @@
################################################################################
PKG_NAME="platform"
PKG_VERSION="1.0.10"
PKG_VERSION="081032f"
PKG_REV="1"
PKG_ARCH="any"
PKG_LICENSE="GPL"
PKG_SITE="http://www.kodi.tv"
PKG_URL="http://mirrors.xbmc.org/build-deps/sources/$PKG_NAME-$PKG_VERSION.tar.gz"
PKG_URL="$DISTRO_SRC/$PKG_NAME-$PKG_VERSION.tar.xz"
PKG_DEPENDS_TARGET="toolchain"
PKG_PRIORITY="optional"
PKG_SECTION="multimedia"