Revision: 5761
Author: pebender
Date: Sat Oct 31 08:26:41 2009
Log: - Added MythTV configuration option for enabling/disabling DRM vsync.


http://code.google.com/p/minimyth/source/detail?r=5761

Added:
   
/trunk/gar-minimyth/script/myth-0.20/mythtv/files/mythtv-0.20-drm_vsync_control.patch
   
/trunk/gar-minimyth/script/myth-0.20-softpad/mythtv/files/mythtv-0.20-drm_vsync_control.patch
   
/trunk/gar-minimyth/script/myth-0.21/mythtv/files/mythtv-0.21-drm_vsync_control.patch
   
/trunk/gar-minimyth/script/myth-0.22/mythtv/files/mythtv-0.22-drm_vsync_control.patch
   
/trunk/gar-minimyth/script/myth-trunk/mythtv/files/mythtv-trunk-drm_vsync_control.patch
Modified:
  /trunk/gar-minimyth/html/minimyth/document-changelog.txt
  /trunk/gar-minimyth/script/myth-0.20/mythtv/Makefile
  /trunk/gar-minimyth/script/myth-0.20/mythtv/checksums
  /trunk/gar-minimyth/script/myth-0.20-softpad/mythtv/Makefile
  /trunk/gar-minimyth/script/myth-0.20-softpad/mythtv/checksums
  /trunk/gar-minimyth/script/myth-0.21/mythtv/Makefile
  /trunk/gar-minimyth/script/myth-0.21/mythtv/checksums
  /trunk/gar-minimyth/script/myth-0.22/mythtv/Makefile
  /trunk/gar-minimyth/script/myth-0.22/mythtv/checksums
  /trunk/gar-minimyth/script/myth-trunk/mythtv/Makefile
  /trunk/gar-minimyth/script/myth-trunk/mythtv/checksums

=======================================
--- /dev/null
+++  
/trunk/gar-minimyth/script/myth-0.20/mythtv/files/mythtv-0.20-drm_vsync_control.patch
    
