rpms/mythtv/F-17 mythlogserver-segv.patch, NONE, 1.1 mythtv-0.26.0-types_h.patch, NONE, 1.1 ChangeLog, 1.4, 1.5 mythtv-0.26-fixes.patch, 1.1, 1.2 mythtv.spec, 1.100, 1.101

Richard Shaw hobbes1069 at rpmfusion.org
Wed Mar 6 16:42:14 CET 2013


Author: hobbes1069

Update of /cvs/free/rpms/mythtv/F-17
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv12835

Modified Files:
	ChangeLog mythtv-0.26-fixes.patch mythtv.spec 
Added Files:
	mythlogserver-segv.patch mythtv-0.26.0-types_h.patch 
Log Message:
* Tue Feb 26 2013 Richard Shaw <hobbes1069 at gmail.com> - 0.26.0-7
- Update to latest fixes/0.26, v0.26.0-111-g3944ca9.
- Add patch for mythlogserver segfault.
- Add patch for includes in bundled ffmpeg.
- Add conditionals for mariadb replacing mysql in rawhide (F19).


mythlogserver-segv.patch:
 logging.cpp |    9 ++++++++-
 1 file changed, 8 insertions(+), 1 deletion(-)

--- NEW FILE mythlogserver-segv.patch ---
diff --git a/mythtv/libs/libmythbase/logging.cpp b/mythtv/libs/libmythbase/logging.cpp
index d48a3a2..2407e45 100644
--- a/mythtv/libs/libmythbase/logging.cpp
+++ b/mythtv/libs/libmythbase/logging.cpp
@@ -328,8 +328,15 @@ void LoggerThread::run(void)
         {
             qRegisterMetaType<QList<QByteArray> >("QList<QByteArray>");
 
+            // Let m_zmqContext own the socket to prevent core dump in mythlogserver
+            // If this object takes ownership by calling:
+            // m_zmqSocket =
+            //     m_zmqContext->createSocket(nzmqt::ZMQSocket::TYP_DEALER, this);
+            // Qt will delete the socket when our destructor is called.
+            // Later, Qt's event loop will post a destroyed event to m_zmqContext
+            // which will call m_zmqSocket->disconnect() causing a core dump.
             m_zmqSocket =
-                m_zmqContext->createSocket(nzmqt::ZMQSocket::TYP_DEALER, this);
+                m_zmqContext->createSocket(nzmqt::ZMQSocket::TYP_DEALER);
             connect(m_zmqSocket,
                     SIGNAL(messageReceived(const QList<QByteArray>&)),
                     SLOT(messageReceived(const QList<QByteArray>&)),

mythtv-0.26.0-types_h.patch:
 alsa-audio-common.c |    1 +
 alsa-audio-enc.c    |    1 +
 2 files changed, 2 insertions(+)

--- NEW FILE mythtv-0.26.0-types_h.patch ---
diff -Naur MythTV-mythtv-d2f9798.orig/mythtv/external/FFmpeg/libavdevice/alsa-audio-common.c MythTV-mythtv-d2f9798/mythtv/external/FFmpeg/libavdevice/alsa-audio-common.c
--- MythTV-mythtv-d2f9798.orig/mythtv/external/FFmpeg/libavdevice/alsa-audio-common.c	2012-10-02 05:30:24.000000000 -0500
+++ MythTV-mythtv-d2f9798/mythtv/external/FFmpeg/libavdevice/alsa-audio-common.c	2013-03-06 08:00:05.197116477 -0600
@@ -28,6 +28,7 @@
  * @author Nicolas George ( nicolas george normalesup org )
  */
 
+#include <sys/types.h>
 #include <alsa/asoundlib.h>
 #include "avdevice.h"
 #include "libavutil/avassert.h"
diff -Naur MythTV-mythtv-d2f9798.orig/mythtv/external/FFmpeg/libavdevice/alsa-audio-enc.c MythTV-mythtv-d2f9798/mythtv/external/FFmpeg/libavdevice/alsa-audio-enc.c
--- MythTV-mythtv-d2f9798.orig/mythtv/external/FFmpeg/libavdevice/alsa-audio-enc.c	2012-10-02 05:30:24.000000000 -0500
+++ MythTV-mythtv-d2f9798/mythtv/external/FFmpeg/libavdevice/alsa-audio-enc.c	2013-03-06 08:16:22.113142230 -0600
@@ -37,6 +37,7 @@
  * which gives a low latency suitable for real-time playback.
  */
 
+#include <sys/types.h>
 #include <alsa/asoundlib.h>
 
 #include "libavformat/internal.h"


Index: ChangeLog
===================================================================
RCS file: /cvs/free/rpms/mythtv/F-17/ChangeLog,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- ChangeLog	29 Oct 2012 17:47:41 -0000	1.4
+++ ChangeLog	6 Mar 2013 15:42:12 -0000	1.5
@@ -1,3 +1,927 @@
+commit 3944ca9ad0f8df1a0240c5812e5b3b04431e7eac
+Author: John Poet <jpoet at mythtv.org>
+Date:   Wed Feb 13 15:39:46 2013 -0700
+
+    Cleanup some useless "discontinuity detected" messages following 87a15e1ce
+    
+    Closes #11328
+    (cherry picked from commit efc1e46a8a2d913a8070483178ca46293f0a4423)
+
+commit e54b9b6fd635df024f81c1d2f33956996c95c379
+Author: John Poet <jpoet at mythtv.org>
+Date:   Tue Feb 12 10:26:30 2013 -0700
+
+    DTVRecorder: buffer up each payload until we know if the payload is a
+    keyframe.
+    
+    Especially with H.264, we can be several packets into a payload before we
+    know if it is a keyframe or just a frame or something else.  Always buffer
+    the packets of a payload until we know what we are doing with the payload.
+    
+    If we need to switch ringbuffers, we now do it so the new file will start at
+    the beginning of the payload holding a keyframe.  Each file will also start
+    with a PAT/PMT if the "recorder" calls for it.
+    (cherry picked from commit 87a15e1ce40d81058ff221308d666d73b1517ff2)
+    
+    Conflicts:
+    	mythtv/libs/libmythtv/dtvrecorder.cpp
+    	mythtv/libs/libmythtv/recorders/iptvrecorder.cpp
+    	mythtv/libs/libmythtv/recorders/iptvrecorder.h
+
+commit 12c443eb1cd22cecd257ea61984fa2dfb31d4992
+Author: John Poet <jpoet at mythtv.org>
+Date:   Tue Feb 5 13:56:45 2013 -0700
+
+    SignalMonitor: Timeout if we don't get a lock in a reasonable amount of time.
+    (cherry picked from commit 6bae400b0bbeb539e6e9390517e1a90f8f6f13d4)
+
+commit fdcc9c202b85c7d00b13aa5ee1232113382110fa
+Author: Thomas Joiner <thomas.b.joiner at gmail.com>
+Date:   Sun Feb 10 19:41:06 2013 -0600
+
+    fix issue #10222: mythcommflag segfaulting
+    
+    The problem in issue #10222 is that it is adding the CODEC_FLAG2_FAST flag.  This causes unsafe functions to be used, causing a segfault. The proper way to fix this would probably be to figure out how to test for the "experimental speedups" flag, however I don't know the codebase well enough for this.
+    
+    I tested how this would affect the speed of mythcommflag on one of my recordings.  The results:
+    
+    Before removing flag:
+    real 2m13.123s
+    user 2m16.713s
+    sys 0m3.502s
+    
+    After removing flag:
+    real 2m13.021s
+    user 2m15.446s
+    sys 0m3.758s
+    
+    Signed-off-by: Stuart Auchterlonie <stuarta at squashedfrog.net>
+    (cherry-picked from 0026dda883ef50ab7f2fda7f2d2218bc56f094a7)
+
+commit e39b4d5b45155320bc1b62296560dab6c1705e73
+Merge: 43bb6d9 75fa1eb
+Author: Stuart Auchterlonie <stuarta at squashedfrog.net>
+Date:   Tue Feb 26 20:37:20 2013 +0000
+
+    Add AAC and AAC_LATM tages to mythtranscode info output
+    
+    Pull request: https://github.com/MythTV/mythtv/pull/33
+    Merge remote-tracking branch 'glidos/fixes/0.26' into fixes/0.26
+    
+    Refs #11380 and e78e59c6b2d71631e18027b9b9c84212744472bf
+    
+    Signed-off-by: Stuart Auchterlonie <stuarta at squashedfrog.net>
+
+commit 43bb6d9541578631182c54d4d944fc7d94dd8cb6
+Author: Stuart Auchterlonie <stuarta at squashedfrog.net>
+Date:   Tue Feb 26 00:16:32 2013 +0000
+
+    Make comparisons consistent
+    
+    Refs #11299
+
+commit 093bc647f4b8ca0b9e4bb85f2a336d95a734d122
+Author: Paul Harrison <mythtv at sky.com>
+Date:   Fri Jan 4 11:38:11 2013 +0000
+
+    MythArchive: update mythburn.py to work with the new mpeg2video codec name
+    
+    Refs #11299.
+    
+    Signed-off-by: Stuart Auchterlonie <stuarta at squashedfrog.net>
+    
+    (cherry picked from 13c3035d1fed13a37c42d872b1f8dafb2e6f556f)
+
+commit ca24c0c3246e70c16846771bb1480154043059d2
+Author: Paul Harrison <mythtv at sky.com>
+Date:   Fri Jan 4 11:03:35 2013 +0000
+
+    MythArchive: update mythburn.py to work with the updated encoding profiles
+    
+    Refs #11299.
+    
+    Signed-off-by: Stuart Auchterlonie <stuarta at squashedfrog.net>
+    
+    (cherry picked from a784b93f1d1c6edbc0b47ac578def5d3275171a8)
+
+commit 5bd998931ce84a31f462c28fda3c3af243b51777
+Author: Paul Harrison <mythtv at sky.com>
+Date:   Fri Jan 4 10:50:26 2013 +0000
+
+    MythArchive: update the encoding profiles to work with the current mythffmpeg
+    
+    Refs #11299.
+    
+    Signed-off-by: Stuart Auchterlonie <stuarta at squashedfrog.net>
+    
+    (cherry picked from 5a0e83a20e8f75612b86fb56039b7803a11afd1b)
+
+commit 7a2e60f90081771de6efd495590e3ec461885319
+Author: Jim Stichnoth <jstichnoth at mythtv.org>
+Date:   Mon Feb 25 06:08:35 2013 -0800
+
+    Bump binary version after cherry picking 86c22ed3d5c522bcecb88ecacd58104fc0dd6d8d
+
+commit 7bd6221e17f605d88df3e160075be903ad50508b
+Author: Jim Stichnoth <jstichnoth at mythtv.org>
+Date:   Wed Feb 20 14:14:41 2013 -0800
+
+    Fix h.264 frame/keyframe identification in the player.
+    
+    If a NAL unit that determines a frame start appears as the last NAL
+    unit in the packet, then the frame start is not identified until the
+    start of the next packet.  If this new packet has its own NAL unit
+    that determines a frame start, and that NAL unit is not at the end of
+    the packet, then only one frame start would be counted rather than
+    two.  This is fixed by returning the total number of frame starts,
+    rather than a bool.
+    
+    In theory, the same problem could exist in the recorder, but it
+    appears that the packets in the original recording may have some
+    trailing NAL units that are stripped by the ffmpeg libraries when
+    assembling the packet for the player, causing the situation not to
+    occur.
+    (cherry picked from commit 86c22ed3d5c522bcecb88ecacd58104fc0dd6d8d)
+
+commit 75fa1eb44ac97c4dbc1f46497b0631bbee45b130
+Author: Paul Gardiner <paul at glidos.site>
+Date:   Sat Apr 21 08:52:46 2012 +0100
+
+    Have mythtranscode report aac_latm
+
+commit c3fff6e88c1ab3c9e39483ef5101f83da38acff1
+Author: Raymond Wagner <rwagner at mythtv.org>
+Date:   Wed Feb 20 13:22:06 2013 -0500
+
+    Called methods against wrong object in destructor.
+    
+    Refs #11412
+    (cherry picked from commit e1f14a5380886c6ddf95379341aa0f56481b7587)
+
+commit 060094b10462c9c5494e66c31f4ad80d4dde6990
+Author: Raymond Wagner <rwagner at mythtv.org>
+Date:   Wed Feb 20 13:09:14 2013 -0500
+
+    Make sure forked process has stopped when deleting MythSystem
+    
+    This forces a termination in a forked MythSystem process when the
+    MythSystem object is destroyed, preventing a situation where the private
+    internal object tries to access resources from the no-longer-existent
+    parent object.
+    
+    Fixes #11412
+    (cherry picked from commit 9c51ad39a65eee7a3f985a127700fbc8473ffb4e)
+
+commit f20555091f7ad9cfc7ace955aab59d468156af11
+Author: Kenni Lund <klund at mythtv.org>
+Date:   Sat Feb 16 23:11:00 2013 +0100
+
+    Update the Danish translation of mythfrontend.
+
+commit 87f6f2c12e101f515cefc733bf944936be16174c
+Author: Kenni Lund <klund at mythtv.org>
+Date:   Sat Feb 16 23:07:44 2013 +0100
+
+    Make the string "Record at any time on any channel" translatable in 0.26-fixes.
+
+commit 64f0e4ec24eb52bbbd4318365b3252f9b462ade1
+Author: Jim Stichnoth <jstichnoth at mythtv.org>
+Date:   Sun Feb 10 09:35:52 2013 -0800
+
+    Improved cropping of the bottom 8 lines of 1088-line video.
+    
+    Refs #11358.  Reverts 9d9de7b75d5354c9130526311a0c74d7172ebe6d and
+    cleans up the bottom 8 lines by applying a crop filter to the source.
+    This is tested for the XVideo output method.
+    
+    The VDPAU output method does not use the standard filter mechanism,
+    but it works fine on 1088-line video until the h.264 parser thinks the
+    resolution has changed from 1080 to 1088 lines.  To compensate, we
+    don't acknowledge a resolution change when this happens.
+    (cherry picked from commit c0bc92822fe63221ad8fc5cf52a6e661b37b6f21)
+    
+    Note: the hard-coding of 1088->1080 is not the best way to handle
+    this.  It will be cleaned up in Master.
+
+commit 9aaccb0e199a21311d0200b7787b705e4a67ca87
+Author: Michael Niedermayer <michaelni at gmx.at>
+Date:   Wed Feb 13 22:36:07 2013 +0100
+
+    h264: Reset last_pocs in case of reference or frame number inconsistencies
+    
+    This prevents faulty increasing of has_b_frames
+    Should fix Ticket 2062
+    
+    Signed-off-by: Michael Niedermayer <michaelni at gmx.at>
+    (cherry picked from commit c230af9bccc3cadb373f9007ba14fffb6c2acc75)
+    Signed-off-by: Jean-Yves Avenard <jyavenard at mythtv.org>
+    (cherry picked from commit 1c1076385f01619f0d0933f9f4fb8f5d1e80435b)
+    
+    Conflicts:
+    	mythtv/external/FFmpeg/libavcodec/h264_refs.c
+
+commit a1b9b1f94a774710443637de034c661618e5baa3
+Author: Jim Stichnoth <jstichnoth at mythtv.org>
+Date:   Fri Feb 1 06:27:27 2013 -0800
+
+    Fix Live TV startup, particularly for analog PVR-xxx tuners.
+    
+    At the start of playback, ffmpeg scans the start of the file for
+    stream info.  While reading packets, it uses ffio_limit() to truncate
+    packets during attempts to read past the size of the file.  The file
+    size is cached at the start of playback, and may be inordinately small
+    for live TV files, triggering a storm of packet truncation and failure
+    to start playback.  We fix this by faking a large file size for live
+    TV playback during the initial call to avformat_find_stream_info().
+    (cherry picked from commit 5758c2a1d8ce448fce51fd5af3ce1a95494a3408)
+
+commit fd43ad10c97eb71ed557db2062e740434f5c372b
+Author: David Engel <dengel at mythtv.org>
+Date:   Fri Feb 1 13:19:48 2013 -0600
+
+    Fix StatusBox to account for template recording rules.
+    
+    Cherry-pick part of SHA1:22c5dbff from master.
+
+commit 856d121b0100cdd8cffa21a5503685ccd45d9bb9
+Author: Jim Stichnoth <jstichnoth at mythtv.org>
+Date:   Thu Jan 31 16:25:40 2013 -0800
+
+    Enable more ffmpeg logging at startup of playback.
+    
+    Allow logging in avformat_find_stream_info() if
+    "-v libav --loglevel debug" is specified.
+    This proves useful for live TV debugging among others.
+    (cherry picked from commit ae0dcaf6dfbbef1ac0bcc0cec1c684262ea9ee5c)
+
+commit 28144cd1c59c9eb5d639f616e544dcd2a5cfb5ed
+Author: Jean-Yves Avenard <jyavenard at mythtv.org>
+Date:   Wed Jan 30 09:04:51 2013 +1100
+
+    Revert "Temporary fix for #11159: Fix playback of HD-PVR recording"
+    
+    This reverts commit 3c8d88ac55c2b2c1bc652076d7824529254829a4.
+    
+    It breaks BBC-HD playback consistently.
+
+commit 14aa70771e85e401c68cac78a49b8ef344cce873
+Author: David Engel <dengel at mythtv.org>
+Date:   Fri Jan 25 17:59:34 2013 -0600
+
+    Fix issues which sometimes prevente scheduling around live TV.
+    
+    Backport of SHA1:b05ecd46 to fixes/0.26.
+    
+    There are some cases where we don't attempt to schedule around live
+    TV.  This change cleans up the logic which determines when to do that
+    and fixes some of the bugs found in the process.
+    
+    NB: the case where a user enters live TV immediately before a
+    recording is scheduled to start is still not handled gracefully.
+    Fixing that is a lot tougher and will likely mean involving the
+    scheduler in choosing which input to use for live TV.
+    
+    Refs #11207
+
+commit 3587b8240a5b136df1b454b6b4e2d44294e7ed0a
+Author: Jim Stichnoth <jstichnoth at mythtv.org>
+Date:   Wed Jan 23 21:13:11 2013 -0800
+
+    Rescale 1088-row videos to avoid showing trailing garbage.
+    
+    Refs #11358.  1080i videos may present themselves as 1088 rows
+    (divisible by 16).  The HD-PVR in particular may contain garbage in
+    those last rows.  Specifically, the last two rows may form an annoying
+    green line.  We add a scaling pass to shift the bottom 4 rows (4 to be
+    on the safe side) off the bottom of the display area.
+    (cherry picked from commit 9d9de7b75d5354c9130526311a0c74d7172ebe6d)
+
+commit c86a3d78953ac1e3ffa10f670c73c836cfb1235d
+Author: Daniel Thor Kristjansson <danielk at cuymedia.net>
+Date:   Mon Jan 21 10:48:39 2013 -0500
+
+    Add DCX-3200 as a supported Firewire recorder STB.
+    
+    Fixes #11296.
+
+commit 012ebe9de7e20a0bae1920cfc55199ad63937636
+Author: Richard <peper03 at yahoo.com>
+Date:   Fri Dec 14 20:59:53 2012 +0100
+
+    Use the right highlight area in DVD menus when 'wide' is not the first in the list.
+    
+    Signed-off-by: Stuart Morgan <smorgan at mythtv.org>
+    
+    Fixes #11291
+    (cherry picked from commit 1eaecea6dd38db0c20b94f8ecb549b4c29491297)
+
+commit 512391ddecaa529bba374ed338e3ce170fecfd3f
+Author: Richard <peper03 at yahoo.com>
+Date:   Sun Dec 9 20:24:01 2012 +0100
+
+    Always update the still frame timer whenever the timeout changes (including when it should be disabled) to ensure that it doesn't 'expire' accidentally and cause the next still frame (at whatever point in time that may be) to be skipped.
+    
+    Signed-off-by: Stuart Morgan <smorgan at mythtv.org>
+    (cherry picked from commit d9b022eceab5f979717b6d66335b4d1e7f398b55)
+
+commit 2d710a70ba68fa5139fb2fc4936e167db69637dc
+Author: Richard <peper03 at yahoo.com>
+Date:   Wed Dec 5 19:40:04 2012 +0100
+
+    kDecodeAudio is now re-enabled if an audio stream becomes available
+    
+    Signed-off-by: Stuart Morgan <smorgan at mythtv.org>
+    (cherry picked from commit b082334c82bfb9caa513c29f5f9da44e282c973b)
+
+commit c1929686fd424b51c9725100e2e326525c879b0d
+Author: Richard <peper03 at yahoo.com>
+Date:   Sat Jan 19 14:50:31 2013 +0000
+
+    Simplify DVD startup to improve playback reliability
+    
+    The startup code for DVD playback jumps around somewhat trying to find
+    a playable title, which is then used to create audio/video decoders
+    before playback is restarted at firstplay.
+    
+    This doesn't always work as it can leave the DVDs VM in an
+    inconsistent state and, depending on the DVD, looks ugly as playback
+    starts and then restarts or appears to jump somewhere else after a
+    couple of seconds. Because the VM can be left in an inconsistent
+    state, menu navigation/selection issues can arise, which can make it
+    difficult to start playback.
+    
+    The attached patch attempts to clean up the startup code. The
+    DVDRingBuffer no longer tries to find a playable title in OpenFile??,
+    but rather just lets the VM get on with playback. AVFormatDecoder no
+    longer processes the initial frames more than is required to create
+    decoders. Once this has been achieved, any cached data is flushed
+    before jumping back to 'firstplay' (and cleanly resetting the VM). By
+    not displaying the initial frames used to determine the decoders and
+    flushing the cached data, the ugly jump at the start of some DVDs is
+    no longer visible.
+    
+    Fixes #11288
+    
+    Backport from master [414de880b]
+    
+    Signed-off-by: Stuart Morgan <smorgan at mythtv.org>
+
+commit 8f8274aa90a5caa37e0cf16c20938a8d73782f02
+Author: Jim Stichnoth <jstichnoth at mythtv.org>
+Date:   Thu Jan 17 14:51:40 2013 -0800
+
+    Fixes #10829.  Handle aspect ratio changes when seeking while paused.
+    (cherry picked from commit 0db9bf4999ab06e0451d57f43af59cee53648559)
+
+commit 91e93155fbeca2c7eaaf061aad91126c8f6a76a1
+Author: Wayne McDougall <waynemcdougall at gmail.com>
+Date:   Wed Jan 16 00:45:58 2013 -0500
+
+    Remove references to --hogcpu from mythcommflag readme.
+    
+    Fixes #11134
+    
+    Signed-off-by: Raymond Wagner <rwagner at mythtv.org>
+    (cherry picked from commit 0a94fc03e31dc6e17c5a6155ecaa71b2a255ca3e)
+
+commit 8ca4caf0c0ed3debd0659c4170970a37fb7dc916
+Author: Jim Stichnoth <jstichnoth at mythtv.org>
+Date:   Tue Jan 15 06:30:32 2013 -0800
+
+    Allow seeking back through the live TV chain.
+    
+     Fixes a regression introduced in 0.25.  Refs #11174.
+
+commit 3c8d88ac55c2b2c1bc652076d7824529254829a4
+Author: Jean-Yves Avenard <jyavenard at mythtv.org>
+Date:   Wed Dec 26 13:02:15 2012 +1100
+
+    Temporary fix for #11159: Fix playback of HD-PVR recording
+    
+    This revert FFmpeg commit bfca35114ae174bbabd88526379d95d4022a98b1
+    (ref https://ffmpeg.org/trac/ffmpeg/ticket/2062)
+    (cherry picked from commit d34833f2eeab06bc17338e4d5a8bc33589f41506)
+    
+    Conflicts:
+    	mythtv/external/FFmpeg/libavcodec/h264.c
+
+commit f35f899c79fa4769c7206948ea9612cc1d9adbd7
+Author: Richard <peper03 at yahoo.com>
+Date:   Sun Jan 13 07:52:38 2013 -0800
+
+    Fix transitions from a DVD still frame into video.  Fixes #11347.
+    
+    Signed-off-by: Jim Stichnoth <jstichnoth at mythtv.org>
+    (cherry picked from commit fcf176db6e06928364f35f32aa022696fb19edf6)
+
+commit 430900f7bce45d031ec948d867f0903e20544750
+Author: Bradley Baetz <bbaetz at gmail.com>
+Date:   Sun Jan 13 07:30:58 2013 -0800
+
+    Fix a memory leak introduced in 92016b949.  Fixes #11329.
+    
+    Signed-off-by: Jim Stichnoth <jstichnoth at mythtv.org>
+
+commit adb65cc236d40b3a99a74f95718de3eee4c9a602
+Author: Jim Stichnoth <jstichnoth at mythtv.org>
+Date:   Sat Jan 12 06:29:19 2013 -0800
+
+    Fix "mythcommflag --rebuild" for non-HDPVR recordings.
+    
+    By default, only identify IDR keyframes for h.264 recordings.
+    However, since DVB-S recordings may lack IDR frames, we check after
+    1000 frames whether any keyframes have been found, and if not, back up
+    and restart using the more lenient setting.
+    
+    Adapted from 802e32ba4dc8852da56db170893e95cbc28637e3 and
+    77bf3275ef3133d81fc979ae40d9728523ff9974.
+
+commit eca41c857ef9618a2e8335b90e97583e08858107
+Author: Jim Stichnoth <jstichnoth at mythtv.org>
+Date:   Fri Jan 11 22:45:11 2013 -0800
+
+    Subtitles: fix missing CEA-708 closed captions.
+    
+    This is a quick hack version of
+    7d9bf3193e0f3d1795c1ead6f16aa386ab7de587, which fixes a CEA-708
+    decoding bug exposed by recent changes to NBC's CEA-708 encoding.
+
+commit 72bca07f09deb4f6fbce6219b6d5aaaa2548bc35
+Author: Jonatan Lindblad <jlindblad at mythtv.org>
+Date:   Thu Jan 3 19:32:21 2013 +0100
+
+    mythccextractor: Skip teletext page headers
+    (cherry picked from commit 9519a103da6ad8dc589042fbda4fdfe4e1a2fca8)
+
+commit 1b055c0eae7cd63f627591a5607eb4703a46f360
+Author: Jonatan Lindblad <jlindblad at mythtv.org>
+Date:   Thu Jan 3 20:52:10 2013 +0100
+
+    mythccextractor: Fix teletext subtitle duration
+    
+    Previously ProcessTeletext() didn't leave one subtitle behind.  This caused the
+    length calculation in IngestSubtitle() to never be performed, which meant that
+    the length was always set to the default value 750 ms.
+    
+    Fixes #11081.
+    (cherry picked from commit 08ad6cef707456e959b48d5e48c09929e023fc49)
+    (cherry picked from commit 018691f04687321f90ef2938455824065bcf674e)
+
+commit 28846f87db59efa28ce20c9309089a49520227bb
+Author: Jim Stichnoth <jstichnoth at mythtv.org>
+Date:   Thu Jan 3 09:01:37 2013 -0800
+
+    Configure the h.264 parser to identify only IDR keyframes.
+    
+    This makes keyframes identified by "mythcommflag --rebuild" and
+    mythtranscode much closer to reality, though there are still
+    discrepancies compared to the recorder and raw ffmpeg.
+    (cherry picked from commit 590f161b1d5ff8c7e08b0beae480ece7a185d3ab)
+
+commit bcc459fa2893f65c1debe9a7f976d3c23e865531
+Author: Chris Pinkham <cpinkham at mythtv.org>
+Date:   Wed Jan 2 10:36:24 2013 -0800
+
+    Bump MDM::downloadNow() timeout up to 60 seconds.
+    
+    The previous 10-second timeout was causing issues when trying to
+    download large lineups from Schedules Direct. This commit bumps
+    the downloadNow() timeout to 60 seconds.  This is a blocking call,
+    so if the caller doesn't want to potentially block for that long,
+    they should be use one of the non-blocking methods.
+    
+    References #11287.
+    
+    (cherry picked from commit afa03f27a2fb442800f148fb28da1f7585a2f02f)
+
+commit ff4edc7e61e6f1f14161f67ab865b6e4d14ff80b
+Author: Jim Stichnoth <jstichnoth at mythtv.org>
+Date:   Tue Jan 1 06:17:48 2013 -0800
+
+    Fix an issue with keyframe positions produced by mythcommflag --rebuild.
+    
+    The seeking code in DecoderBase assumes there is a keyframe at frame
+    0, otherwise it shifts all keyframe numbers by the value of the first
+    keyframe number in the map.  This causes problems for recordings with
+    variable keyframe distances.  To correct this, make sure mythcommflag
+    --rebuild creates an explicit entry for frame 0.
+    
+    Note: this does not fix the issue of mythcommflag --rebuild adding
+    bogus keyframes to the seektable for h.264 recordings.
+    
+    Cherry-picked from a small part of
+    49dbed5be0729b04a5f0fd0426a32fceb2dd7935 .
+
+commit 12f0d5deb4b5bacffbdc3bca4772a2ecc66f79c0
+Author: Raymond Wagner <rwagner at mythtv.org>
+Date:   Sun Dec 30 13:03:15 2012 -0500
+
+    Fix typo in tmdb3.py that returns invalid crew IDs.
+    (cherry picked from commit f4bb17ff2b964c001df376337aa29323615cf790)
+
+commit feffc6907bfb4047ef73102c53e3540cd00917d8
+Author: Raymond Wagner <rwagner at mythtv.org>
+Date:   Sun Dec 30 02:07:12 2012 -0500
+
+    Allow posixtzinfo to use the TZ environmental variable.
+    
+    This adds a check for the TZ environmental variable, and uses that to
+    define the local timezone if available, rather than always using
+    /etc/localtime. This resolves an issue on Debian-based systems that
+    always use the TZ variable, rather than defining the localtime file.
+    (cherry picked from commit 0bffe0648d7b19ff2b2ca289699982c23a12f455)
+
+commit edba581f7347baa060e1ab75095a57f935ac281d
+Author: Raymond Wagner <rwagner at mythtv.org>
+Date:   Sun Dec 30 02:02:14 2012 -0500
+
+    Remove incorrect selection of DST offset.
+    
+    This makes the default offsettzinfo just use the standard timezone
+    offset from the time module, rather than incorrectly using the existence
+    of a DST offset as indication that the system is currently in DST.
+    (cherry picked from commit 4dd0bf8014bf8261c8ed347517ef8197ac7f942e)
+
+commit b563d7f01b3dc3c40abc430150f3f00deb7d6a1d
+Author: Jean-Yves Avenard <jyavenard at mythtv.org>
+Date:   Fri Dec 28 20:37:04 2012 +1100
+
+    Fix playback of HLS encrypted streams.
+    
+    The allows ABC iView on iPad to stream to Myth
+    (cherry picked from commit c5a4229401b2c224640cda2a31e9339fcd8157de)
+
+commit a4d2dd12c7f9143dc31be4005e1d437adebd9646
+Author: Jean-Yves Avenard <jyavenard at mythtv.org>
+Date:   Thu Dec 27 21:27:51 2012 +1100
+
+    URI is RFC3986 and is escape encoded. Must decode it before using it.
+    
+    Fixes #11307
+    (cherry picked from commit a99e92c8173fb1887a9b3c116b72edf119fbfd5b)
+
+commit 637d6d87d20aa8b17247fedf87b6c78ef091f08c
+Author: Stuart Morgan <smorgan at mythtv.org>
+Date:   Tue Dec 18 16:07:53 2012 +0000
+
+    Fix copy/paste error in MythUIType::SetMinArea(). Coverity 746771
+
+commit 190279b50307cd5b53d4ae9c8f4dc70b13eeeed5
+Author: Stuart Morgan <smorgan at mythtv.org>
+Date:   Tue Dec 18 16:06:30 2012 +0000
+
+    Fix copy/paste error in MythUIType::AdjustMinArea(). Coverity 746772
+
+commit 3d7a20ce1008b1a84127f17dea7c75e05cacb4aa
+Author: Karl Dietz <dekarl at mythtv.org>
+Date:   Mon Dec 17 00:32:42 2012 +0100
+
+    Speed up and reduce temporary space of time search a lot.
+    
+    By factoring out the description into a super query the performance can
+    be greatly improved (e.g. from 2 minutes to 2 seconds)
+    
+    Thanks to sphery for inspiration by [d9fb21853f] and justinh for testing
+    and fixing my braino with the column order.
+    
+    Fixes #10023
+    (cherry picked from commit c0c47344879d3467cfea62938a33e70278252b36)
+    
+    Conflicts:
+    
+    	mythtv/libs/libmyth/programinfo.cpp
+
+commit cd0212131d67c21c1f346fbb659cf268e76a4454
+Author: Jean-Yves Avenard <jyavenard at mythtv.org>
+Date:   Mon Dec 17 01:01:03 2012 +1100
+
+    Revert "Revert "Temporary fix for stuttery playback of AVI files over Storage Group.""
+    
+    This reverts commit f1cc7e3e4410195aeb6c7da3bba7dc44830bdc4e.
+    Was never supposed to commit this revert
+
+commit f1cc7e3e4410195aeb6c7da3bba7dc44830bdc4e
+Author: Jean-Yves Avenard <jyavenard at mythtv.org>
+Date:   Sat Dec 15 20:02:44 2012 +1100
+
+    Revert "Temporary fix for stuttery playback of AVI files over Storage Group."
+    
+    This reverts commit c21e9beb16583f640e7457e798c047b3af05cf15.
+
+commit c21e9beb16583f640e7457e798c047b3af05cf15
+Author: Jean-Yves Avenard <jyavenard at mythtv.org>
+Date:   Sat Dec 15 18:53:49 2012 +1100
+
+    Temporary fix for stuttery playback of AVI files over Storage Group.
+    
+    This is a reverse of ffmpeg SHA1:8df774be88c347c40f1b2411ed9e391dfec0ebb7
+    http://git.videolan.org/?p=ffmpeg.git;a=commit;h=8df774be88c347c40f1b2411ed9e391dfec0ebb7
+    
+    This is not a proper fix. It only reveals an issue with myth Storage Group file ring buffer.
+    With this ffmpeg change, some AVI files are detected as non-interleaved and the readahead thread starts to pull MB of data which saturates 100Mbit/s link causing the video playback to stutter.
+    (cherry picked from commit f1540fe05ee15d1f53fe30e137931b185b791821)
+
+commit b8998fc41b1cb23d816354c211e8fa96ab316db3
+Author: Jim Stichnoth <jstichnoth at mythtv.org>
+Date:   Wed Dec 5 09:08:32 2012 -0800
+
+    Cutlist editor: Trigger a redraw of the editbar when changes are made.
+    
+    Otherwise, cut/keep marks may incorrectly stay visible when changes to
+    cut/keep regions are made.
+    (cherry picked from commit 1241485d5d2ec81deddf2c5ab8deb21b7d796248)
+
+commit 1ecfe64da85dad6be51174e139b7ed9c4f85b3f6
+Author: Jim Stichnoth <jstichnoth at mythtv.org>
+Date:   Wed Dec 5 08:53:51 2012 -0800
+
+    Properly initialize the MythPlayer::video_aspect field.
+    
+    The MythPlayer constructor unconditionally initializes video_aspect to
+    4.0/3.0.  In some configurations, pressing EDIT during the "Please
+    Wait" screen before the start of playback of a non-4:3 recording, will
+    bring up the cutlist editor locked into 4:3 mode.  Explicitly
+    initializing video_aspect earlier fixes this.
+    (cherry picked from commit 192e850ad9a87b7ff457d30cf8308b568cc18299)
+
+commit 2baece97462dc411cbf9f45f11667b2e4f186730
+Author: Stuart Morgan <smorgan at mythtv.org>
+Date:   Wed Dec 12 13:39:32 2012 +0000
+
+    Don't setup to decode every video stream found, just the first.
+    
+    Fixes playback of certain video files containing multiple video streams.
+
+commit 09ac5b2226b8e6d855dbfc9c24fdfd2cf9075687
+Author: Stuart Morgan <smorgan at mythtv.org>
+Date:   Wed Dec 5 16:34:52 2012 +0000
+
+    Fix use after free in MediaMonitor::RemoveDevice(), found by cppcheck
+
+commit 93204a3747db4219833cdd24eaa41146fdc6b8d5
+Author: Stuart Morgan <smorgan at mythtv.org>
+Date:   Wed Dec 5 10:35:24 2012 +0000
+
+    Fix .empty() being called when .clear() was meant in cddb.cpp. Spotted by cppcheck
+
+commit b28041a11711a2ddd9eb63f8eee0c1ce3009c4ac
+Author: Daniel Thor Kristjansson <danielk at cuymedia.net>
+Date:   Wed Nov 21 10:27:31 2012 -0500
+
+    Fix #10995. Default to local time for mythshutdown --setwakeup.
+
+commit 3c359636b261409a9cf0761bdbb82092b93a0306
+Author: Jim Stichnoth <jstichnoth at mythtv.org>
+Date:   Mon Nov 26 19:16:49 2012 -0800
+
+    Subtitles: Don't use a persistent DB setting to control forced subtitles.
+    
+    Instead, always allow forced subtitles when playback starts, and allow
+    the user to disable/enable forced subtitles during the current
+    playback.
+    (cherry picked from commit 0b7e9027cbc4d4b0b15533b2701077733f62162c)
+
+commit ed7b577702442c62b5d0f43b434fcb5494d0a8d8
+Author: Jean-Yves Avenard <jyavenard at mythtv.org>
+Date:   Sat Dec 1 17:07:09 2012 +1100
+
+    Fix cross-compilation on mac.
+    
+    Depending on the version of Qt you are using QMAKE_OBJECTIVE_CXXFLAGS may be ignored and QMAKE_OBJECTIVE_CFLAGS is used instead.
+    So define both.
+    
+    [cherry-picked from 75e47c5989248aebe5c0d2b41b11c6465b2b4ebc]
+
+commit b62198ffcada256ebf3c40c9c6c4be1615ae17ea
+Author: Chris Pinkham <cpinkham at mythtv.org>
+Date:   Fri Nov 30 20:58:26 2012 -0800
+
+    Fix mythfrontend services API /Frontend/PlayRecording call.
+    
+    We don't need to convert the specified starttime toLocalTime() anymore.
+    
+    Copies 3eef99e from master.
+    
+    Fixes #11236 and #11152 I believe.
+
+commit 6313659aba17e992b726fcf6edc613518d3c0205
+Author: Chris Petersen <cpetersen at mythtv.org>
+Date:   Sun Nov 25 13:59:46 2012 -0800
+
+    Patch to fix UTC issues
+    
+    Closes #11079
+    
+    http://code.mythtv.org/trac/ticket/11079
+
+commit 57396ed6cfe4195a6ab4ef1087e233ba66ce402c
+Author: Jean-Yves Avenard <jyavenard at mythtv.org>
+Date:   Fri Nov 30 20:13:54 2012 +1100
+
+    Fix AirTunes so it works with iTunes 11
+    
+    iTunes used to only send an AES-128 challenge once, and myth was expecting that the challenge came during the OPTIONS packet.
+    The challenge is now sent with more packet, including during the ANNOUNCE one.
+    So we move the handling of the challenge so it will work no matter which packet it comes with.
+    
+    Tested with iTunes 11, iTunes 10 and iOS 6.01
+    
+    [cherry-picked from 06be92206c772509875dbde313769bfae9a2adf7]
+
+commit bfa76a2f924af04327afcf4b04177a2fd6870f24
+Author: Richard <peper03 at yahoo.com>
+Date:   Thu Nov 29 20:54:55 2012 +0100
+
+    Set palette correctly when DVD menu highlight changes to ensure highlights are the right colour/have the correct transparency.
+    
+    Fixes #11265
+    
+    Signed-off-by: Stuart Morgan <smorgan at mythtv.org>
+    (cherry picked from commit 5df1322ae0f73566766bcde0c7948292877fd443)
+
+commit 84cc4bb95a6496428221981a18013f8846617924
+Author: Stuart Morgan <smorgan at mythtv.org>
+Date:   Thu Nov 29 19:31:49 2012 +0000
+
+    Fix playback of DVDs which feature an empty audio stream
+    (cherry picked from commit 20baa43b4b0313900dec05c11e6054760123cb9d)
+
+commit 8a7892b1ca1ec307d32a78153b57e012a721e9d3
+Author: Ian Dall <ian at beware.dropbear.id.au>
+Date:   Thu Nov 29 19:00:10 2012 +0000
+
+    Fix deletes on Slave backends. Remove references to deleted_set and
+    initialise dont_expire_set properly which conflicted with 'deleted'
+    recgroup behaviour since 0.25. Fixes #10704
+    
+    Signed-off-by: Stuart Morgan <smorgan at mythtv.org>
+    (cherry picked from commit e150a19030a81e3c099eff76b280b886122529b1)
+
+commit cd9f7eb68642f9052de40e68d544ccd40fc112a1
+Author: Stuart Morgan <smorgan at mythtv.org>
+Date:   Thu Nov 29 17:54:00 2012 +0000
+
+    Treat POLLHUP as EOF not an error, fixes IVTV (PVR-) recorders failing. Based on patch from ltskinol at gmail.com Fixes #10732
+    (cherry picked from commit 3d13d795b2ae4a66f4bd3e5bdfd4168c66474282)
+
+commit 793814e81ae7f0b2e54df6adf9b64d43b0f52df3
+Author: Stuart Morgan <smorgan at mythtv.org>
+Date:   Thu Nov 29 17:15:15 2012 +0000
+
+    Don't strip unnecessary white space from title when creating the title list. Fixes #11200
+    (cherry picked from commit b47711179612a12d8e4f888c426cb5b268893797)
+
+commit 10479af5e68010d0b25982323cd3b743bd353d88
+Author: Jim Stichnoth <jstichnoth at mythtv.org>
+Date:   Fri Nov 23 22:21:53 2012 -0800
+
+    Reduce the amount of "Build background buttonlist" logging.
+    (cherry picked from commit d1243e25eba64b1e20e6c1ea901eaaa6b3044049)
+
+commit ca8f5e75dd4d222599c48ad3c849356e31042bd4
+Author: Jim Stichnoth <jstichnoth at mythtv.org>
+Date:   Fri Nov 23 07:45:23 2012 -0800
+
+    Subtitles: Add support for forced text subtitle tracks.
+    
+    Fixes #11242.
+    
+    If there is a forced text subtitle track (which is possible in e.g. a
+    .mkv container), and forced subtitles are allowed, then start playback
+    with that subtitle track selected. Otherwise, use the frontend
+    settings to decide which captions/subtitles (if any) to enable at
+    startup.
+    
+    Background on the mythtv-users mailing list -
+    http://www.gossamer-threads.com/lists/mythtv/users/532845 .
+    (cherry picked from commit 64a3cd08752a07ea7928df2d1c713f75a8181f58)
+
+commit b45c98aded5223ab77de7a2be3603878f7f6cec1
+Author: Paul Harrison <pharrison at mythtv.org>
+Date:   Thu Nov 1 21:34:11 2012 +0000
+
+    mythmusic: Fix streaming radio not being able to connect to some streams
+    
+    This fixes a couple of errors with creating the stream GET request header.
+    If the path part of the the URI is empty the HTTP/1.1 spec says it should be
+    specified as "/" and not be empty and the Host request-header field should
+    contain the port if it is non standard.
+    
+    Fixes #11214
+    
+    Signed-off-by: Stuart Morgan <smorgan at mythtv.org>
+    (cherry picked from commit fe22adc5c485b8b19969b0e1804a84f652227577)
+
+commit 17c0c77ddbb2e6f085be6b08bac31a9361b682ab
+Author: Stuart Morgan <smorgan at mythtv.org>
+Date:   Wed Nov 21 14:05:54 2012 +0000
+
+    Fix Audio Description and Commentary track filtering when auto-selecting audio track
+    
+    Fixes #9878
+    Fixes #3260
+    Fixes #10963
+    (cherry picked from commit ee375344e4ac309917fb85f51c9e05ca2b4761c2)
+
+commit b0a1d7298b3d26a805de2535957eab2c80e87f3c
+Author: Stuart Morgan <smorgan at mythtv.org>
+Date:   Mon Nov 19 13:29:52 2012 +0000
+
+    Have EDIT open the metadata editor in the CD ripping screen
+    (cherry picked from commit 0e281107a8254c77317f9997625b6e3c04097742)
+
+commit 340b5d4099068fc1fe72548e2d98ac4733c51e55
+Author: Richard <peper03 at yahoo.com>
+Date:   Sat Nov 17 14:38:36 2012 +0100
+
+    Changed DVD angle handling to be 1-based throughout (as they are on DVDs). This also affects the SWITCHTOANGLE action via the Services API.
+    
+    Signed-off-by: Stuart Morgan <smorgan at mythtv.org>
+    (cherry picked from commit 3e01436a867332ae2aaa24b89b1c5b8ec35480e0)
+
+commit 8c68560fd05ed4c9f99b207f22bb58306cb6ce2d
+Author: Stuart Morgan <smorgan at mythtv.org>
+Date:   Fri Nov 16 18:37:07 2012 +0000
+
+    Don't treat unknown text display modes as audio tracks. Fixes
+    TOGGLE_SUBTITLES not working with DVDs after leaving a menu, although a better fix specifically for this problem may be added later.
+    (cherry picked from commit 2653de8643929aeaaaae3dd5e2a8aa3b86220c47)
+
+commit 81e8fa5175436ab2487944cc66de95c509e8cbc5
+Author: David Engel <dengel at mythtv.org>
+Date:   Tue Nov 13 10:31:05 2012 -0600
+
+    Reschedule when a recording is undeleted.
+    
+    Note: an unwitting user could unintentionally bypass this change by
+    changing the recording group directly from "Deleted" to something
+    else.  Possibly fix this in the future by moving all releated fixups
+    into RecordingInfo::ApplyRecordRecGroupChange() instead of having
+    every caller do them.
+    
+    Refs #11224
+    (cherry picked from commit 5e1c14e8c295fb00a3f2e359021be026104863db)
+
+commit c57b92740ac15e708bd8a68eb767b484d8b26f4a
+Author: David Engel <dengel at mythtv.org>
+Date:   Tue Nov 13 09:47:48 2012 -0600
+
+    Fix a possible reace condition when a recording finishes.
+    
+    There was a slight, albeit very unlikely, possibility the scheduler
+    could run before the recorded table was updated.  This avoids it by
+    updating the database before notifying the scheduler.
+    
+    Refs #11224
+    (cherry picked from commit 729e3d56d3e984d35b4fecd249da7c3e1bdcbfb9)
+
+commit 1618035441204b0a0f58e8b1f87f369c04df5527
+Author: David Engel <dengel at mythtv.org>
+Date:   Tue Nov 13 09:44:38 2012 -0600
+
+    Fix multiple database bindings issue in Scheduler::ResetDuplicates().
+    
+    This causesd the duplicate status of programs without programids or
+    findids to not get updated properly.
+    
+    Fixes #11224
+    (cherry picked from commit 6a147ecf09aea985f95d8dcbe4edacc9e18f4a38)
+
+commit 5d8e8e17df880b362ed2305b65fd5d1cd18c426f
+Author: Richard <peper03 at yahoo.com>
+Date:   Mon Nov 12 00:28:05 2012 +0100
+
+    When processing frames from DVD/Blu-ray ringbuffer, menu frames are now buffered as necessary to ensure stutter-free playback.
+    
+    Refs #11233
+    
+    Signed-off-by: Stuart Morgan <smorgan at mythtv.org>
+    (cherry picked from commit 62816805dbbce996bd8ee61da3bdfca1bb1bcef9)
+    
+    Signed-off-by: Stuart Morgan <smorgan at mythtv.org>
+
+commit cd2e061f999d336a87fad9c3eace6fd3c0d01dd4
+Author: Raymond Wagner <rwagner at mythtv.org>
+Date:   Wed Nov 7 09:49:33 2012 -0500
+
+    Bump internal bindings versions.
+
+commit d988d0fc496b7ebfb5c5dedf1f3cc3f6607b030c
+Author: R.D. Vaughan <r.d.vaughan at rogers.com>
+Date:   Mon Nov 5 12:18:27 2012 -0500
+
+    Fix timezone issue with custom SQL queries.
+    
+    Signed-off-by: Raymond Wagner <rwagner at mythtv.org>
+    (cherry picked from commit ee42f13d12721b7566bbb0ec013abff1938f48aa)
+
+commit bcd34da31f2cd6c5a3a489b942c5ded0414d9aa5
+Author: Raymond Wagner <rwagner at mythtv.org>
+Date:   Mon Nov 5 00:06:20 2012 -0500
+
+    Use translated title rather than original title for results, if available.
+    (cherry picked from commit e13600c833eff1919479ecefca5ad18945777c70)
+
 commit e3087dda66175a6b7308ad5a5e80a35ff7d72fd3
 Author: Jonatan Lindblad <jlindblad at mythtv.org>
 Date:   Sun Oct 28 21:59:38 2012 +0100

mythtv-0.26-fixes.patch:
 README.rst                                                                    |    1 
 mythplugins/mytharchive/i18n/mytharchive_es_es.qm                             |binary
 mythplugins/mytharchive/i18n/mytharchive_es_es.ts                             |   45 
 mythplugins/mytharchive/mythburn/encoder_profiles/ffmpeg_dvd_ntsc.xml         |   24 
 mythplugins/mytharchive/mythburn/encoder_profiles/ffmpeg_dvd_pal.xml          |   24 
 mythplugins/mytharchive/mythburn/scripts/mythburn.py                          |   16 
 mythplugins/mythgallery/i18n/mythgallery_es_es.ts                             |    4 
 mythplugins/mythgame/i18n/mythgame_es_es.ts                                   |    4 
 mythplugins/mythmusic/i18n/mythmusic_es_es.ts                                 |   68 
 mythplugins/mythmusic/i18n/mythmusic_it.qm                                    |binary
 mythplugins/mythmusic/i18n/mythmusic_it.ts                                    | 3790 +++++++---
 mythplugins/mythmusic/mythmusic/cddb.cpp                                      |    6 
 mythplugins/mythmusic/mythmusic/cdrip.cpp                                     |    2 
 mythplugins/mythmusic/mythmusic/shoutcast.cpp                                 |   20 
 mythplugins/mythweather/i18n/mythweather_es_es.qm                             |binary
 mythplugins/mythweather/i18n/mythweather_es_es.ts                             |    3 
 mythplugins/mythweather/i18n/mythweather_pl.qm                                |binary
 mythplugins/mythweather/i18n/mythweather_pl.ts                                |    3 
 mythtv/bindings/perl/Makefile.PL                                              |    1 
 mythtv/bindings/perl/MythTV.pm                                                |   20 
 mythtv/bindings/python/MythTV/altdict.py                                      |    2 
 mythtv/bindings/python/MythTV/dataheap.py                                     |   58 
 mythtv/bindings/python/MythTV/static.py                                       |    2 
 mythtv/bindings/python/MythTV/system.py                                       |    4 
 mythtv/bindings/python/MythTV/utility/dt.py                                   |   12 
 mythtv/bindings/python/setup.py                                               |    2 
 mythtv/contrib/imports/mirobridge/mirobridge.py                               |  101 
 mythtv/external/FFmpeg/libavcodec/h264.c                                      |    3 
 mythtv/external/FFmpeg/libavcodec/h264_refs.c                                 |    3 
 mythtv/external/FFmpeg/libavcodec/pcm.c                                       |    5 
 mythtv/external/FFmpeg/libavformat/avidec.c                                   |    9 
 mythtv/external/FFmpeg/libavformat/utils.c                                    |    4 
 mythtv/i18n/mythfrontend_da.qm                                                |binary
 mythtv/i18n/mythfrontend_da.ts                                                | 1208 +--
 mythtv/i18n/mythfrontend_es_es.qm                                             |binary
 mythtv/i18n/mythfrontend_es_es.ts                                             | 2180 +++--
 mythtv/i18n/mythfrontend_pl.qm                                                |binary
 mythtv/i18n/mythfrontend_pl.ts                                                | 2733 +++----
 mythtv/libs/libmyth/mythcontext.cpp                                           |    2 
 mythtv/libs/libmyth/mythmediamonitor.cpp                                      |    2 
 mythtv/libs/libmyth/programinfo.cpp                                           |   20 
 mythtv/libs/libmythbase/mythdownloadmanager.cpp                               |    2 
 mythtv/libs/libmythbase/mythsystem.cpp                                        |    5 
 mythtv/libs/libmythbase/mythversion.h                                         |    2 
 mythtv/libs/libmythbase/signalhandling.cpp                                    |    8 
 mythtv/libs/libmythdvdnav/dvdnav/dvd_types.h                                  |   11 
 mythtv/libs/libmythdvdnav/dvdnav/dvdnav.h                                     |    7 
 mythtv/libs/libmythdvdnav/dvdnav/highlight.c                                  |   60 
 mythtv/libs/libmythtv/AirPlay/mythraopconnection.cpp                          |  153 
 mythtv/libs/libmythtv/Bluray/bdringbuffer.h                                   |    6 
 mythtv/libs/libmythtv/Bluray/mythbdplayer.cpp                                 |    4 
 mythtv/libs/libmythtv/DVD/avformatdecoderdvd.cpp                              |    6 
 mythtv/libs/libmythtv/DVD/avformatdecoderdvd.h                                |    1 
 mythtv/libs/libmythtv/DVD/dvdringbuffer.cpp                                   |   74 
 mythtv/libs/libmythtv/DVD/dvdringbuffer.h                                     |    6 
 mythtv/libs/libmythtv/DVD/mythdvdplayer.cpp                                   |   23 
 mythtv/libs/libmythtv/DeviceReadBuffer.cpp                                    |    7 
 mythtv/libs/libmythtv/HLS/httplivestreambuffer.cpp                            |   35 
 mythtv/libs/libmythtv/ThreadedFileWriter.cpp                                  |    2 
 mythtv/libs/libmythtv/analogsignalmonitor.cpp                                 |    6 
 mythtv/libs/libmythtv/analogsignalmonitor.h                                   |    1 
 mythtv/libs/libmythtv/asirecorder.cpp                                         |   15 
 mythtv/libs/libmythtv/asirecorder.h                                           |    1 
 mythtv/libs/libmythtv/asisignalmonitor.cpp                                    |    6 
 mythtv/libs/libmythtv/asisignalmonitor.h                                      |    1 
 mythtv/libs/libmythtv/avformatdecoder.cpp                                     |  227 
 mythtv/libs/libmythtv/avformatdecoder.h                                       |    6 
 mythtv/libs/libmythtv/avfringbuffer.cpp                                       |    4 
 mythtv/libs/libmythtv/avfringbuffer.h                                         |    6 
 mythtv/libs/libmythtv/cc708window.cpp                                         |    2 
 mythtv/libs/libmythtv/cetonrecorder.cpp                                       |   14 
 mythtv/libs/libmythtv/cetonrecorder.h                                         |    1 
 mythtv/libs/libmythtv/cetonsignalmonitor.cpp                                  |    6 
 mythtv/libs/libmythtv/cetonsignalmonitor.h                                    |    1 
 mythtv/libs/libmythtv/decoderbase.h                                           |    6 
 mythtv/libs/libmythtv/dtvrecorder.cpp                                         |  339 
 mythtv/libs/libmythtv/dtvrecorder.h                                           |    8 
 mythtv/libs/libmythtv/dvbrecorder.cpp                                         |   14 
 mythtv/libs/libmythtv/dvbrecorder.h                                           |    1 
 mythtv/libs/libmythtv/dvbsignalmonitor.cpp                                    |    6 
 mythtv/libs/libmythtv/dvbsignalmonitor.h                                      |    1 
 mythtv/libs/libmythtv/filtermanager.cpp                                       |   38 
 mythtv/libs/libmythtv/firewiredevice.cpp                                      |    1 
 mythtv/libs/libmythtv/firewiresignalmonitor.cpp                               |    6 
 mythtv/libs/libmythtv/firewiresignalmonitor.h                                 |    1 
 mythtv/libs/libmythtv/hdhrrecorder.cpp                                        |   14 
 mythtv/libs/libmythtv/hdhrrecorder.h                                          |    1 
 mythtv/libs/libmythtv/hdhrsignalmonitor.cpp                                   |    6 
 mythtv/libs/libmythtv/hdhrsignalmonitor.h                                     |    1 
 mythtv/libs/libmythtv/iptvsignalmonitor.cpp                                   |    6 
 mythtv/libs/libmythtv/iptvsignalmonitor.h                                     |    1 
 mythtv/libs/libmythtv/mpeg/mpegstreamdata.cpp                                 |    8 
 mythtv/libs/libmythtv/mpeg/streamlisteners.h                                  |    5 
 mythtv/libs/libmythtv/mpegrecorder.cpp                                        |   11 
 mythtv/libs/libmythtv/mythccextractorplayer.cpp                               |   12 
 mythtv/libs/libmythtv/mythccextractorplayer.h                                 |    2 
 mythtv/libs/libmythtv/mythcommflagplayer.cpp                                  |   21 
 mythtv/libs/libmythtv/mythplayer.cpp                                          |   43 
 mythtv/libs/libmythtv/ringbuffer.h                                            |    4 
 mythtv/libs/libmythtv/signalmonitor.cpp                                       |    1 
 mythtv/libs/libmythtv/signalmonitor.h                                         |    1 
 mythtv/libs/libmythtv/tv_play.cpp                                             |   13 
 mythtv/libs/libmythtv/tv_rec.cpp                                              |    6 
 mythtv/libs/libmythui/libmythui.pro                                           |    1 
 mythtv/libs/libmythui/mythscreenstack.cpp                                     |    2 
 mythtv/libs/libmythui/mythuibuttonlist.cpp                                    |    2 
 mythtv/libs/libmythui/mythuieditbar.cpp                                       |    1 
 mythtv/libs/libmythui/mythuiimage.cpp                                         |    3 
 mythtv/libs/libmythui/mythuitype.cpp                                          |   11 
 mythtv/libs/libmythui/mythuiwebbrowser.cpp                                    |   10 
 mythtv/programs/mythavtest/main.cpp                                           |    5 
 mythtv/programs/mythbackend/autoexpire.cpp                                    |    4 
 mythtv/programs/mythbackend/autoexpire.h                                      |    1 
 mythtv/programs/mythbackend/main.cpp                                          |    5 
 mythtv/programs/mythbackend/main_helpers.cpp                                  |    4 
 mythtv/programs/mythbackend/mainserver.cpp                                    |   18 
 mythtv/programs/mythbackend/scheduler.cpp                                     |   72 
 mythtv/programs/mythccextractor/main.cpp                                      |    5 
 mythtv/programs/mythcommflag/README.txt                                       |   10 
 mythtv/programs/mythcommflag/main.cpp                                         |    5 
 mythtv/programs/mythfilldatabase/main.cpp                                     |    5 
 mythtv/programs/mythfrontend/guidegrid.cpp                                    |   17 
 mythtv/programs/mythfrontend/main.cpp                                         |    5 
 mythtv/programs/mythfrontend/playbackbox.cpp                                  |    4 
 mythtv/programs/mythfrontend/scheduleeditor.cpp                               |    2 
 mythtv/programs/mythfrontend/services/frontend.cpp                            |    2 
 mythtv/programs/mythfrontend/statusbox.cpp                                    |    8 
 mythtv/programs/mythjobqueue/main.cpp                                         |    5 
 mythtv/programs/mythlcdserver/main.cpp                                        |    5 
 mythtv/programs/mythlogserver/main.cpp                                        |    5 
 mythtv/programs/mythmediaserver/main.cpp                                      |    5 
 mythtv/programs/mythmetadatalookup/main.cpp                                   |    5 
 mythtv/programs/mythpreviewgen/main.cpp                                       |    5 
 mythtv/programs/mythshutdown/commandlineparser.cpp                            |   14 
 mythtv/programs/mythshutdown/main.cpp                                         |   55 
 mythtv/programs/mythtranscode/main.cpp                                        |    5 
 mythtv/programs/mythtranscode/transcode.cpp                                   |    6 
 mythtv/programs/mythtv-setup/backendsettings.cpp                              |    6 
 mythtv/programs/mythtv-setup/main.cpp                                         |    5 
 mythtv/programs/mythutil/main.cpp                                             |    6 
 mythtv/programs/mythwelcome/main.cpp                                          |    5 
 mythtv/programs/scripts/hardwareprofile/distros/mythtv_data/data_mythtv.py    |   20 
 mythtv/programs/scripts/internetcontent/nv_python_libs/youtube/youtube_api.py |   27 
 mythtv/programs/scripts/metadata/Movie/tmdb3.py                               |  109 
 144 files changed, 7551 insertions(+), 4606 deletions(-)

View full diff with command:
/usr/bin/cvs -f diff  -kk -u -N -r 1.1 -r 1.2 mythtv-0.26-fixes.patch
Index: mythtv-0.26-fixes.patch
===================================================================
RCS file: /cvs/free/rpms/mythtv/F-17/mythtv-0.26-fixes.patch,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- mythtv-0.26-fixes.patch	29 Oct 2012 17:47:41 -0000	1.1
+++ mythtv-0.26-fixes.patch	6 Mar 2013 15:42:13 -0000	1.2
@@ -1,55 +1,148 @@
  README.rst                                         |    1 +
  mythplugins/mytharchive/i18n/mytharchive_es_es.qm  |  Bin 36188 -> 36136 bytes
  mythplugins/mytharchive/i18n/mytharchive_es_es.ts  |   45 +-
+ .../mythburn/encoder_profiles/ffmpeg_dvd_ntsc.xml  |   24 +-
+ .../mythburn/encoder_profiles/ffmpeg_dvd_pal.xml   |   24 +-
+ .../mytharchive/mythburn/scripts/mythburn.py       |   16 +-
  mythplugins/mythgallery/i18n/mythgallery_es_es.ts  |    4 +-
  mythplugins/mythgame/i18n/mythgame_es_es.ts        |    4 +-
  mythplugins/mythmusic/i18n/mythmusic_es_es.ts      |   68 +-
  mythplugins/mythmusic/i18n/mythmusic_it.qm         |  Bin 55341 -> 67158 bytes
  mythplugins/mythmusic/i18n/mythmusic_it.ts         | 3790 +++++++++++++++-----
+ mythplugins/mythmusic/mythmusic/cddb.cpp           |    6 +-
+ mythplugins/mythmusic/mythmusic/cdrip.cpp          |    2 +-
+ mythplugins/mythmusic/mythmusic/shoutcast.cpp      |   20 +-
  mythplugins/mythweather/i18n/mythweather_es_es.qm  |  Bin 23630 -> 23631 bytes
  mythplugins/mythweather/i18n/mythweather_es_es.ts  |    3 +-
  mythplugins/mythweather/i18n/mythweather_pl.qm     |  Bin 23846 -> 23847 bytes
  mythplugins/mythweather/i18n/mythweather_pl.ts     |    3 +-
+ mythtv/bindings/perl/Makefile.PL                   |    1 -
+ mythtv/bindings/perl/MythTV.pm                     |   20 +-
  mythtv/bindings/python/MythTV/altdict.py           |    2 +-
  mythtv/bindings/python/MythTV/dataheap.py          |   58 +-
+ mythtv/bindings/python/MythTV/static.py            |    2 +-
  mythtv/bindings/python/MythTV/system.py            |    4 +-
- mythtv/contrib/imports/mirobridge/mirobridge.py    |   96 +-
+ mythtv/bindings/python/MythTV/utility/dt.py        |   12 +-
+ mythtv/bindings/python/setup.py                    |    2 +-
+ mythtv/contrib/imports/mirobridge/mirobridge.py    |  101 +-
+ mythtv/external/FFmpeg/libavcodec/h264.c           |    3 +
+ mythtv/external/FFmpeg/libavcodec/h264_refs.c      |    3 +
+ mythtv/external/FFmpeg/libavcodec/pcm.c            |    5 +-
+ mythtv/external/FFmpeg/libavformat/avidec.c        |    9 +
+ mythtv/external/FFmpeg/libavformat/utils.c         |    4 +-
+ mythtv/i18n/mythfrontend_da.qm                     |  Bin 611287 -> 611700 bytes
+ mythtv/i18n/mythfrontend_da.ts                     | 1208 ++++---
  mythtv/i18n/mythfrontend_es_es.qm                  |  Bin 669897 -> 672530 bytes
- mythtv/i18n/mythfrontend_es_es.ts                  | 2180 ++++++------
+ mythtv/i18n/mythfrontend_es_es.ts                  | 2180 +++++------
  mythtv/i18n/mythfrontend_pl.qm                     |  Bin 350611 -> 354449 bytes
- mythtv/i18n/mythfrontend_pl.ts                     | 2733 ++++++++-------
+ mythtv/i18n/mythfrontend_pl.ts                     | 2733 +++++++-------
  mythtv/libs/libmyth/mythcontext.cpp                |    2 +-
+ mythtv/libs/libmyth/mythmediamonitor.cpp           |    2 +-
+ mythtv/libs/libmyth/programinfo.cpp                |   20 +-
+ mythtv/libs/libmythbase/mythdownloadmanager.cpp    |    2 +-
+ mythtv/libs/libmythbase/mythsystem.cpp             |    5 +
+ mythtv/libs/libmythbase/mythversion.h              |    2 +-
  mythtv/libs/libmythbase/signalhandling.cpp         |    8 +-
+ mythtv/libs/libmythdvdnav/dvdnav/dvd_types.h       |   11 +
+ mythtv/libs/libmythdvdnav/dvdnav/dvdnav.h          |    7 +
+ mythtv/libs/libmythdvdnav/dvdnav/highlight.c       |   60 +
+ .../libs/libmythtv/AirPlay/mythraopconnection.cpp  |  153 +-
+ mythtv/libs/libmythtv/Bluray/bdringbuffer.h        |    6 +-
+ mythtv/libs/libmythtv/Bluray/mythbdplayer.cpp      |    4 +-
+ mythtv/libs/libmythtv/DVD/avformatdecoderdvd.cpp   |    6 +
+ mythtv/libs/libmythtv/DVD/avformatdecoderdvd.h     |    1 +
+ mythtv/libs/libmythtv/DVD/dvdringbuffer.cpp        |   74 +-
+ mythtv/libs/libmythtv/DVD/dvdringbuffer.h          |    6 +-
+ mythtv/libs/libmythtv/DVD/mythdvdplayer.cpp        |   23 +-
+ mythtv/libs/libmythtv/DeviceReadBuffer.cpp         |    7 +-
+ mythtv/libs/libmythtv/HLS/httplivestreambuffer.cpp |   35 +-
  mythtv/libs/libmythtv/ThreadedFileWriter.cpp       |    2 +-
- mythtv/libs/libmythtv/mythplayer.cpp               |    4 +-
+ mythtv/libs/libmythtv/analogsignalmonitor.cpp      |    6 +-
+ mythtv/libs/libmythtv/analogsignalmonitor.h        |    1 +
+ mythtv/libs/libmythtv/asirecorder.cpp              |   15 +-
+ mythtv/libs/libmythtv/asirecorder.h                |    1 +
+ mythtv/libs/libmythtv/asisignalmonitor.cpp         |    6 +-
+ mythtv/libs/libmythtv/asisignalmonitor.h           |    1 +
+ mythtv/libs/libmythtv/avformatdecoder.cpp          |  227 +-
+ mythtv/libs/libmythtv/avformatdecoder.h            |    6 +-
+ mythtv/libs/libmythtv/avfringbuffer.cpp            |    4 +
+ mythtv/libs/libmythtv/avfringbuffer.h              |    6 +-
+ mythtv/libs/libmythtv/cc708window.cpp              |    2 +-
+ mythtv/libs/libmythtv/cetonrecorder.cpp            |   14 +-
+ mythtv/libs/libmythtv/cetonrecorder.h              |    1 +
+ mythtv/libs/libmythtv/cetonsignalmonitor.cpp       |    6 +-
+ mythtv/libs/libmythtv/cetonsignalmonitor.h         |    1 +
+ mythtv/libs/libmythtv/decoderbase.h                |    6 +-
+ mythtv/libs/libmythtv/dtvrecorder.cpp              |  339 +-
+ mythtv/libs/libmythtv/dtvrecorder.h                |    8 +-
+ mythtv/libs/libmythtv/dvbrecorder.cpp              |   14 +-
+ mythtv/libs/libmythtv/dvbrecorder.h                |    1 +
+ mythtv/libs/libmythtv/dvbsignalmonitor.cpp         |    6 +-
+ mythtv/libs/libmythtv/dvbsignalmonitor.h           |    1 +
+ mythtv/libs/libmythtv/filtermanager.cpp            |   38 +
+ mythtv/libs/libmythtv/firewiredevice.cpp           |    1 +
+ mythtv/libs/libmythtv/firewiresignalmonitor.cpp    |    6 +-
+ mythtv/libs/libmythtv/firewiresignalmonitor.h      |    1 +
+ mythtv/libs/libmythtv/hdhrrecorder.cpp             |   14 +-
+ mythtv/libs/libmythtv/hdhrrecorder.h               |    1 +
+ mythtv/libs/libmythtv/hdhrsignalmonitor.cpp        |    6 +-
+ mythtv/libs/libmythtv/hdhrsignalmonitor.h          |    1 +
+ mythtv/libs/libmythtv/iptvsignalmonitor.cpp        |    6 +-
+ mythtv/libs/libmythtv/iptvsignalmonitor.h          |    1 +
+ mythtv/libs/libmythtv/mpeg/mpegstreamdata.cpp      |    8 +-
+ mythtv/libs/libmythtv/mpeg/streamlisteners.h       |    5 +-
+ mythtv/libs/libmythtv/mpegrecorder.cpp             |   11 +-
+ mythtv/libs/libmythtv/mythccextractorplayer.cpp    |   12 +-
+ mythtv/libs/libmythtv/mythccextractorplayer.h      |    2 +-
+ mythtv/libs/libmythtv/mythcommflagplayer.cpp       |   21 +
+ mythtv/libs/libmythtv/mythplayer.cpp               |   43 +-
+ mythtv/libs/libmythtv/ringbuffer.h                 |    4 +-
+ mythtv/libs/libmythtv/signalmonitor.cpp            |    1 +
+ mythtv/libs/libmythtv/signalmonitor.h              |    1 +
+ mythtv/libs/libmythtv/tv_play.cpp                  |   13 +-
+ mythtv/libs/libmythtv/tv_rec.cpp                   |    6 +-
+ mythtv/libs/libmythui/libmythui.pro                |    1 +
  mythtv/libs/libmythui/mythscreenstack.cpp          |    2 +-
+ mythtv/libs/libmythui/mythuibuttonlist.cpp         |    2 +-
+ mythtv/libs/libmythui/mythuieditbar.cpp            |    1 +
  mythtv/libs/libmythui/mythuiimage.cpp              |    3 +-
- mythtv/libs/libmythui/mythuitype.cpp               |    7 +-
+ mythtv/libs/libmythui/mythuitype.cpp               |   11 +-
  mythtv/libs/libmythui/mythuiwebbrowser.cpp         |   10 +-
  mythtv/programs/mythavtest/main.cpp                |    5 +-
+ mythtv/programs/mythbackend/autoexpire.cpp         |    4 +-
+ mythtv/programs/mythbackend/autoexpire.h           |    1 -
  mythtv/programs/mythbackend/main.cpp               |    5 +-
  mythtv/programs/mythbackend/main_helpers.cpp       |    4 +-
- mythtv/programs/mythbackend/mainserver.cpp         |   16 +-
+ mythtv/programs/mythbackend/mainserver.cpp         |   18 +-
+ mythtv/programs/mythbackend/scheduler.cpp          |   72 +-
  mythtv/programs/mythccextractor/main.cpp           |    5 +-
+ mythtv/programs/mythcommflag/README.txt            |   10 +-
  mythtv/programs/mythcommflag/main.cpp              |    5 +-
  mythtv/programs/mythfilldatabase/main.cpp          |    5 +-
  mythtv/programs/mythfrontend/guidegrid.cpp         |   17 +-
  mythtv/programs/mythfrontend/main.cpp              |    5 +-
+ mythtv/programs/mythfrontend/playbackbox.cpp       |    4 +-
+ mythtv/programs/mythfrontend/scheduleeditor.cpp    |    2 +-
+ mythtv/programs/mythfrontend/services/frontend.cpp |    2 +-
+ mythtv/programs/mythfrontend/statusbox.cpp         |    8 +-
  mythtv/programs/mythjobqueue/main.cpp              |    5 +-
  mythtv/programs/mythlcdserver/main.cpp             |    5 +-
  mythtv/programs/mythlogserver/main.cpp             |    5 +-
  mythtv/programs/mythmediaserver/main.cpp           |    5 +-
  mythtv/programs/mythmetadatalookup/main.cpp        |    5 +-
  mythtv/programs/mythpreviewgen/main.cpp            |    5 +-
- mythtv/programs/mythshutdown/main.cpp              |    5 +-
+ mythtv/programs/mythshutdown/commandlineparser.cpp |   14 +-
+ mythtv/programs/mythshutdown/main.cpp              |   55 +-
  mythtv/programs/mythtranscode/main.cpp             |    5 +-
+ mythtv/programs/mythtranscode/transcode.cpp        |    6 +
  mythtv/programs/mythtv-setup/backendsettings.cpp   |    6 +-
  mythtv/programs/mythtv-setup/main.cpp              |    5 +-
  mythtv/programs/mythutil/main.cpp                  |    6 +-
  mythtv/programs/mythwelcome/main.cpp               |    5 +-
  .../distros/mythtv_data/data_mythtv.py             |   20 +-
- mythtv/programs/scripts/metadata/Movie/tmdb3.py    |  103 +-
- 51 files changed, 5902 insertions(+), 3379 deletions(-)
+ .../nv_python_libs/youtube/youtube_api.py          |   27 +-
+ mythtv/programs/scripts/metadata/Movie/tmdb3.py    |  109 +-
+ 144 files changed, 7551 insertions(+), 4606 deletions(-)
 
 diff --git a/README.rst b/README.rst
 index a151d89..576e0dc 100644
@@ -201,6 +294,194 @@
          <source>Burn DVD</source>
          <translation>Grabar DVD</translation>
      </message>
+diff --git a/mythplugins/mytharchive/mythburn/encoder_profiles/ffmpeg_dvd_ntsc.xml b/mythplugins/mytharchive/mythburn/encoder_profiles/ffmpeg_dvd_ntsc.xml
+index 208cdc5..d865b39 100644
+--- a/mythplugins/mytharchive/mythburn/encoder_profiles/ffmpeg_dvd_ntsc.xml
++++ b/mythplugins/mytharchive/mythburn/encoder_profiles/ffmpeg_dvd_ntsc.xml
+@@ -8,11 +8,11 @@
+         <parameter name="-v"           value="1"/>
+         <parameter name="-i"           value="%inputfile"/>
+         <parameter name="-r"           value="ntsc"/>
+-        <parameter name="-target"      value="dvd"/>
+-        <parameter name="-b"           value="9000k"/>
++        <parameter name="-target"      value="ntsc-dvd"/>
++        <parameter name="-b:v"         value="9000k"/>
+         <parameter name="-s"           value="720x480"/>
+         <parameter name="-acodec"      value="ac3"/>
+-        <parameter name="-ab"          value="192k"/>
++        <parameter name="-b:a"         value="192k"/>
+         <parameter name="-ac"          value="2"/>
+         <parameter name="-copyts"      value=""/>
+         <parameter name="-aspect"      value="%aspect"/>
+@@ -29,11 +29,11 @@
+         <parameter name="-v"      value="1"/>
+         <parameter name="-i"      value="%inputfile"/>
+         <parameter name="-r"      value="ntsc"/>
+-        <parameter name="-target" value="dvd"/>
+-        <parameter name="-b"      value="4771k"/>
++        <parameter name="-target" value="ntsc-dvd"/>
++        <parameter name="-b:v"    value="4771k"/>
+         <parameter name="-s"      value="720x480"/>
+         <parameter name="-acodec" value="ac3"/>
+-        <parameter name="-ab"     value="192k"/>
[...31344 lines suppressed...]
++            setWakeupTime(wakeuptime);
++        }
++    }
+     else if (cmdline.toBool("safeshutdown"))
+     { 
+         res = checkOKShutdown(true);
 diff --git a/mythtv/programs/mythtranscode/main.cpp b/mythtv/programs/mythtranscode/main.cpp
 index 49a1a7a..13d572b 100644
 --- a/mythtv/programs/mythtranscode/main.cpp
@@ -20854,6 +28446,23 @@
      SignalHandler::Init(signallist);
      signal(SIGHUP, SIG_IGN);
  #endif
+diff --git a/mythtv/programs/mythtranscode/transcode.cpp b/mythtv/programs/mythtranscode/transcode.cpp
+index c75b86a..e08f534 100755
+--- a/mythtv/programs/mythtranscode/transcode.cpp
++++ b/mythtv/programs/mythtranscode/transcode.cpp
+@@ -1527,6 +1527,12 @@ int Transcode::TranscodeFile(const QString &inputname,
+             case CODEC_ID_MP2:
+                 audio_codec_name = "mp2";
+                 break;
++            case CODEC_ID_AAC:
++                audio_codec_name = "aac";
++                break;
++            case CODEC_ID_AAC_LATM:
++                audio_codec_name = "aac_latm";
++                break;
+             default:
+                 audio_codec_name = "unknown";
+         }
 diff --git a/mythtv/programs/mythtv-setup/backendsettings.cpp b/mythtv/programs/mythtv-setup/backendsettings.cpp
 index c10ad6f..a52f0f3 100644
 --- a/mythtv/programs/mythtv-setup/backendsettings.cpp
@@ -20973,16 +28582,73 @@
              try:
                  self._data.update(func())
              except:
+diff --git a/mythtv/programs/scripts/internetcontent/nv_python_libs/youtube/youtube_api.py b/mythtv/programs/scripts/internetcontent/nv_python_libs/youtube/youtube_api.py
+index 29e1f641..f6f967f 100644
+--- a/mythtv/programs/scripts/internetcontent/nv_python_libs/youtube/youtube_api.py
++++ b/mythtv/programs/scripts/internetcontent/nv_python_libs/youtube/youtube_api.py
+@@ -212,16 +212,11 @@ class Videos(object):
+         self.tree_order = ['standard_feeds', 'location_feeds', 'local_feeds', 'category']
+         self.tree_org = {
+             'category': [
+-                ['Movies', u''],
+-                ['Trailers and Movies', ['Trailers', 'Movies']],
+-                ['Movies by Genre', ['Movies_Action_adventure', 'Movies_Drama', 'Movies_Sci_fi_fantasy', 'Movies_Thriller', 'Movies_Comedy', 'Movies_Classics', 'Movies_Horror', 'Movies_Family', 'Movies_Anime_animation', 'Movies_Foreign', 'Movies_Documentary', 'Movies_Shorts',]],
+-                ['Amateur', ['Shortmov', 'Film']],
+-                ['',u''],
+-                ['TV', ['Shows', 'Comedy',]],
++                ['', ['Film']],
+                 ['', ['Sports']],
+                 ['Information', ['News', 'Tech', 'Education', 'Howto', ]],
+-                ['Entertainment', ['Music', 'Games', 'Entertainment', ]],
+-                ['Other', ['Autos', 'Animals', 'Travel', 'Videoblog', 'People', 'Nonprofit']] ],
++                ['Entertainment', ['Comedy', 'Music', 'Games', 'Entertainment', ]],
++                ['Other', ['Autos', 'Animals', 'Travel', 'People', 'Nonprofit']] ],
+             'standard_feeds':
+                 [['Feeds', ['top_rated', 'top_favourites', 'most_viewed', 'most_popular', 'most_recent', 'most_discussed', 'most_responded', 'recently_featured', '']], ],
+             'local_feeds':
+@@ -234,8 +229,7 @@ class Videos(object):
+             'category': {
+                 '__default__': {'order': 'rating', 'max-results': '20', 'start-index': '1', 'Ir': self.config['language']},
+                 #'cat name': {'order: '', 'max-results': , 'start-index': , 'restriction: '', 'time': '', 'Ir': ''},
+-                'Trailers': {'max-results': '40', 'time': 'this_month',},
+-                'Movies': {'max-results': '40', 'time': 'this_month',},
++                'Film': {'max-results': '40', 'time': 'this_month',},
+                 'Music': {'max-results': '40', 'time': 'this_month',},
+                 'Sports': {'max-results': '40', 'time': 'this_month',},
+             },
+@@ -263,19 +257,12 @@ class Videos(object):
+             'local_feeds': {'top_rated': 'directories/topics/rated', 'top_favourites': 'directories/topics/most_subscribed', 'most_viewed': 'directories/topics/most_viewed', 'most_popular': None, 'most_recent': 'directories/topics/most_recent', 'most_discussed': 'directories/topics/most_comments', 'most_responded': None, 'recently_featured': 'directories/topics/featured'
+                 },
+             'category': {
+-                'Trailers and Movies': 'directories/topics/movies',
+-                'Movies by Genre': 'directories/topics/movies',
+-                'Amateur': 'directories/topics/movies',
+-                'TV': 'directories/topics/tv',
+-                'Movies': 'directories/topics/movies',
+-                'Trailers': 'directories/film_genres/trailers',
+-                'Movies_Action_adventure': 'directories/film_genres/action_adventure', 'Movies_Drama': 'directories/film_genres/drama', 'Movies_Sci_fi_fantasy': 'directories/film_genres/scifi', 'Movies_Thriller': 'directories/film_genres/thriller', 'Movies_Comedy': 'directories/film_genres/comedy', 'Movies_Classics': 'directories/film_genres/classics', 'Movies_Horror': 'directories/film_genres/horror', 'Movies_Family': 'directories/film_genres/family_films', 'Movies_Anime_animation': 'directories/film_genres/animation', 'Movies_Foreign': 'directories/film_genres/foreign_films', 'Movies_Documentary': 'directories/film_genres/documentaries', 'Movies_Shorts': 'directories/film_genres/short_film',
+-                'Shortmov': 'directories/film_genres/short_film', 'Film': 'directories/film_genres/animation',
+-                'Shows': 'directories/topics/tv', 'Comedy': 'directories/film_genres/comedy',
++                'Film': 'directories/topics/movies',
++                'Comedy': 'directories/film_genres/comedy',
+                 'Sports': 'directories/topics/sports',
+                 'News': 'directories/topics/news', 'Tech': 'directories/topics/technology', 'Education': 'directories/topics/education', 'Howto': 'directories/topics/howto',
+                 'Music': 'directories/topics/music', 'Games': 'directories/topics/games', 'Entertainment': 'directories/topics/entertainment',
+-                'Autos': 'directories/topics/automotive', 'Animals': 'directories/topics/animals', 'Travel': 'directories/topics/travel', 'Videoblog': 'directories/topics/videoblog', 'People': 'directories/topics/people', 'Nonprofit': 'directories/topics/nonprofit',
++                'Autos': 'directories/topics/automotive', 'Animals': 'directories/topics/animals', 'Travel': 'directories/topics/travel', 'People': 'directories/topics/people', 'Nonprofit': 'directories/topics/nonprofit',
+                 },
+             }
+ 
 diff --git a/mythtv/programs/scripts/metadata/Movie/tmdb3.py b/mythtv/programs/scripts/metadata/Movie/tmdb3.py
-index 6a133f5..853fbe4 100755
+index 6a133f5..0411e30 100755
 --- a/mythtv/programs/scripts/metadata/Movie/tmdb3.py
 +++ b/mythtv/programs/scripts/metadata/Movie/tmdb3.py
-@@ -11,19 +11,21 @@
+@@ -11,19 +11,22 @@
  #-----------------------
  __title__ = "TheMovieDB.org V3"
  __author__ = "Raymond Wagner"
 -__version__ = "0.3.0"
-+__version__ = "0.3.2"
++__version__ = "0.3.3"
  # 0.1.0 Initial version
  # 0.2.0 Add language support, move cache to home directory
  # 0.3.0 Enable version detection to allow use in MythTV
@@ -20992,6 +28658,7 @@
 +# 0.3.1 Add --test parameter for proper compatibility with mythmetadatalookup
 +# 0.3.2 Add --area parameter to allow country selection for release date and
 +#       parental ratings
++# 0.3.3 Use translated title if available
  
  from optparse import OptionParser
 -from lxml import etree
@@ -21005,18 +28672,17 @@
      movie = Movie(inetref)
      tree = etree.XML(u'<metadata></metadata>')
      mapping = [['runtime',      'runtime'],     ['title',       'originaltitle'],
-@@ -35,12 +37,30 @@ def buildSingle(inetref):
+@@ -35,12 +38,29 @@ def buildSingle(inetref):
      for i,j in mapping:
          if getattr(movie, j):
              setattr(m, i, getattr(movie, j))
 +
++    if movie.title:
++        m.title = movie.title
++
 +    releases = movie.releases.items()
 +
 +    if opts.country:
-+        for alt in movie.alternate_titles:
-+            if alt.country == opts.country:
-+                m.title = alt.title
-+                break
 +        try:
 +            # resort releases with selected country at top to ensure it
 +            # is selected by the metadata libraries
@@ -21039,6 +28705,15 @@
          if release.certification:
              m.certifications[country] = release.certification
      for genre in movie.genres:
+@@ -56,7 +76,7 @@ def buildSingle(inetref):
+         m.people.append(d)
+     for crew in movie.crew:
+         d = {'name':crew.name, 'job':crew.job, 'department':crew.department,
+-             'url':'http://www.themoviedb.org/people/{0}'.format(cast.id)}
++             'url':'http://www.themoviedb.org/people/{0}'.format(crew.id)}
+         if crew.profile: d['thumb'] = crew.profile.geturl()
+         m.people.append(d)
+     for backdrop in movie.backdrops:
 @@ -70,11 +90,15 @@ def buildSingle(inetref):
                                      xml_declaration=True))
      sys.exit()
