Author: jarod
Update of /cvs/free/rpms/mythtv/F-14
In directory se02.es.rpmfusion.net:/tmp/cvs-serv26858
Modified Files:
mythtv-0.24-svnfixes.patch mythtv.spec
Log Message:
* Mon Nov 22 2010 Jarod Wilson <jarod(a)wilsonet.com> 0.24-2
- Update to release-0-24-fixes, svn revision 27317
- Add preview image fixup patch from ticket #9256
- Add alsa passthru device patches from trunk r27306 and r27307
mythtv-0.24-svnfixes.patch:
VERSION
| 1
bindings/perl/IO/Socket/INET/MythTV.pm
| 4
bindings/perl/MythTV.pm
| 4
bindings/perl/MythTV/Channel.pm
| 4
bindings/perl/MythTV/Program.pm
| 4
bindings/perl/MythTV/Recording.pm
| 4
bindings/perl/MythTV/StorageGroup.pm
| 4
bindings/python/MythTV/mythproto.py
| 2
bindings/python/MythTV/system.py
| 7
contrib/icons/master_iconmap/channel_icons.pl
| 4
contrib/maintenance/flush_deleted_recgroup.pl
| 4
contrib/maintenance/optimize_mythdb.pl
| 4
contrib/user_jobs/mythlink.pl
| 4
libs/libmyth/audiooutput.cpp
| 6
libs/libmyth/audiooutput.h
| 1
libs/libmyth/audiooutputbase.cpp
| 16 -
libs/libmyth/audiooutputsettings.cpp
| 9
libs/libmythsoundtouch/AAFilter.cpp
| 2
libs/libmythsoundtouch/AAFilter.h
| 2
libs/libmythsoundtouch/BPMDetect.h
| 2
libs/libmythsoundtouch/FIFOSampleBuffer.cpp
| 2
libs/libmythsoundtouch/FIFOSampleBuffer.h
| 2
libs/libmythsoundtouch/FIFOSamplePipe.h
| 2
libs/libmythsoundtouch/FIRFilter.cpp
| 2
libs/libmythsoundtouch/FIRFilter.h
| 2
libs/libmythsoundtouch/RateTransposer.cpp
| 2
libs/libmythsoundtouch/RateTransposer.h
| 2
libs/libmythsoundtouch/STTypes.h
| 2
libs/libmythsoundtouch/SoundTouch.cpp
| 2
libs/libmythsoundtouch/SoundTouch.h
| 2
libs/libmythsoundtouch/TDStretch.cpp
| 2
libs/libmythsoundtouch/TDStretch.h
| 2
libs/libmythsoundtouch/cpu_detect.h
| 2
libs/libmythsoundtouch/cpu_detect_x86_gcc.cpp
| 2
libs/libmythsoundtouch/mmx_gcc.cpp
| 2
libs/libmythtv/audioplayer.cpp
| 29 +-
libs/libmythtv/avformatdecoder.cpp
| 2
libs/libmythtv/libmythtv.pro
| 2
libs/libmythtv/mythplayer.h
| 5
libs/libmythtv/playercontext.cpp
| 2
libs/libmythtv/recordingprofile.cpp
| 8
libs/libmythtv/recordingprofile.h
| 1
libs/libmythtv/teletextdecoder.cpp
| 14 +
libs/libmythtv/teletextscreen.cpp
| 6
libs/libmythtv/tv_play.cpp
| 13 +
libs/libmythui/mythrender_opengl.cpp
| 6
libs/libmythui/mythrender_opengl.h
| 4
libs/libmythui/mythuibuttonlist.cpp
| 2
libs/libmythui/mythuiimage.cpp
| 16 +
programs/mythfrontend/globalsettings.cpp
| 49 +++-
programs/mythfrontend/globalsettings.h
| 2
programs/scripts/internetcontent/nv_python_libs/bbciplayer/bbciplayer_api.py
| 18 +
programs/scripts/internetcontent/nv_python_libs/common/common_api.py
| 17 -
programs/scripts/internetcontent/nv_python_libs/configs/HTML/mtv.html
| 39 +++
programs/scripts/internetcontent/nv_python_libs/configs/XML/bbc_config.xml
| 5
programs/scripts/internetcontent/nv_python_libs/configs/XML/defaultUserPrefs/trailersMashup.xml
| 2
programs/scripts/internetcontent/nv_python_libs/configs/XSLT/tributecaHTML_item.xsl
| 100 +++++-----
programs/scripts/internetcontent/nv_python_libs/mtv/mtv_api.py
| 18 +
programs/scripts/internetcontent/nv_python_libs/xsltfunctions/tributeca_api.py
| 39 +++
version.sh
| 2
60 files changed, 341 insertions(+), 178 deletions(-)
Index: mythtv-0.24-svnfixes.patch
===================================================================
RCS file: /cvs/free/rpms/mythtv/F-14/mythtv-0.24-svnfixes.patch,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- mythtv-0.24-svnfixes.patch 22 Nov 2010 05:38:57 -0000 1.1
+++ mythtv-0.24-svnfixes.patch 22 Nov 2010 05:44:31 -0000 1.2
@@ -580,6 +580,42 @@
}
}
else if (pipState == kPBPRight)
+diff -Naurp mythtv-0.24.orig/libs/libmythtv/recordingprofile.cpp
mythtv-0.24.new/libs/libmythtv/recordingprofile.cpp
+--- mythtv-0.24.orig/libs/libmythtv/recordingprofile.cpp 2010-09-11 09:53:10.000000000
-0400
++++ mythtv-0.24.new/libs/libmythtv/recordingprofile.cpp 2010-11-21 17:41:37.327470000
-0500
+@@ -1166,6 +1166,7 @@ class RecordingProfilePopup
+ }
+ };
+
++// id and name will be deleted by ConfigurationGroup's destructor
+ RecordingProfile::RecordingProfile(QString profName)
+ : id(new ID()), name(new Name(*this)),
+ imageSize(NULL), videoSettings(NULL),
+@@ -1216,13 +1217,6 @@ RecordingProfile::RecordingProfile(QStri
+ addChild(profile);
+ };
+
+-RecordingProfile::~RecordingProfile()
+-{
+- id->deleteLater();
+- delete name;
+- name = NULL;
+-}
+-
+ void RecordingProfile::ResizeTranscode(bool resize)
+ {
+ MythWizard *wizard = (MythWizard *)dialog;
+diff -Naurp mythtv-0.24.orig/libs/libmythtv/recordingprofile.h
mythtv-0.24.new/libs/libmythtv/recordingprofile.h
+--- mythtv-0.24.orig/libs/libmythtv/recordingprofile.h 2010-09-18 22:17:00.000000000
-0400
++++ mythtv-0.24.new/libs/libmythtv/recordingprofile.h 2010-11-21 17:41:37.327470000
-0500
+@@ -85,7 +85,6 @@ class MPUBLIC RecordingProfile : public
+ public:
+ // initializers
+ RecordingProfile(QString profName = QString());
+- ~RecordingProfile();
+ virtual void loadByID(int id);
+ virtual bool loadByType(const QString &name, const QString &cardtype);
+ virtual bool loadByGroup(const QString &name, const QString &group);
diff -Naurp mythtv-0.24.orig/libs/libmythtv/teletextdecoder.cpp
mythtv-0.24.new/libs/libmythtv/teletextdecoder.cpp
--- mythtv-0.24.orig/libs/libmythtv/teletextdecoder.cpp 2010-11-07 23:31:54.000000000
-0500
+++ mythtv-0.24.new/libs/libmythtv/teletextdecoder.cpp 2010-11-14 09:17:38.338032000
-0500
Index: mythtv.spec
===================================================================
RCS file: /cvs/free/rpms/mythtv/F-14/mythtv.spec,v
retrieving revision 1.82
retrieving revision 1.83
diff -u -r1.82 -r1.83
--- mythtv.spec 22 Nov 2010 05:38:58 -0000 1.82
+++ mythtv.spec 22 Nov 2010 05:44:31 -0000 1.83
@@ -66,7 +66,7 @@
# SVN Revision number and branch ID
# 0.24 release: r27163
-%define _svnrev r27307
+%define _svnrev r27317
%define branch release-0-24-fixes
#
@@ -1458,8 +1458,8 @@
################################################################################
%changelog
-* Sat Nov 20 2010 Jarod Wilson <jarod(a)wilsonet.com> 0.24-2
-- Update to release-0-24-fixes, svn revision 27307
+* Mon Nov 22 2010 Jarod Wilson <jarod(a)wilsonet.com> 0.24-2
+- Update to release-0-24-fixes, svn revision 27317
- Add preview image fixup patch from ticket #9256
- Add alsa passthru device patches from trunk r27306 and r27307
Show replies by date