Sat Oct 31 08:26:41 2009
@@ -0,0 +1,52 @@
+diff -Naur mythtv-0.20-16082-old/libs/libmythtv/vsync.cpp  
mythtv-0.20-16082-new/libs/libmythtv/vsync.cpp
+--- mythtv-0.20-16082-old/libs/libmythtv/vsync.cpp     2008-09-15  
14:04:57.000000000 -0700
++++ mythtv-0.20-16082-new/libs/libmythtv/vsync.cpp     2009-10-31  
08:18:32.000000000 -0700
+@@ -76,6 +76,8 @@
+ {
+     VideoSync *trial = NULL;
+     tryingVideoSync  = true;
++    bool tryDRM      = (gContext->GetNumSetting("UseDRMVSync", 1) &&
++                        (getenv("NO_DRM_VSYNC") == NULL));
+     bool tryOpenGL   = (gContext->GetNumSetting("UseOpenGLVSync", 1) &&
+                         (getenv("NO_OPENGL_VSYNC") == NULL));
+
+@@ -92,7 +94,8 @@
+     }
+
+     TESTVIDEOSYNC(nVidiaVideoSync);
+-    TESTVIDEOSYNC(DRMVideoSync);
++    if (tryDRM)
++        TESTVIDEOSYNC(DRMVideoSync);
+     if (tryOpenGL)
+         TESTVIDEOSYNC(OpenGLVideoSync);
+ #ifdef __linux__
+diff -Naur mythtv-0.20-16082-old/programs/mythfrontend/globalsettings.cpp  
mythtv-0.20-16082-new/programs/mythfrontend/globalsettings.cpp
+--- mythtv-0.20-16082-old/programs/mythfrontend/globalsettings.cpp      
2008-09-15 14:05:07.000000000 -0700
++++ mythtv-0.20-16082-new/programs/mythfrontend/globalsettings.cpp      
2009-10-31 08:19:16.000000000 -0700
+@@ -2651,6 +2651,18 @@
+     return gc;
+ }
+
++static HostCheckBox *UseDRMVSync()
++{
++    HostCheckBox *gc = new HostCheckBox("UseDRMVSync");
++    gc->setLabel(QObject::tr("Enable DRM vertical sync for timing"));
++    gc->setValue(false);
++    gc->setHelpText(QObject::tr(
++                        "If it is supported by your hardware/drivers, "
++                        "MythTV will use DRM vertical syncing for "
++                        "video timing, reducing frame jitter."));
++    return gc;
++}
++
+ #ifdef USING_OPENGL_VSYNC
+ static HostCheckBox *UseOpenGLVSync()
+ {
+@@ -3402,6 +3414,7 @@
+     general->addChild(new DeinterlaceSettings());
+     general->addChild(CustomFilters());
+     general->addChild(PreferredMPEG2Decoder());
++    general1->addChild(UseDRMVSync());
+ #ifdef USING_OPENGL_VSYNC
+     general->addChild(UseOpenGLVSync());
+ #endif // USING_OPENGL_VSYNC
=======================================
--- /dev/null
+++  
/trunk/gar-minimyth/script/myth-0.20-softpad/mythtv/files/mythtv-0.20-drm_vsync_control.patch
    
Sat Oct 31 08:26:41 2009
@@ -0,0 +1,52 @@
+diff -Naur mythtv-0.20-16082-old/libs/libmythtv/vsync.cpp  
mythtv-0.20-16082-new/libs/libmythtv/vsync.cpp
+--- mythtv-0.20-16082-old/libs/libmythtv/vsync.cpp     2008-09-15  
14:04:57.000000000 -0700
++++ mythtv-0.20-16082-new/libs/libmythtv/vsync.cpp     2009-10-31  
08:23:16.000000000 -0700
+@@ -76,6 +76,8 @@
+ {
+     VideoSync *trial = NULL;
+     tryingVideoSync  = true;
++    bool tryDRM      = (gContext->GetNumSetting("UseDRMVSync", 1) &&
++                        (getenv("NO_DRM_VSYNC") == NULL));
+     bool tryOpenGL   = (gContext->GetNumSetting("UseOpenGLVSync", 1) &&
+                         (getenv("NO_OPENGL_VSYNC") == NULL));
+
+@@ -92,7 +94,8 @@
+     }
+
+     TESTVIDEOSYNC(nVidiaVideoSync);
+-    TESTVIDEOSYNC(DRMVideoSync);
++    if (tryDRM)
++        TESTVIDEOSYNC(DRMVideoSync);
+     if (tryOpenGL)
+         TESTVIDEOSYNC(OpenGLVideoSync);
+ #ifdef __linux__
+diff -Naur mythtv-0.20-16082-old/programs/mythfrontend/globalsettings.cpp  
mythtv-0.20-16082-new/programs/mythfrontend/globalsettings.cpp
+--- mythtv-0.20-16082-old/programs/mythfrontend/globalsettings.cpp      
2008-09-15 14:05:07.000000000 -0700
++++ mythtv-0.20-16082-new/programs/mythfrontend/globalsettings.cpp      
2009-10-31 08:23:16.000000000 -0700
+@@ -2651,6 +2651,18 @@
+     return gc;
+ }
+
++static HostCheckBox *UseDRMVSync()
++{
++    HostCheckBox *gc = new HostCheckBox("UseDRMVSync");
++    gc->setLabel(QObject::tr("Enable DRM vertical sync for timing"));
++    gc->setValue(false);
++    gc->setHelpText(QObject::tr(
++                        "If it is supported by your hardware/drivers, "
++                        "MythTV will use DRM vertical syncing for "
++                        "video timing, reducing frame jitter."));
++    return gc;
++}
++
+ #ifdef USING_OPENGL_VSYNC
+ static HostCheckBox *UseOpenGLVSync()
+ {
+@@ -3402,6 +3414,7 @@
+     general->addChild(new DeinterlaceSettings());
+     general->addChild(CustomFilters());
+     general->addChild(PreferredMPEG2Decoder());
++    general1->addChild(UseDRMVSync());
+ #ifdef USING_OPENGL_VSYNC
+     general->addChild(UseOpenGLVSync());
+ #endif // USING_OPENGL_VSYNC
=======================================
--- /dev/null
+++  
/trunk/gar-minimyth/script/myth-0.21/mythtv/files/mythtv-0.21-drm_vsync_control.patch
    
Sat Oct 31 08:26:41 2009
@@ -0,0 +1,52 @@
+diff -Naur mythtv-0.21-21625-old/libs/libmythtv/vsync.cpp  
mythtv-0.21-21625-new/libs/libmythtv/vsync.cpp
+--- mythtv-0.21-21625-old/libs/libmythtv/vsync.cpp     2009-10-31  
07:34:00.000000000 -0700
++++ mythtv-0.21-21625-new/libs/libmythtv/vsync.cpp     2009-10-31  
07:34:17.000000000 -0700
+@@ -76,6 +76,8 @@
+ {
+     VideoSync *trial = NULL;
+     tryingVideoSync  = true;
++    bool tryDRM      = (gContext->GetNumSetting("UseDRMVSync", 1) &&
++                        (getenv("NO_DRM_VSYNC") == NULL));
+     bool tryOpenGL   = (gContext->GetNumSetting("UseOpenGLVSync", 1) &&
+                         (getenv("NO_OPENGL_VSYNC") == NULL));
+
+@@ -96,7 +98,8 @@
+ #endif
+ #ifndef _WIN32
+     TESTVIDEOSYNC(nVidiaVideoSync);
+-    TESTVIDEOSYNC(DRMVideoSync);
++    if (tryDRM)
++        TESTVIDEOSYNC(DRMVideoSync);
+     if (tryOpenGL)
+         TESTVIDEOSYNC(OpenGLVideoSync);
+ #endif // _WIN32
+diff -Naur mythtv-0.21-21625-old/programs/mythfrontend/globalsettings.cpp  
mythtv-0.21-21625-new/programs/mythfrontend/globalsettings.cpp
+--- mythtv-0.21-21625-old/programs/mythfrontend/globalsettings.cpp      
2009-09-04 19:51:42.000000000 -0700
++++ mythtv-0.21-21625-new/programs/mythfrontend/globalsettings.cpp      
2009-10-31 07:34:17.000000000 -0700
+@@ -3790,6 +3790,18 @@
+ }
+ #endif
+
++static HostCheckBox *UseDRMVSync()
++{
++    HostCheckBox *gc = new HostCheckBox("UseDRMVSync");
++    gc->setLabel(QObject::tr("Enable DRM vertical sync for timing"));
++    gc->setValue(false);
++    gc->setHelpText(QObject::tr(
++                        "If it is supported by your hardware/drivers, "
++                        "MythTV will use DRM vertical syncing for "
++                        "video timing, reducing frame jitter."));
++    return gc;
++}
++
+ #ifdef USING_OPENGL_VSYNC
+ static HostCheckBox *UseOpenGLVSync()
+ {
+@@ -4578,6 +4590,7 @@
+
+     general1->addChild(columns);
+     general1->addChild(AlwaysStreamFiles());
++    general1->addChild(UseDRMVSync());
+ #ifdef USING_OPENGL_VSYNC
+     general1->addChild(UseOpenGLVSync());
+ #endif // USING_OPENGL_VSYNC
=======================================
--- /dev/null
+++  
/trunk/gar-minimyth/script/myth-0.22/mythtv/files/mythtv-0.22-drm_vsync_control.patch
    
Sat Oct 31 08:26:41 2009
@@ -0,0 +1,52 @@
+diff -Naur mythtv-0.22-22659-old/libs/libmythtv/vsync.cpp  
mythtv-0.22-22659-new/libs/libmythtv/vsync.cpp
+--- mythtv-0.22-22659-old/libs/libmythtv/vsync.cpp     2009-10-30  
11:40:19.000000000 -0700
++++ mythtv-0.22-22659-new/libs/libmythtv/vsync.cpp     2009-10-31  
08:12:36.000000000 -0700
+@@ -81,6 +81,8 @@
+ {
+     VideoSync *trial = NULL;
+     tryingVideoSync  = true;
++    bool tryDRM      = (gContext->GetNumSetting("UseDRMVSync", 1) &&
++                        (getenv("NO_DRM_VSYNC") == NULL));
+     bool tryOpenGL   = (gContext->GetNumSetting("UseOpenGLVSync", 1) &&
+                         (getenv("NO_OPENGL_VSYNC") == NULL));
+
+@@ -100,7 +102,8 @@
+ //    TESTVIDEOSYNC(VDPAUVideoSync);
+ #endif
+ #ifndef _WIN32
+-    TESTVIDEOSYNC(DRMVideoSync);
++    if (tryDRM)
++        TESTVIDEOSYNC(DRMVideoSync);
+     if (tryOpenGL)
+         TESTVIDEOSYNC(OpenGLVideoSync);
+ #endif // _WIN32
+diff -Naur mythtv-0.22-22659-old/programs/mythfrontend/globalsettings.cpp  
mythtv-0.22-22659-new/programs/mythfrontend/globalsettings.cpp
+--- mythtv-0.22-22659-old/programs/mythfrontend/globalsettings.cpp      
2009-10-30 11:40:31.000000000 -0700
++++ mythtv-0.22-22659-new/programs/mythfrontend/globalsettings.cpp      
2009-10-31 08:11:14.000000000 -0700
+@@ -3916,6 +3916,18 @@
+ }
+ #endif
+
++static HostCheckBox *UseDRMVSync()
++{
++    HostCheckBox *gc = new HostCheckBox("UseDRMVSync");
++    gc->setLabel(QObject::tr("Enable DRM vertical sync for timing"));
++    gc->setValue(false);
++    gc->setHelpText(QObject::tr(
++                        "If it is supported by your hardware/drivers, "
++                        "MythTV will use DRM vertical syncing for "
++                        "video timing, reducing frame jitter."));
++    return gc;
++}
++
+ #ifdef USING_OPENGL_VSYNC
+ static HostCheckBox *UseOpenGLVSync()
+ {
+@@ -4710,6 +4722,7 @@
+     general1->addChild(columns);
+     general1->addChild(LiveTVIdleTimeout());
+     general1->addChild(AlwaysStreamFiles());
++    general1->addChild(UseDRMVSync());
+ #ifdef USING_OPENGL_VSYNC
+     general1->addChild(UseOpenGLVSync());
+ #endif // USING_OPENGL_VSYNC
=======================================
--- /dev/null
+++  
/trunk/gar-minimyth/script/myth-trunk/mythtv/files/mythtv-trunk-drm_vsync_control.patch
  
Sat Oct 31 08:26:41 2009
@@ -0,0 +1,52 @@
+diff -Naur mythtv-trunk-22658-old/libs/libmythtv/vsync.cpp  
mythtv-trunk-22658-new/libs/libmythtv/vsync.cpp
+--- mythtv-trunk-22658-old/libs/libmythtv/vsync.cpp    2009-10-30  
11:45:04.000000000 -0700
++++ mythtv-trunk-22658-new/libs/libmythtv/vsync.cpp    2009-10-31  
08:15:09.000000000 -0700
+@@ -81,6 +81,8 @@
+ {
+     VideoSync *trial = NULL;
+     tryingVideoSync  = true;
++    bool tryDRM      = (gContext->GetNumSetting("UseDRMVSync", 1) &&
++                        (getenv("NO_DRM_VSYNC") == NULL));
+     bool tryOpenGL   = (gContext->GetNumSetting("UseOpenGLVSync", 1) &&
+                         (getenv("NO_OPENGL_VSYNC") == NULL));
+
+@@ -100,7 +102,8 @@
+ //    TESTVIDEOSYNC(VDPAUVideoSync);
+ #endif
+ #ifndef _WIN32
+-    TESTVIDEOSYNC(DRMVideoSync);
++    if (tryDRM)
++        TESTVIDEOSYNC(DRMVideoSync);
+     if (tryOpenGL)
+         TESTVIDEOSYNC(OpenGLVideoSync);
+ #endif // _WIN32
+diff -Naur mythtv-trunk-22658-old/programs/mythfrontend/globalsettings.cpp  
mythtv-trunk-22658-new/programs/mythfrontend/globalsettings.cpp
+--- mythtv-trunk-22658-old/programs/mythfrontend/globalsettings.cpp     
2009-10-30 11:45:19.000000000 -0700
++++ mythtv-trunk-22658-new/programs/mythfrontend/globalsettings.cpp     
2009-10-31 08:15:09.000000000 -0700
+@@ -4031,6 +4031,18 @@
+ }
+ #endif
+
++static HostCheckBox *UseDRMVSync()
++{
++    HostCheckBox *gc = new HostCheckBox("UseDRMVSync");
++    gc->setLabel(QObject::tr("Enable DRM vertical sync for timing"));
++    gc->setValue(false);
++    gc->setHelpText(QObject::tr(
++                        "If it is supported by your hardware/drivers, "
++                        "MythTV will use DRM vertical syncing for "
++                        "video timing, reducing frame jitter."));
++    return gc;
++}
++
+ #ifdef USING_OPENGL_VSYNC
+ static HostCheckBox *UseOpenGLVSync()
+ {
+@@ -4587,6 +4599,7 @@
+     general1->addChild(columns);
+     general1->addChild(LiveTVIdleTimeout());
+     general1->addChild(AlwaysStreamFiles());
++    general1->addChild(UseDRMVSync());
+ #ifdef USING_OPENGL_VSYNC
+     general1->addChild(UseOpenGLVSync());
+ #endif // USING_OPENGL_VSYNC
=======================================
--- /trunk/gar-minimyth/html/minimyth/document-changelog.txt    Sat Oct 31  
07:26:41 2009
+++ /trunk/gar-minimyth/html/minimyth/document-changelog.txt    Sat Oct 31  
08:26:41 2009
@@ -17,6 +17,9 @@
      MythTV 0.22:         version 0.22.0,         release-0-22-fixes branch  
svn 22659.
      MythTV trunk:        version trunk.22658     trunk svn 22658.

+Modified MythTV
+    - Added MythTV configuration option for enabling/disabling DRM vsync.
+
  Modified mediaplayers
      - Updated Xine VDPAU patch.
      - Updated FFMpeg and MPlayer multi-threading patches.
=======================================
--- /trunk/gar-minimyth/script/myth-0.20/mythtv/Makefile        Fri Oct  9  
13:44:36 2009
+++ /trunk/gar-minimyth/script/myth-0.20/mythtv/Makefile        Sat Oct 31  
08:26:41 2009
@@ -19,7 +19,8 @@
        $(DISTNAME_SHORT)-hulu.patch \
        $(DISTNAME_SHORT)-networkcontrol.patch \
        $(DISTNAME_SHORT)-eject.patch \
-        $(DISTNAME_SHORT)-udevinfo.patch \
+       $(DISTNAME_SHORT)-udevinfo.patch \
+       $(DISTNAME_SHORT)-drm_vsync_control.patch \
        $(DISTNAME_SHORT)-lm_sensors_detect.patch \
        $(DISTNAME_SHORT).patch.gar \
        $(DISTNAME_SHORT)-init.patch \
=======================================
--- /trunk/gar-minimyth/script/myth-0.20/mythtv/checksums       Wed Oct 14  
13:35:45 2009
+++ /trunk/gar-minimyth/script/myth-0.20/mythtv/checksums       Sat Oct 31  
08:26:41 2009
@@ -13,6 +13,7 @@
  6e51c985ef96e16a50117c192e461773  download/mythtv-0.20-networkcontrol.patch
  9a25dde95778e63d987a3c3c7e9a75f7  download/mythtv-0.20-eject.patch
  aa6cc37f6bbc2f2a78f36005a8f58ad7  download/mythtv-0.20-udevinfo.patch
+28d0cc19a6a83259df8dbd36afdf8531   
download/mythtv-0.20-drm_vsync_control.patch
  050e7a83fc11fb931d546bd8f0cac9cf   
download/mythtv-0.20-lm_sensors_detect.patch
  8a36c67758365c1e6d81ae306c66b582  download/mythtv-0.20.patch.gar
  d7a0657ed891e0292da7e7805da2a068  download/mythtv-0.20-init.patch
=======================================
--- /trunk/gar-minimyth/script/myth-0.20-softpad/mythtv/Makefile        Fri Oct 
 9  
13:44:36 2009
+++ /trunk/gar-minimyth/script/myth-0.20-softpad/mythtv/Makefile        Sat Oct 
31  
08:26:41 2009
@@ -20,6 +20,7 @@
        $(DISTNAME_SHORT)-networkcontrol.patch \
        $(DISTNAME_SHORT)-eject.patch \
        $(DISTNAME_SHORT)-udevinfo.patch \
+       $(DISTNAME_SHORT)-drm_vsync_control.patch \
        $(DISTNAME_SHORT)-lm_sensors_detect.patch \
        $(DISTNAME_SHORT).patch.gar \
        $(DISTNAME_SHORT)-init.patch \
=======================================
--- /trunk/gar-minimyth/script/myth-0.20-softpad/mythtv/checksums       Wed Oct 
 
14 13:35:45 2009
+++ /trunk/gar-minimyth/script/myth-0.20-softpad/mythtv/checksums       Sat Oct 
 
31 08:26:41 2009
@@ -13,6 +13,7 @@
  4c244ef681fdf8d76c1c6d55bad9b038  download/mythtv-0.20-networkcontrol.patch
  0847e4ebdf7ae63d7ca049411a5a0061  download/mythtv-0.20-eject.patch
  aa6cc37f6bbc2f2a78f36005a8f58ad7  download/mythtv-0.20-udevinfo.patch
+5560233bfdf4e35101ef3158e2def2a1   
download/mythtv-0.20-drm_vsync_control.patch
  29a195b9bda7d60b19a53773766c4936   
download/mythtv-0.20-lm_sensors_detect.patch
  3270bdf136cc22c258a4f0301ba4960f  download/mythtv-0.20.patch.gar
  79861a7f8944f95b44bdffc0a54ef95e  download/mythtv-0.20-init.patch
=======================================
--- /trunk/gar-minimyth/script/myth-0.21/mythtv/Makefile        Fri Oct  9  
13:44:36 2009
+++ /trunk/gar-minimyth/script/myth-0.21/mythtv/Makefile        Sat Oct 31  
08:26:41 2009
@@ -17,6 +17,7 @@
        $(DISTNAME_SHORT)-networkcontrol.patch \
        $(DISTNAME_SHORT)-eject.patch \
        $(DISTNAME_SHORT)-udevinfo.patch \
+       $(DISTNAME_SHORT)-drm_vsync_control.patch \
        $(DISTNAME_SHORT).patch.gar \
        $(DISTNAME_SHORT)-init.patch \
        $(DISTNAME_SHORT)-minimyth.patch \
=======================================
--- /trunk/gar-minimyth/script/myth-0.21/mythtv/checksums       Wed Oct 14  
13:35:45 2009
+++ /trunk/gar-minimyth/script/myth-0.21/mythtv/checksums       Sat Oct 31  
08:26:41 2009
@@ -10,6 +10,7 @@
  d997e8d2ed3939152bf9bc768f054d42  download/mythtv-0.21-networkcontrol.patch
  000b713185be2fcf7658e5348a45c83f  download/mythtv-0.21-eject.patch
  34dd6b9f67075bcaf3569549365fe187  download/mythtv-0.21-udevinfo.patch
+41d221e25a8328b4959dcdc8cd035052   
download/mythtv-0.21-drm_vsync_control.patch
  83ef0d0173e9423e99bdd38ce58fea03  download/mythtv-0.21.patch.gar
  cf43dac90cef1cee6daf7262105cff0d  download/mythtv-0.21-init.patch
  5142effa92ea9978982a482ca2da0db0  download/mythtv-0.21-minimyth.patch
=======================================
--- /trunk/gar-minimyth/script/myth-0.22/mythtv/Makefile        Sat Oct 24  
09:10:14 2009
+++ /trunk/gar-minimyth/script/myth-0.22/mythtv/Makefile        Sat Oct 31  
08:26:41 2009
@@ -12,6 +12,7 @@
        $(DISTNAME_SHORT)-networkcontrol.patch \
        $(DISTNAME_SHORT)-eject.patch \
        $(DISTNAME_SHORT)-udevinfo.patch \
+       $(DISTNAME_SHORT)-drm_vsync_control.patch \
        $(DISTNAME_SHORT).patch.gar \
        $(DISTNAME_SHORT)-init.patch \
        $(DISTNAME_SHORT)-minimyth.patch \
=======================================
--- /trunk/gar-minimyth/script/myth-0.22/mythtv/checksums       Fri Oct 30  
13:32:21 2009
+++ /trunk/gar-minimyth/script/myth-0.22/mythtv/checksums       Sat Oct 31  
08:26:41 2009
@@ -5,6 +5,7 @@
  e6ead028a68892e00a2ae25e9d35cb87  download/mythtv-0.22-networkcontrol.patch
  83db8f586ecf2c12d644a8caa19c6956  download/mythtv-0.22-eject.patch
  ded1d4263f55067de08dccff72ed5692  download/mythtv-0.22-udevinfo.patch
+bf88c2f54422731746b472947ba5ead2   
download/mythtv-0.22-drm_vsync_control.patch
  efd16b1063db9ce8a5639043b447e092  download/mythtv-0.22.patch.gar
  ec24cc1198bddc6d3b42dfe0d00cb8fe  download/mythtv-0.22-init.patch
  f00e027ea7e322f3052822eefff80e04  download/mythtv-0.22-minimyth.patch
=======================================
--- /trunk/gar-minimyth/script/myth-trunk/mythtv/Makefile       Fri Oct 30  
13:32:21 2009
+++ /trunk/gar-minimyth/script/myth-trunk/mythtv/Makefile       Sat Oct 31  
08:26:41 2009
@@ -12,6 +12,7 @@
        $(DISTNAME_SHORT)-networkcontrol.patch \
        $(DISTNAME_SHORT)-eject.patch \
        $(DISTNAME_SHORT)-udevinfo.patch \
+       $(DISTNAME_SHORT)-drm_vsync_control.patch \
        $(DISTNAME_SHORT).patch.gar \
        $(DISTNAME_SHORT)-init.patch \
        $(DISTNAME_SHORT)-minimyth.patch \
=======================================
--- /trunk/gar-minimyth/script/myth-trunk/mythtv/checksums      Fri Oct 30  
13:32:21 2009
+++ /trunk/gar-minimyth/script/myth-trunk/mythtv/checksums      Sat Oct 31  
08:26:41 2009
@@ -5,6 +5,7 @@
  c2d6b7ab571385882af339d3a51565a7   
download/mythtv-trunk-networkcontrol.patch
  12089f9609e92d519d09695bd2572d82  download/mythtv-trunk-eject.patch
  5f32e20b02cc5c8f18607b598a61ce54  download/mythtv-trunk-udevinfo.patch
+28e58ec5a97781dfe2ba8e458127f3bc   
download/mythtv-trunk-drm_vsync_control.patch
  0b5406393532efeaf975d5b66b217ad7  download/mythtv-trunk.patch.gar
  8aeaa5af6faa1e7b47e193a6698a825a  download/mythtv-trunk-init.patch
  79cb9cb8d278cb490ab21df3a30ebd90  download/mythtv-trunk-minimyth.patch

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"minimyth-commits" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to 
[email protected]
For more options, visit this group at 
http://groups.google.com/group/minimyth-commits?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to