@@ -21056,10 +28731,14 @@
      results = searchMovie(query)
      tree = etree.XML(u'<metadata></metadata>')
      mapping = [['runtime',      'runtime'],     ['title',       'originaltitle'],
-@@ -89,6 +113,10 @@ def buildList(query):
+@@ -89,6 +113,14 @@ def buildList(query):
              if getattr(res, j):
                  setattr(m, i, getattr(res, j))
          m.inetref = str(res.id)
++
++        if res.title:
++            m.title = res.title
++
 +        #TODO:
 +        # should releasedate and year be pulled from the country-specific data
 +        # or should it be left to the default information to cut down on
@@ -21067,7 +28746,7 @@
          if res.releasedate:
              m.year = res.releasedate.year
          if res.backdrop:
-@@ -109,7 +137,10 @@ def buildList(query):
+@@ -109,7 +141,10 @@ def buildList(query):
                                      xml_declaration=True))
      sys.exit(0)
  
@@ -21079,7 +28758,7 @@
      collection = Collection(inetref)
      tree = etree.XML(u'<metadata></metadata>')
      m = VideoMetadata()
-@@ -129,6 +160,7 @@ def buildCollection(inetref):
+@@ -129,6 +164,7 @@ def buildCollection(inetref):
      sys.exit()
  
  def buildVersion():
