diff -Nru mythtv-0.28.1+fixes.20171023.7811a7a/debian/changelog mythtv-0.28.1+fixes.20171027.7c931f17/debian/changelog --- mythtv-0.28.1+fixes.20171023.7811a7a/debian/changelog 2017-10-23 01:06:18.000000000 +0000 +++ mythtv-0.28.1+fixes.20171027.7c931f17/debian/changelog 2017-10-27 01:06:31.000000000 +0000 @@ -1,19 +1,18 @@ -mythtv (2:0.28.1+fixes.20171023.7811a7a-0ubuntu0mythbuntu3) trusty; urgency=medium +mythtv (2:0.28.1+fixes.20171027.7c931f17-0ubuntu0mythbuntu3) trusty; urgency=medium * Scripted Build from fixes git packaging [4f6bcc5] - * Packaging changes between 20160325 and 20171023: + * Packaging changes between 20160325 and 20171027: * [dd75c01] use init script to be more compatible to systemd/upstart in backports * [b7c38ab] make sure to set buildroot * [7a4983b] cover one more pro file for mysql5.7 fix * [8d19bc0] let mysql-server-5.7 resolve things * [35b1bba] Add in support to compile against mysql 5.7 (LP: #1528583) - * Automated Build: New upstream checkout (7811a7a) - * >>Upstream changes since last upload (41cd865): - * [7811a7a] MythMusic: stop the player on first error when playing - radio streams + * Automated Build: New upstream checkout (7c931f17) + * >>Upstream changes since last upload (7811a7a): + * [7c931f17] Fix memory corruption on Raspberry Pi Playback - -- Mythbuntu Automated Package Builder Mon, 23 Oct 2017 01:06:16 +0000 + -- Mythbuntu Automated Package Builder Fri, 27 Oct 2017 01:06:29 +0000 mythtv (2:0.28.0+fixes.20160325.2520617-0ubuntu3) xenial; urgency=medium diff -Nru mythtv-0.28.1+fixes.20171023.7811a7a/debian/DESCRIBE mythtv-0.28.1+fixes.20171027.7c931f17/debian/DESCRIBE --- mythtv-0.28.1+fixes.20171023.7811a7a/debian/DESCRIBE 2017-10-23 01:06:12.000000000 +0000 +++ mythtv-0.28.1+fixes.20171027.7c931f17/debian/DESCRIBE 2017-10-27 01:06:25.000000000 +0000 @@ -1,2 +1,2 @@ BRANCH="fixes/0.28" -SOURCE_VERSION="v0.28.1-58-g7811a7a" +SOURCE_VERSION="v0.28.1-59-g7c931f17" diff -Nru mythtv-0.28.1+fixes.20171023.7811a7a/mythtv/libs/libmythtv/videoout_omx.cpp mythtv-0.28.1+fixes.20171027.7c931f17/mythtv/libs/libmythtv/videoout_omx.cpp --- mythtv-0.28.1+fixes.20171023.7811a7a/mythtv/libs/libmythtv/videoout_omx.cpp 2017-10-23 01:00:48.000000000 +0000 +++ mythtv-0.28.1+fixes.20171027.7c931f17/mythtv/libs/libmythtv/videoout_omx.cpp 2017-10-27 01:00:58.000000000 +0000 @@ -1,6 +1,5 @@ -#ifdef USING_OPENGLES -#define OSD_EGL // OSD with EGL -#endif + +#include "videoout_omx.h" #ifdef OSD_EGL /* includes QJson with enum value named Bool, must go before EGL/egl.h */ # include "mythpainter_ogl.h" @@ -10,8 +9,6 @@ /* must go before X11/X.h due to #define None 0L */ #include "privatedecoder_omx.h" // For PrivateDecoderOMX::s_name -#include "videoout_omx.h" - #include #include #include // max/min diff -Nru mythtv-0.28.1+fixes.20171023.7811a7a/mythtv/libs/libmythtv/videoout_omx.h mythtv-0.28.1+fixes.20171027.7c931f17/mythtv/libs/libmythtv/videoout_omx.h --- mythtv-0.28.1+fixes.20171023.7811a7a/mythtv/libs/libmythtv/videoout_omx.h 2017-10-23 01:00:48.000000000 +0000 +++ mythtv-0.28.1+fixes.20171027.7c931f17/mythtv/libs/libmythtv/videoout_omx.h 2017-10-27 01:00:58.000000000 +0000 @@ -1,6 +1,10 @@ #ifndef VIDEOOUT_OMX_H #define VIDEOOUT_OMX_H +#ifdef USING_OPENGLES +#define OSD_EGL // OSD with EGL +#endif + #include #include @@ -16,6 +20,7 @@ #ifdef OSD_EGL class MythOpenGLPainter; #endif +class MythScreenType; class VideoOutputOMX : public VideoOutput, private OMXComponentCtx {