Jarod Wilson wrote:
In an effort to get a 0.18.1 release out the door, we need more folks to test it for stability/proper functionality, etc. You can check the code out from cvs like so:

$ cvs -d :pserver:[EMAIL PROTECTED]:/var/lib/mythcvs login
Logging in to :pserver:[EMAIL PROTECTED]:/var/lib/mythcvs
CVS password: mythtv

$ cvs -z3 -d :pserver:[EMAIL PROTECTED]:/var/lib/mythcvs \
        checkout -r release-0-18-fixes mythtv


You'll also need the matching mythplugins (change the last 'mythtv' above to 'mythplugins' to check out that module).



There are no critical bugfixes (no critical bugs to fix right now), just several small bugfixes. The only feature additions are the inclusion of internal firewire channel-change support on DCT-6200 cable boxes and support for LxM Suite services.


I've also built rpm packages that Fedora Core 3 users can grab from here:

http://wilsonet.com/packages/mythtv/

Versioning on the packages should be friendly enough that you can use these to upgrade an ATrpm 0.18 install and then upgrade to an official ATrpms 0.18.1 install later.



------------------------------------------------------------------------

_______________________________________________
mythtv-dev mailing list
[email protected]
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-dev

Hi,

Can I suggest you add the enclosed patch to the release-0-18-fixes.
This will fix the channel change issue for XvMC VLD users when
they are using TS streams.

Terry
Index: libs/libavcodec/parser.c
===================================================================
RCS file: /var/lib/mythcvs/mythtv/libs/libavcodec/parser.c,v
retrieving revision 1.10
diff -u -r1.10 parser.c
--- libs/libavcodec/parser.c	1 Feb 2005 05:09:30 -0000	1.10
+++ libs/libavcodec/parser.c	14 May 2005 05:40:53 -0000
@@ -811,7 +811,11 @@
 #endif
 
 AVCodecParser mpegvideo_parser = {
-    { CODEC_ID_MPEG1VIDEO, CODEC_ID_MPEG2VIDEO },
+    { CODEC_ID_MPEG1VIDEO,
+      CODEC_ID_MPEG2VIDEO,
+      CODEC_ID_MPEG2VIDEO_XVMC,
+      CODEC_ID_MPEG2VIDEO_XVMC_VLD,
+    },
     sizeof(ParseContext1),
     NULL,
     mpegvideo_parse,
Index: libs/libavformat/utils.c
===================================================================
RCS file: /var/lib/mythcvs/mythtv/libs/libavformat/utils.c,v
retrieving revision 1.32
diff -u -r1.32 utils.c
--- libs/libavformat/utils.c	31 Jan 2005 17:15:16 -0000	1.32
+++ libs/libavformat/utils.c	14 May 2005 05:40:56 -0000
@@ -900,6 +900,9 @@
                     if (!st->parser) {
                         /* no parser available : just output the raw packets */
                         st->need_parsing = 0;
+			av_log(s, AV_LOG_ERROR,
+                               "Parser not found for Codec Id: %d !\n",
+                               st->codec.codec_id);
                     }
 		}
 	    }
_______________________________________________
mythtv-dev mailing list
[email protected]
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-dev

Reply via email to