@@ -21087,7 +28766,7 @@
      version = etree.XML(u'<grabber></grabber>')
      etree.SubElement(version, "name").text = __title__
      etree.SubElement(version, "author").text = __author__
-@@ -142,43 +174,78 @@ def buildVersion():
+@@ -142,43 +178,78 @@ def buildVersion():
                                      xml_declaration=True))
      sys.exit(0)
  


Index: mythtv.spec
===================================================================
RCS file: /cvs/free/rpms/mythtv/F-17/mythtv.spec,v
retrieving revision 1.100
retrieving revision 1.101
diff -u -r1.100 -r1.101
--- mythtv.spec	29 Oct 2012 17:47:41 -0000	1.100
+++ mythtv.spec	6 Mar 2013 15:42:14 -0000	1.101
@@ -1,8 +1,7 @@
-# Specfile for building MythTV and MythPlugins RPMs from a subversion checkout.
+# Specfile for building MythTV and MythPlugins RPMs from a git checkout.
 #
-# by:   Chris Petersen <rpm at forevermore.net>
+# by:   Chris Petersen <cpetersen at mythtv.org>
 #       Jarod Wilson <jarod at wilsonet.com>
-#       Richard Shaw <hobbes1069 at gmail.com>
 #
 #  Modified/Extended from the great work of:
 #     Axel Thimm <Axel.Thimm at ATrpms.net>
@@ -31,9 +30,12 @@
 #
 # The following options are enabled by default.  Use these options to disable:
 #
+# --without systemd         Use systemd for backend rather than SysV init.
 # --without vdpau           Disable VDPAU support
+# --without vaapi           Disable VAAPI support
 # --without crystalhd       Disable Crystal HD support
 # --without perl            Disable building of the perl bindings
+# --without php             Disable building of the php bindings
 # --without python          Disable building of the python bindings
 #
 # # All plugins get built by default, but you can disable them as you wish:
@@ -58,8 +60,7 @@
 %define desktop_vendor RPMFusion
 
 # Git revision and branch ID
-# 0.25 release: git tag v0.25.1
-%define _gitrev v0.26.0-28-ge3087dd
+%define _gitrev v0.26.0-111-g3944ca9
 %define branch fixes/0.26
 
 # Mythtv and plugins from github.com
@@ -79,7 +80,7 @@
 %if "%{branch}" == "master"
 Release:        0.1.git.%{_gitrev}%{?dist}
 %else
-Release:        1%{?dist}
+Release:        7%{?dist}
 %endif
 
 # The primary license is GPLv2+, but bits are borrowed from a number of
@@ -97,6 +98,9 @@
 # Set "--with debug" to enable MythTV debug compile mode
 %define with_debug         %{?_with_debug:         1} %{?!_with_debug:         0}
 
+# Use SystemD service by default but allow use of SysV init script.
+%define with_systemd       %{?_without_systemd:    0} %{?!_without_systemd:    1}
+
 # The following options are enabled by default.  Use --without to disable them
 %define with_vdpau         %{?_without_vdpau:      0} %{?!_without_vdpau:      1}
 %define with_vaapi         %{?_without_vaapi:      0} %{?!_without_vaapi:      1}
@@ -132,7 +136,11 @@
 # https://github.com/MythTV/mythtv/tarball/v0.26
 Source0:   MythTV-%{name}-v%{version}-0-%{githash1}.tar.gz
 
+# From the mythtv git repository with the appropriate branch checked out:
+# git diff -p --stat v0.26.0 > mythtv-0.26-fixes.patch
 Patch0:    mythtv-0.26-fixes.patch
+Patch1:    mythlogserver-segv.patch
+Patch2:    mythtv-0.26.0-types_h.patch
 
 Source10:  PACKAGE-LICENSING
 Source11:  ChangeLog
@@ -147,17 +155,14 @@
 Source109: mythtv-setup.desktop
 Source111: 99-mythbackend.rules
 
-
 # Global MythTV and Shared Build Requirements
 
-%if 0%{?fedora} >= 16
+%if %{with_systemd}
 # Use systemd
 BuildRequires:  systemd-units
 Requires(post): systemd-units
 Requires(preun): systemd-units
 Requires(postun): systemd-units
-# For sysv -> systemd transition
-Requires(post): systemd-sysv
 %else
 # Use SysV
 Requires(post): chkconfig
@@ -169,10 +174,14 @@
 BuildRequires:  desktop-file-utils
 BuildRequires:  freetype-devel >= 2
 BuildRequires:  gcc-c++
+%if 0%{?fedora} >= 19
+BuildRequires:  mariadb-devel >= 5
+%else
 BuildRequires:  mysql-devel >= 5
+%endif
 BuildRequires:  qt-webkit-devel
 BuildRequires:  qt-devel >= 4.6
-BuildRequires:  phonon-devel
+BuildRequires:  phonon-devel phonon-backend-gstreamer
 BuildRequires:  libuuid-devel
 
 BuildRequires:  lm_sensors-devel
@@ -185,6 +194,9 @@
 BuildRequires:  libXvMC-devel
 BuildRequires:  libXxf86vm-devel
 BuildRequires:  mesa-libGLU-devel
+%ifarch %arm
+BuildRequires:  mesa-libGLES-devel
+%endif
 BuildRequires:  xorg-x11-proto-devel
 %ifarch %{ix86} x86_64
 BuildRequires:  xorg-x11-drv-intel-devel
@@ -216,7 +228,6 @@
 BuildRequires:  xvidcore-devel >= 0.9.1
 
 # Audio framework support
-BuildRequires:  SDL-devel
 BuildRequires:  sox-devel
 BuildRequires:  alsa-lib-devel
 BuildRequires:  jack-audio-connection-kit-devel
@@ -344,7 +355,11 @@
 Requires:  mythplugins        = %{version}-%{release}
 Requires:  mythweb            = %{version}
 Requires:  mythffmpeg         = %{version}-%{release}
+%if 0%{?fedora} >= 19
+Requires:  mariadb-server >= 5, mariadb >= 5
+%else
 Requires:  mysql-server >= 5, mysql >= 5
+%endif
 Requires:  xmltv
 
 # Generate the required mythtv-frontend-api version string here so we only
@@ -414,7 +429,11 @@
 Requires:  mythtv-libs = %{version}-%{release}
 
 Requires:  freetype-devel >= 2
+%if 0%{?fedora} >= 19
+Requires:  mariadb-devel >= 5
+%else
 Requires:  mysql-devel >= 5
+%endif
 Requires:  qt4-devel >= 4.6
 Requires:  lm_sensors-devel
 Requires:  lirc-devel
@@ -627,7 +646,6 @@
 BuildArch:      noarch
 
 Requires:       MySQL-python
-Requires:       PyXML
 Requires:       python-lxml
 
 %description -n python-MythTV
@@ -816,6 +834,8 @@
     fi
 
 %patch0 -p1 -b .mythtv
+%patch1 -p1 -b .mythlogserver
+%patch2 -p1 -b .types_h
 
 # Install ChangeLog
 install -m 0644 %{SOURCE11} .
@@ -889,7 +909,7 @@
     --enable-libtheora --enable-libvorbis       \
     --enable-libxvid                            \
 %if %{with_vdpau}
-    --enable-vdpau				\
+    --enable-vdpau                              \
 %endif
 %if %{with_vaapi}
     --enable-vaapi				\
@@ -1032,7 +1052,7 @@
     mkdir -p %{buildroot}%{_localstatedir}/cache/mythtv
     mkdir -p %{buildroot}%{_localstatedir}/log/mythtv
     mkdir -p %{buildroot}%{_sysconfdir}/logrotate.d
-    %if 0%{?fedora} >= 16
+    %if %{with_systemd}
     mkdir -p %{buildroot}%{_unitdir}
     %else
     mkdir -p %{buildroot}%{_sysconfdir}/init.d
@@ -1048,7 +1068,7 @@
     echo "# to be filled in by mythtv-setup" > %{buildroot}%{_sysconfdir}/mythtv/config.xml
 
     ### SystemD based setup. ###
-    %if 0%{?fedora} >= 16
+    %if %{with_systemd}
     install -p -m 0644 %{SOURCE105} %{buildroot}%{_unitdir}/
     install -p -m 0644 %{SOURCE104} %{buildroot}%{_sysconfdir}/logrotate.d/mythtv
     # Install udev rules for devices that may initialize late in the boot
@@ -1158,7 +1178,7 @@
 exit 0
 
 %post backend
-%if 0%{?fedora} >= 16
+%if %{with_systemd}
 if [ $1 -eq 1 ] ; then 
     # Initial installation 
     /bin/systemctl daemon-reload >/dev/null 2>&1 || :
@@ -1169,7 +1189,7 @@
 
 
 %preun backend
-%if 0%{?fedora} >= 16
+%if %{with_systemd}
 if [ $1 -eq 0 ] ; then
     # Package removal, not upgrade
     /bin/systemctl --no-reload disable mythbackend.service > /dev/null 2>&1 || :
@@ -1183,7 +1203,7 @@
 %endif
 
 %postun backend
-%if 0%{?fedora} >= 16
+%if %{with_systemd}
 /bin/systemctl daemon-reload >/dev/null 2>&1 || :
 if [ $1 -ge 1 ] ; then
     # Package upgrade, not uninstall
@@ -1195,21 +1215,6 @@
 fi
 %endif
 
-%if 0%{?fedora} >= 16
-%triggerun -- mythtv < 0.24.1-3
-# Save the current service runlevel info
-# User must manually run systemd-sysv-convert --apply httpd
-# to migrate them to systemd targets
-/usr/bin/systemd-sysv-convert --save mythbackend >/dev/null 2>&1 ||:
-
-# If the package is allowed to autostart:
-/bin/systemctl --no-reload enable mythbackend.service >/dev/null 2>&1 ||:
-
-# Run these because the SysV package being removed won't do them
-/sbin/chkconfig --del mythbackend >/dev/null 2>&1 || :
-/bin/systemctl try-restart mythbackend.service >/dev/null 2>&1 || :
-%endif
-
 ################################################################################
 
 %files
@@ -1255,7 +1260,7 @@
 %{_datadir}/mythtv/backend-config/
 %attr(-,mythtv,mythtv) %dir %{_localstatedir}/lib/mythtv
 %attr(-,mythtv,mythtv) %dir %{_localstatedir}/cache/mythtv
-%if 0%{?fedora} >=16
+%if %{with_systemd}
 %{_unitdir}/mythbackend.service
 /lib/udev/rules.d/99-mythbackend.rules
 %else
@@ -1323,8 +1328,8 @@
 %{perl_vendorlib}/MythTV.pm
 %dir %{perl_vendorlib}/MythTV
 %{perl_vendorlib}/MythTV/*.pm
-%dir %{perl_vendorlib}/IO/Socket
-%dir %{perl_vendorlib}/IO/Socket/INET
+#%dir %{perl_vendorlib}/IO/Socket
+#%dir %{perl_vendorlib}/IO/Socket/INET
 %{perl_vendorlib}/IO/Socket/INET/MythTV.pm
 %exclude %{perl_vendorarch}/auto/MythTV/.packlist
 %endif
@@ -1452,6 +1457,24 @@
 
 
 %changelog
+* Tue Feb 26 2013 Richard Shaw <hobbes1069 at gmail.com> - 0.26.0-7
+- Update to latest fixes/0.26, v0.26.0-111-g3944ca9.
+- Add patch for mythlogserver segfault.
+- Add patch for includes in bundled ffmpeg.
+- Add conditionals for mariadb replacing mysql in rawhide (F19).
+
+* Sun Jan 20 2013 Nicolas Chauvet <kwizart at gmail.com> - 0.26.0-5
+- Rebuilt for ffmpeg/x264
+
+* Sat Dec 22 2012 Richard Shaw <hobbes1069 at gmail.com> - 0.26.0-4
+- Update to latest upstream release.
+
+* Tue Dec  4 2012 Richard Shaw <hobbes1069 at gmail.com> - 0.26.0-3
+- Update to latest upstream release.
+
+* Fri Nov 23 2012 Nicolas Chauvet <kwizart at gmail.com> - 0.26.0-2
+- Rebuilt for x264
+
 * Sun Oct 28 2012 Richard Shaw <hobbes1069 at gmail.com> - 0.26.0-1
 - Update to latest upstream release.
 - Remove mysql.txt as it is no longer used.
@@ -1504,7 +1527,7 @@
 * Tue Mar 20 2012 Richard Shaw <hobbes1069 at gmail.com> - 0.25-1
 - Update to latest release 0.25.
 
-* Fri Mar 03 2012 Richard Shaw <hobbes1069 at gmail.com> - 0.24.2-2
+* Sat Mar 03 2012 Richard Shaw <hobbes1069 at gmail.com> - 0.24.2-2
 - Remove transcode as build requirement.
 - Misc. spec file cleanup.
 
@@ -1532,7 +1555,7 @@
 - Changes default user for mythbackend from root to mythtv on
   Fedora 16+. See http://rpmfusion.org/Package/mythtv for additonal information.
 
-* Sun Oct 20 2011 Richard Shaw <hobbes1069 at gmail.com> - 0.24.1-3
+* Thu Oct 20 2011 Richard Shaw <hobbes1069 at gmail.com> - 0.24.1-3
 - Update to latest 0.24.1-fixes, git revision e89d6a9f7e.
 - Fixes BZ#1993, FTBFS on Fedora 16.
 - Moves from sysv init to systemd unit file for mythbackend on Fedora 16+


More information about the rpmfusion-commits mailing list