<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
	<id>tag:old.nabble.com,2006:forum-24862</id>
	<title>Nabble - MediaMVP Media Center - Development</title>
	<updated>2009-11-01T15:28:18Z</updated>
	<link rel="self" type="application/atom+xml" href="http://old.nabble.com/MediaMVP-Media-Center---Development-f24862.xml" />
	<link rel="alternate" type="text/html" href="http://old.nabble.com/MediaMVP-Media-Center---Development-f24862.html" />
	<subtitle type="html">&lt;div style=&quot;padding:0 1em 1em 0;display:inline&quot;&gt;
&lt;img src=&quot;http://mvpmc.wikispaces.com/space/showlogo/logo.png&quot; border=&quot;0&quot; /&gt;&lt;/div&gt;
Developer discussions about &lt;a href=&quot;http://www.mvpmc.org/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;MediaMVP Media Center&lt;/a&gt;.</subtitle>
	
<entry>
	<id>tag:old.nabble.com,2006:post-26156208</id>
	<title>Re: libcmyth and XBMC</title>
	<published>2009-11-01T15:28:18Z</published>
	<updated>2009-11-01T15:28:18Z</updated>
	<author>
		<name>Daniel Cleaver</name>
	</author>
	<content type="html">Sorry -- resending this as I sent the original from the wrong address:
&lt;br&gt;&lt;br&gt;I've changed my includes to use the XBMC version, although I'm not
&lt;br&gt;currently using the DllLibcmyth wrapper yet.
&lt;br&gt;&lt;br&gt;Slightly off-topic, but I'm having trouble with live TV. I'll ask it in
&lt;br&gt;this thread as the XBMC version has some new functions for live TV which
&lt;br&gt;may/may not be a factor here.
&lt;br&gt;&lt;br&gt;I'm currently spawning live TV as follows:
&lt;br&gt;&amp;nbsp; - cmyth_conn_get_free_recorder
&lt;br&gt;&amp;nbsp; - cmyth_recorder_is_recording
&lt;br&gt;&amp;nbsp; - cmyth_spawn_live_tv(m_recorder, 16*1024, 4096, prog_update_callback,
&lt;br&gt;&amp;err, channame); &amp;lt;-- channame is an XBMC addition, but I'm setting it to
&lt;br&gt;NULL for now
&lt;br&gt;&amp;nbsp; - cmyth_recorder_get_framerate (returns 25fps)
&lt;br&gt;&lt;br&gt;&lt;br&gt;Then, when XBMC wants to read data:
&lt;br&gt;&amp;nbsp; - cmyth_livetv_read(m_recorder, (char *)buf, buf_size);
&lt;br&gt;&lt;br&gt;cmyth_livetv_read seems to be another XBMC addition, which simply calls
&lt;br&gt;cmyth_livetv_chain_read if the protocol version &amp;gt;= 26.
&lt;br&gt;&lt;br&gt;My question is - where am I going wrong? I'm totally confused by the
&lt;br&gt;vast number of livetv functions that I'm not sure which ones to call!
&lt;br&gt;I've looked at CMythFile.cpp in XBMC and I've also looked at the mvpmc
&lt;br&gt;code which is along similar lines, but I can't seem to get it to read
&lt;br&gt;the stream!
&lt;br&gt;&lt;br&gt;I can see that the Myth backend starts to record the stream, but I'm not
&lt;br&gt;getting anything back when reading. Log attached.
&lt;br&gt;&lt;br&gt;Any light to the situation would be greatly appreciated!
&lt;br&gt;&lt;br&gt;Cheers,
&lt;br&gt;Daniel
&lt;br&gt;&lt;br&gt;On Sun, 2009-11-01 at 01:10 -0700, dteirney wrote:
&lt;div class='shrinkable-quote'&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Daniel, probably best to use the XBMC version of the libcmyth library and
&lt;br&gt;&amp;gt; make any necessary changes there. Can you please create a Trac ticket for
&lt;br&gt;&amp;gt; the work you are doing and submit patches. I'd quite like to see how the
&lt;br&gt;&amp;gt; MythTV PVR addon for XBMC is coming along. Should be able to use and extend
&lt;br&gt;&amp;gt; most of the existing DllLibcmyth wrapper. &amp;nbsp;I'm still updating some of the
&lt;br&gt;&amp;gt; code that is already used for the MythTV integration within XBMC - would be
&lt;br&gt;&amp;gt; good to get some more code reuse between existing functionality and the new
&lt;br&gt;&amp;gt; PVR Addon (although I don't know anything about how the Addons are segmented
&lt;br&gt;&amp;gt; out from XBMC).
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; I presume that the XBMC use of libcmyth will carry on the same as it has in
&lt;br&gt;&amp;gt; the past and the same as for other open source libraries being used - code
&lt;br&gt;&amp;gt; kept in the XBMC tree and updated from the master source as necessary.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Right now I have the GIT version of libcmyth on my machine in a completely
&lt;br&gt;&amp;gt; separate location. I'm still using the XBMC version of libcmyth. All I've
&lt;br&gt;&amp;gt; done thus far is a directory diff to see where the code changes are in
&lt;br&gt;&amp;gt; preparation for patches to the GIT version where necessary.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; XBMC build is pretty much all Make and there is an existing one that works
&lt;br&gt;&amp;gt; so will probably use that in the short term. Scons is new for me too.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Everyone, should we start sending patches through to this mailing list to
&lt;br&gt;&amp;gt; get the GIT version updated?
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; David
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Daniel Cleaver wrote:
&lt;br&gt;&amp;gt; &amp;gt; 
&lt;br&gt;&amp;gt; &amp;gt; I think the current git version is working very well.
&lt;br&gt;&amp;gt; &amp;gt; 
&lt;br&gt;&amp;gt; &amp;gt; David, any chance of submitting your patch? I'm using the mvpmc version
&lt;br&gt;&amp;gt; &amp;gt; for my XBMC PVR client instead of the XBMC version (thinking I'd add the
&lt;br&gt;&amp;gt; &amp;gt; things the PVR client needs as I go along), but I'm now getting to the
&lt;br&gt;&amp;gt; &amp;gt; point where I'm needing most of the things in the XBMC libcmyth!
&lt;br&gt;&amp;gt; &amp;gt; 
&lt;br&gt;&amp;gt; &amp;gt; On a side note, how would your version fit in with the XBMC build
&lt;br&gt;&amp;gt; &amp;gt; process? Would 'make' simply call 'scons'? Or have you created a
&lt;br&gt;&amp;gt; &amp;gt; separate makefile?
&lt;br&gt;&amp;gt; &amp;gt; 
&lt;br&gt;&amp;gt; &amp;gt; Regards,
&lt;br&gt;&amp;gt; &amp;gt; Daniel
&lt;br&gt;&amp;gt; &amp;gt; 
&lt;br&gt;&amp;gt; 
&lt;/div&gt;&lt;/div&gt;&lt;br /&gt;(cmyth)cmyth_recorder_create
&lt;br&gt;(cmyth)__cmyth_send_message
&lt;br&gt;(cmyth)__cmyth_send_message: sending message '17 &amp;nbsp; &amp;nbsp; &amp;nbsp;GET_FREE_RECORDER'
&lt;br&gt;(cmyth)__cmyth_rcv_length
&lt;br&gt;(cmyth)__cmyth_rcv_length: buffer is '27 &amp;nbsp; &amp;nbsp; &amp;nbsp;' ret = 27
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received '4'
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received '192.168.0.111'
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received '6543'
&lt;br&gt;(cmyth)cmyth_conn_connect_recorder: connecting recorder control
&lt;br&gt;(cmyth)cmyth_conn_connect_ctrl: connecting control connection
&lt;br&gt;(cmyth)cmyth_connect: connecting to 192.168.0.111 fd = 34
&lt;br&gt;(cmyth)cmyth_conn_create {
&lt;br&gt;(cmyth)cmyth_conn_create }
&lt;br&gt;(cmyth)__cmyth_send_message
&lt;br&gt;(cmyth)__cmyth_send_message: sending message '20 &amp;nbsp; &amp;nbsp; &amp;nbsp;MYTH_PROTO_VERSION 8'
&lt;br&gt;(cmyth)__cmyth_rcv_length
&lt;br&gt;(cmyth)__cmyth_rcv_length: buffer is '13 &amp;nbsp; &amp;nbsp; &amp;nbsp;' ret = 13
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received 'REJECT'
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received '40'
&lt;br&gt;(cmyth)cmyth_conn_connect: asked for version 8, got version 40
&lt;br&gt;(cmyth)cmyth_connect: connecting to 192.168.0.111 fd = 35
&lt;br&gt;(cmyth)cmyth_conn_create {
&lt;br&gt;(cmyth)cmyth_conn_create }
&lt;br&gt;(cmyth)__cmyth_send_message
&lt;br&gt;(cmyth)__cmyth_send_message: sending message '21 &amp;nbsp; &amp;nbsp; &amp;nbsp;MYTH_PROTO_VERSION 40'
&lt;br&gt;(cmyth)__cmyth_rcv_length
&lt;br&gt;(cmyth)__cmyth_rcv_length: buffer is '13 &amp;nbsp; &amp;nbsp; &amp;nbsp;' ret = 13
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received 'ACCEPT'
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received '40'
&lt;br&gt;(cmyth)cmyth_conn_connect: asked for version 40, got version 40
&lt;br&gt;(cmyth)cmyth_conn_connect: agreed on Version 40 protocol
&lt;br&gt;(cmyth)__cmyth_send_message
&lt;br&gt;(cmyth)__cmyth_send_message: sending message '21 &amp;nbsp; &amp;nbsp; &amp;nbsp;ANN Playback xbmcclient 0'
&lt;br&gt;(cmyth)__cmyth_rcv_length
&lt;br&gt;(cmyth)__cmyth_rcv_length: buffer is '2 &amp;nbsp; &amp;nbsp; &amp;nbsp; ' ret = 2
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received 'OK'
&lt;br&gt;(cmyth)cmyth_conn_connect_ctrl: done connecting control connection ret = 0xa6472ac
&lt;br&gt;(cmyth)cmyth_conn_connect_recorder: done connecting recorder control, conn = 0xa6472ac
&lt;br&gt;(cmyth)__cmyth_send_message
&lt;br&gt;(cmyth)__cmyth_send_message: sending message '33 &amp;nbsp; &amp;nbsp; &amp;nbsp;QUERY_RECORDER 4[]:[]IS_RECORDING'
&lt;br&gt;(cmyth)__cmyth_rcv_length
&lt;br&gt;(cmyth)__cmyth_rcv_length: buffer is '1 &amp;nbsp; &amp;nbsp; &amp;nbsp; ' ret = 1
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received '0'
&lt;br&gt;(cmyth)__cmyth_send_message
&lt;br&gt;(cmyth)__cmyth_send_message: sending message '75 &amp;nbsp; &amp;nbsp; &amp;nbsp;QUERY_RECORDER 4[]:[]SPAWN_LIVETV[]:[]live-xbmcclient-2009-11-01T22:23:50[]:[]0'
&lt;br&gt;(cmyth)__cmyth_rcv_length
&lt;br&gt;(cmyth)__cmyth_rcv_length: buffer is '2 &amp;nbsp; &amp;nbsp; &amp;nbsp; ' ret = 2
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received 'ok'
&lt;br&gt;(cmyth)cmyth_livetv_chain_create
&lt;br&gt;(cmyth)cmyth_proginfo_create {
&lt;br&gt;(cmyth)cmyth_timestamp_create
&lt;br&gt;(cmyth)cmyth_timestamp_create
&lt;br&gt;(cmyth)cmyth_timestamp_create
&lt;br&gt;(cmyth)cmyth_timestamp_create
&lt;br&gt;(cmyth)cmyth_timestamp_create
&lt;br&gt;(cmyth)cmyth_timestamp_create
&lt;br&gt;(cmyth)cmyth_proginfo_create }
&lt;br&gt;(cmyth)__cmyth_send_message
&lt;br&gt;(cmyth)__cmyth_send_message: sending message '42 &amp;nbsp; &amp;nbsp; &amp;nbsp;QUERY_RECORDER 4[]:[]GET_CURRENT_RECORDING'
&lt;br&gt;(cmyth)__cmyth_rcv_length
&lt;br&gt;(cmyth)__cmyth_rcv_length: buffer is '622 &amp;nbsp; &amp;nbsp; ' ret = 622
&lt;br&gt;(cmyth)__cmyth_rcv_proginfo: VERSION IS 40
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received 'Fleetwood Mac'
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received 'Don't Stop'
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received 'Fleetwood Mac, one of the biggest-selling bands of all time, are back on the road. Their story, told in their own words, is an epic tale of love and conflict, success and loss.'
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received 'News'
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received '1001'
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received '1'
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received 'BBC ONE'
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received 'BBC ONE'
&lt;br&gt;(cmyth)__cmyth_rcv_proginfo: GOT TO ICON/NAME
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received '/data/media/tv/1001_20091101222348.mpg'
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received '0'
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received '0'
&lt;br&gt;(cmyth)__cmyth_rcv_proginfo: GOT TO START_TS
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received '1257114000'
&lt;br&gt;(cmyth)cmyth_timestamp_create
&lt;br&gt;(cmyth)__cmyth_rcv_proginfo: GOT TO END_TS
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received '1257117600'
&lt;br&gt;(cmyth)cmyth_timestamp_create
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received '0'
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received '0'
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received '0'
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received 'mythbackend'
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received '0'
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received '4'
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received '0'
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received '0'
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received '-2'
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received '0'
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received '0'
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received '15'
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received '6'
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received '1257114228'
&lt;br&gt;(cmyth)cmyth_timestamp_create
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received '1257117600'
&lt;br&gt;(cmyth)cmyth_timestamp_create
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received '0'
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received '0'
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received 'LiveTV'
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received '0'
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received ''
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received ''
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received 'fp.bbc.co.uk/4HI332'
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received '1257114000'
&lt;br&gt;(cmyth)cmyth_timestamp_create
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received '0.000000'
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received '1900-01-01'
&lt;br&gt;(cmyth)cmyth_timestamp_create
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received '0'
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received 'Default'
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received '0'
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received '0'
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received 'LiveTV'
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received '0'
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received '0'
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received '0'
&lt;br&gt;(cmyth)__cmyth_rcv_proginfo: got recording info
&lt;br&gt;(cmyth)cmyth_proginfo_parse_url: url is: '/data/media/tv/1001_20091101222348.mpg'
&lt;br&gt;(cmyth)cmyth_proginfo_create {
&lt;br&gt;(cmyth)cmyth_timestamp_create
&lt;br&gt;(cmyth)cmyth_timestamp_create
&lt;br&gt;(cmyth)cmyth_timestamp_create
&lt;br&gt;(cmyth)cmyth_timestamp_create
&lt;br&gt;(cmyth)cmyth_timestamp_create
&lt;br&gt;(cmyth)cmyth_timestamp_create
&lt;br&gt;(cmyth)cmyth_proginfo_create }
&lt;br&gt;(cmyth)__cmyth_send_message
&lt;br&gt;(cmyth)__cmyth_send_message: sending message '42 &amp;nbsp; &amp;nbsp; &amp;nbsp;QUERY_RECORDER 4[]:[]GET_CURRENT_RECORDING'
&lt;br&gt;(cmyth)__cmyth_rcv_length
&lt;br&gt;(cmyth)__cmyth_rcv_length: buffer is '622 &amp;nbsp; &amp;nbsp; ' ret = 622
&lt;br&gt;(cmyth)__cmyth_rcv_proginfo: VERSION IS 40
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received 'Fleetwood Mac'
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received 'Don't Stop'
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received 'Fleetwood Mac, one of the biggest-selling bands of all time, are back on the road. Their story, told in their own words, is an epic tale of love and conflict, success and loss.'
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received 'News'
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received '1001'
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received '1'
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received 'BBC ONE'
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received 'BBC ONE'
&lt;br&gt;(cmyth)__cmyth_rcv_proginfo: GOT TO ICON/NAME
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received '/data/media/tv/1001_20091101222348.mpg'
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received '0'
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received '0'
&lt;br&gt;(cmyth)__cmyth_rcv_proginfo: GOT TO START_TS
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received '1257114000'
&lt;br&gt;(cmyth)cmyth_timestamp_create
&lt;br&gt;(cmyth)__cmyth_rcv_proginfo: GOT TO END_TS
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received '1257117600'
&lt;br&gt;(cmyth)cmyth_timestamp_create
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received '0'
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received '0'
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received '0'
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received 'mythbackend'
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received '0'
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received '4'
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received '0'
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received '0'
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received '-2'
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received '0'
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received '0'
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received '15'
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received '6'
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received '1257114228'
&lt;br&gt;(cmyth)cmyth_timestamp_create
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received '1257117600'
&lt;br&gt;(cmyth)cmyth_timestamp_create
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received '0'
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received '0'
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received 'LiveTV'
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received '0'
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received ''
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received ''
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received 'fp.bbc.co.uk/4HI332'
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received '1257114000'
&lt;br&gt;(cmyth)cmyth_timestamp_create
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received '0.000000'
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received '1900-01-01'
&lt;br&gt;(cmyth)cmyth_timestamp_create
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received '0'
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received 'Default'
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received '0'
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received '0'
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received 'LiveTV'
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received '0'
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received '0'
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received '0'
&lt;br&gt;(cmyth)__cmyth_rcv_proginfo: got recording info
&lt;br&gt;(cmyth)cmyth_proginfo_parse_url: url is: '/data/media/tv/1001_20091101222348.mpg'
&lt;br&gt;(cmyth)cmyth_proginfo_create {
&lt;br&gt;(cmyth)cmyth_timestamp_create
&lt;br&gt;(cmyth)cmyth_timestamp_create
&lt;br&gt;(cmyth)cmyth_timestamp_create
&lt;br&gt;(cmyth)cmyth_timestamp_create
&lt;br&gt;(cmyth)cmyth_timestamp_create
&lt;br&gt;(cmyth)cmyth_timestamp_create
&lt;br&gt;(cmyth)cmyth_proginfo_create }
&lt;br&gt;(cmyth)cmyth_proginfo_dup {
&lt;br&gt;(cmyth)cmyth_proginfo_dup }
&lt;br&gt;(cmyth)original timestamp string: 2009-11-01T22:20:00 
&lt;br&gt;(cmyth)time in seconds: 1257114000 
&lt;br&gt;(cmyth)original timestamp string: 2009-11-01T23:20:00 
&lt;br&gt;(cmyth)time in seconds: 1257117600 
&lt;br&gt;(cmyth)original timestamp string: 2009-11-01T22:23:48 
&lt;br&gt;(cmyth)time in seconds: 1257114228 
&lt;br&gt;(cmyth)original timestamp string: 2009-11-01T23:20:00 
&lt;br&gt;(cmyth)time in seconds: 1257117600 
&lt;br&gt;(cmyth)original timestamp string: 1900-01-01T00:00:00 
&lt;br&gt;(cmyth)time in seconds: 4294967295 
&lt;br&gt;(cmyth)original timestamp string: 2009-11-01T22:20:00 
&lt;br&gt;(cmyth)time in seconds: 1257114000 
&lt;br&gt;(cmyth)__cmyth_send_message
&lt;br&gt;(cmyth)__cmyth_send_message: sending message '659 &amp;nbsp; &amp;nbsp; FILL_PROGRAM_INFO mediamvp[]:[]0[]:[]Fleetwood Mac[]:[]Don't Stop[]:[]Fleetwood Mac, one of the biggest-selling bands of all time, are back on the road. Their story, told in their own words, is an epic tale of love and conflict, success and loss.[]:[]News[]:[]1001[]:[]1[]:[]BBC ONE[]:[]BBC ONE[]:[]/data/media/tv/1001_20091101222348.mpg[]:[]0[]:[]0[]:[]1257114000[]:[]1257117600[]:[]0[]:[]0[]:[]0[]:[]mythbackend[]:[]0[]:[]4[]:[]0[]:[]0[]:[]-2[]:[]0[]:[]0[]:[]15[]:[]6[]:[]1257114228[]:[]1257117600[]:[]0[]:[]0[]:[]LiveTV[]:[]0[]:[][]:[][]:[]fp.bbc.co.uk/4HI332[]:[]1257114000[]:[]0.0[]:[]1900-01-01[]:[]0[]:[]Default[]:[]0[]:[]0[]:[]LiveTV[]:[]0[]:[]0[]:[]0[]:[]'
&lt;br&gt;(cmyth)__cmyth_rcv_length
&lt;br&gt;(cmyth)__cmyth_rcv_length: buffer is '632 &amp;nbsp; &amp;nbsp; ' ret = 632
&lt;br&gt;(cmyth)__cmyth_rcv_proginfo: VERSION IS 40
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received 'Fleetwood Mac'
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received 'Don't Stop'
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received 'Fleetwood Mac, one of the biggest-selling bands of all time, are back on the road. Their story, told in their own words, is an epic tale of love and conflict, success and loss.'
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received 'News'
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received '1001'
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received '1'
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received 'BBC ONE'
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received 'BBC ONE'
&lt;br&gt;(cmyth)__cmyth_rcv_proginfo: GOT TO ICON/NAME
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received 'myth://192.168.0.111:6543/1001_20091101222348.mpg'
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received '0'
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received '0'
&lt;br&gt;(cmyth)__cmyth_rcv_proginfo: GOT TO START_TS
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received '1257114000'
&lt;br&gt;(cmyth)cmyth_timestamp_create
&lt;br&gt;(cmyth)__cmyth_rcv_proginfo: GOT TO END_TS
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received '1257117600'
&lt;br&gt;(cmyth)cmyth_timestamp_create
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received '0'
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received '0'
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received '0'
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received 'mythbackend'
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received '0'
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received '4'
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received '0'
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received '0'
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received '-2'
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received '0'
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received '0'
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received '15'
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received '6'
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received '1257114228'
&lt;br&gt;(cmyth)cmyth_timestamp_create
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received '1257117600'
&lt;br&gt;(cmyth)cmyth_timestamp_create
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received '0'
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received '0'
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received 'LiveTV'
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received '0'
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received ''
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received ''
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received 'fp.bbc.co.uk/4HI332'
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received '1257114000'
&lt;br&gt;(cmyth)cmyth_timestamp_create
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received '0.000000'
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received '1900-01-01'
&lt;br&gt;(cmyth)cmyth_timestamp_create
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received '0'
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received 'Default'
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received '0'
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received '0'
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received 'LiveTV'
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received '0'
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received '0'
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received '0'
&lt;br&gt;(cmyth)__cmyth_rcv_proginfo: got recording info
&lt;br&gt;(cmyth)cmyth_proginfo_parse_url: url is: 'myth://192.168.0.111:6543/1001_20091101222348.mpg'
&lt;br&gt;(cmyth)cmyth_proginfo_get_detail: cmyth_proginfo_fill() failed
&lt;br&gt;(cmyth)cmyth_proginfo_create {
&lt;br&gt;(cmyth)cmyth_timestamp_create
&lt;br&gt;(cmyth)cmyth_timestamp_create
&lt;br&gt;(cmyth)cmyth_timestamp_create
&lt;br&gt;(cmyth)cmyth_timestamp_create
&lt;br&gt;(cmyth)cmyth_timestamp_create
&lt;br&gt;(cmyth)cmyth_timestamp_create
&lt;br&gt;(cmyth)cmyth_proginfo_create }
&lt;br&gt;(cmyth)__cmyth_send_message
&lt;br&gt;(cmyth)__cmyth_send_message: sending message '42 &amp;nbsp; &amp;nbsp; &amp;nbsp;QUERY_RECORDER 4[]:[]GET_CURRENT_RECORDING'
&lt;br&gt;(cmyth)__cmyth_rcv_length
&lt;br&gt;(cmyth)__cmyth_rcv_length: buffer is '622 &amp;nbsp; &amp;nbsp; ' ret = 622
&lt;br&gt;(cmyth)__cmyth_rcv_proginfo: VERSION IS 40
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received 'Fleetwood Mac'
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received 'Don't Stop'
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received 'Fleetwood Mac, one of the biggest-selling bands of all time, are back on the road. Their story, told in their own words, is an epic tale of love and conflict, success and loss.'
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received 'News'
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received '1001'
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received '1'
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received 'BBC ONE'
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received 'BBC ONE'
&lt;br&gt;(cmyth)__cmyth_rcv_proginfo: GOT TO ICON/NAME
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received '/data/media/tv/1001_20091101222350.mpg'
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received '0'
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received '0'
&lt;br&gt;(cmyth)__cmyth_rcv_proginfo: GOT TO START_TS
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received '1257114000'
&lt;br&gt;(cmyth)cmyth_timestamp_create
&lt;br&gt;(cmyth)__cmyth_rcv_proginfo: GOT TO END_TS
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received '1257117600'
&lt;br&gt;(cmyth)cmyth_timestamp_create
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received '0'
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received '0'
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received '0'
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received 'mythbackend'
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received '0'
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received '4'
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received '0'
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received '0'
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received '-2'
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received '0'
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received '0'
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received '15'
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received '6'
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received '1257114230'
&lt;br&gt;(cmyth)cmyth_timestamp_create
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received '1257117600'
&lt;br&gt;(cmyth)cmyth_timestamp_create
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received '0'
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received '0'
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received 'LiveTV'
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received '0'
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received ''
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received ''
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received 'fp.bbc.co.uk/4HI332'
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received '1257114000'
&lt;br&gt;(cmyth)cmyth_timestamp_create
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received '0.000000'
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received '1900-01-01'
&lt;br&gt;(cmyth)cmyth_timestamp_create
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received '0'
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received 'Default'
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received '0'
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received '0'
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received 'LiveTV'
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received '0'
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received '0'
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received '0'
&lt;br&gt;(cmyth)__cmyth_rcv_proginfo: got recording info
&lt;br&gt;(cmyth)cmyth_proginfo_parse_url: url is: '/data/media/tv/1001_20091101222350.mpg'
&lt;br&gt;(cmyth)cmyth_proginfo_create {
&lt;br&gt;(cmyth)cmyth_timestamp_create
&lt;br&gt;(cmyth)cmyth_timestamp_create
&lt;br&gt;(cmyth)cmyth_timestamp_create
&lt;br&gt;(cmyth)cmyth_timestamp_create
&lt;br&gt;(cmyth)cmyth_timestamp_create
&lt;br&gt;(cmyth)cmyth_timestamp_create
&lt;br&gt;(cmyth)cmyth_proginfo_create }
&lt;br&gt;(cmyth)cmyth_proginfo_dup {
&lt;br&gt;(cmyth)cmyth_proginfo_dup }
&lt;br&gt;(cmyth)original timestamp string: 2009-11-01T22:20:00 
&lt;br&gt;(cmyth)time in seconds: 1257114000 
&lt;br&gt;(cmyth)original timestamp string: 2009-11-01T23:20:00 
&lt;br&gt;(cmyth)time in seconds: 1257117600 
&lt;br&gt;(cmyth)original timestamp string: 2009-11-01T22:23:50 
&lt;br&gt;(cmyth)time in seconds: 1257114230 
&lt;br&gt;(cmyth)original timestamp string: 2009-11-01T23:20:00 
&lt;br&gt;(cmyth)time in seconds: 1257117600 
&lt;br&gt;(cmyth)original timestamp string: 1900-01-01T00:00:00 
&lt;br&gt;(cmyth)time in seconds: 4294967295 
&lt;br&gt;(cmyth)original timestamp string: 2009-11-01T22:20:00 
&lt;br&gt;(cmyth)time in seconds: 1257114000 
&lt;br&gt;(cmyth)__cmyth_send_message
&lt;br&gt;(cmyth)__cmyth_send_message: sending message '659 &amp;nbsp; &amp;nbsp; FILL_PROGRAM_INFO mediamvp[]:[]0[]:[]Fleetwood Mac[]:[]Don't Stop[]:[]Fleetwood Mac, one of the biggest-selling bands of all time, are back on the road. Their story, told in their own words, is an epic tale of love and conflict, success and loss.[]:[]News[]:[]1001[]:[]1[]:[]BBC ONE[]:[]BBC ONE[]:[]/data/media/tv/1001_20091101222350.mpg[]:[]0[]:[]0[]:[]1257114000[]:[]1257117600[]:[]0[]:[]0[]:[]0[]:[]mythbackend[]:[]0[]:[]4[]:[]0[]:[]0[]:[]-2[]:[]0[]:[]0[]:[]15[]:[]6[]:[]1257114230[]:[]1257117600[]:[]0[]:[]0[]:[]LiveTV[]:[]0[]:[][]:[][]:[]fp.bbc.co.uk/4HI332[]:[]1257114000[]:[]0.0[]:[]1900-01-01[]:[]0[]:[]Default[]:[]0[]:[]0[]:[]LiveTV[]:[]0[]:[]0[]:[]0[]:[]'
&lt;br&gt;(cmyth)__cmyth_rcv_length
&lt;br&gt;(cmyth)__cmyth_rcv_length: buffer is '634 &amp;nbsp; &amp;nbsp; ' ret = 634
&lt;br&gt;(cmyth)__cmyth_rcv_proginfo: VERSION IS 40
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received 'Fleetwood Mac'
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received 'Don't Stop'
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received 'Fleetwood Mac, one of the biggest-selling bands of all time, are back on the road. Their story, told in their own words, is an epic tale of love and conflict, success and loss.'
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received 'News'
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received '1001'
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received '1'
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received 'BBC ONE'
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received 'BBC ONE'
&lt;br&gt;(cmyth)__cmyth_rcv_proginfo: GOT TO ICON/NAME
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received 'myth://192.168.0.111:6543/1001_20091101222350.mpg'
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received '0'
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received '376'
&lt;br&gt;(cmyth)__cmyth_rcv_proginfo: GOT TO START_TS
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received '1257114000'
&lt;br&gt;(cmyth)cmyth_timestamp_create
&lt;br&gt;(cmyth)__cmyth_rcv_proginfo: GOT TO END_TS
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received '1257117600'
&lt;br&gt;(cmyth)cmyth_timestamp_create
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received '0'
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received '0'
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received '0'
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received 'mythbackend'
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received '0'
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received '4'
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received '0'
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received '0'
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received '-2'
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received '0'
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received '0'
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received '15'
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received '6'
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received '1257114230'
&lt;br&gt;(cmyth)cmyth_timestamp_create
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received '1257117600'
&lt;br&gt;(cmyth)cmyth_timestamp_create
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received '0'
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received '0'
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received 'LiveTV'
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received '0'
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received ''
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received ''
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received 'fp.bbc.co.uk/4HI332'
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received '1257114000'
&lt;br&gt;(cmyth)cmyth_timestamp_create
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received '0.000000'
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received '1900-01-01'
&lt;br&gt;(cmyth)cmyth_timestamp_create
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received '0'
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received 'Default'
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received '0'
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received '0'
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received 'LiveTV'
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received '0'
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received '0'
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received '0'
&lt;br&gt;(cmyth)__cmyth_rcv_proginfo: got recording info
&lt;br&gt;(cmyth)cmyth_proginfo_parse_url: url is: 'myth://192.168.0.111:6543/1001_20091101222350.mpg'
&lt;br&gt;(cmyth)cmyth_recorder_create
&lt;br&gt;(cmyth)__cmyth_file_create {
&lt;br&gt;(cmyth)__cmyth_file_create }
&lt;br&gt;(cmyth)cmyth_conn_connect_file: connecting data connection
&lt;br&gt;(cmyth)cmyth_connect: connecting to 192.168.0.111 fd = 36
&lt;br&gt;(cmyth)cmyth_conn_create {
&lt;br&gt;(cmyth)cmyth_conn_create }
&lt;br&gt;(cmyth)cmyth_conn_connect_file: done connecting data connection, conn = 171737820
&lt;br&gt;(cmyth)__cmyth_send_message
&lt;br&gt;(cmyth)__cmyth_send_message: sending message '66 &amp;nbsp; &amp;nbsp; &amp;nbsp;ANN FileTransfer xbmcclient[]:[]/data/media/tv/1001_20091101222348.mpg'
&lt;br&gt;(cmyth)__cmyth_rcv_length
&lt;br&gt;(cmyth)__cmyth_rcv_length: buffer is '21 &amp;nbsp; &amp;nbsp; &amp;nbsp;' ret = 21
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received 'OK'
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received '41'
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received '0'
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received '0'
&lt;br&gt;(cmyth)__cmyth_send_message
&lt;br&gt;(cmyth)__cmyth_send_message: sending message '33 &amp;nbsp; &amp;nbsp; &amp;nbsp;QUERY_RECORDER 4[]:[]IS_RECORDING'
&lt;br&gt;(cmyth)__cmyth_rcv_length
&lt;br&gt;(cmyth)__cmyth_rcv_length: buffer is '1 &amp;nbsp; &amp;nbsp; &amp;nbsp; ' ret = 1
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received '1'
&lt;br&gt;(cmyth)__cmyth_send_message
&lt;br&gt;(cmyth)__cmyth_send_message: sending message '34 &amp;nbsp; &amp;nbsp; &amp;nbsp;QUERY_RECORDER 4[]:[]GET_FRAMERATE'
&lt;br&gt;(cmyth)__cmyth_rcv_length
&lt;br&gt;(cmyth)__cmyth_rcv_length: buffer is '2 &amp;nbsp; &amp;nbsp; &amp;nbsp; ' ret = 2
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received '25'
&lt;br&gt;(cmyth)cmyth_livetv_chain_read [livetv.c:784]: (trace) {
&lt;br&gt;(cmyth)__cmyth_send_message
&lt;br&gt;(cmyth)__cmyth_send_message: sending message '49 &amp;nbsp; &amp;nbsp; &amp;nbsp;QUERY_FILETRANSFER 41[]:[]REQUEST_BLOCK[]:[]32768'
&lt;br&gt;(cmyth)__cmyth_rcv_length
&lt;br&gt;(cmyth)__cmyth_rcv_length: buffer is '1 &amp;nbsp; &amp;nbsp; &amp;nbsp; ' ret = 1
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received '0'
&lt;br&gt;(cmyth)cmyth_livetv_chain_read [livetv.c:804]: (trace) }
&lt;br&gt;(cmyth)cmyth_livetv_chain_read [livetv.c:784]: (trace) {
&lt;br&gt;(cmyth)__cmyth_send_message
&lt;br&gt;(cmyth)__cmyth_send_message: sending message '49 &amp;nbsp; &amp;nbsp; &amp;nbsp;QUERY_FILETRANSFER 41[]:[]REQUEST_BLOCK[]:[]32768'
&lt;br&gt;(cmyth)__cmyth_rcv_length
&lt;br&gt;(cmyth)__cmyth_rcv_length: buffer is '1 &amp;nbsp; &amp;nbsp; &amp;nbsp; ' ret = 1
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received '0'
&lt;br&gt;(cmyth)cmyth_livetv_chain_read [livetv.c:804]: (trace) }
&lt;br&gt;(cmyth)cmyth_livetv_chain_read [livetv.c:784]: (trace) {
&lt;br&gt;(cmyth)__cmyth_send_message
&lt;br&gt;(cmyth)__cmyth_send_message: sending message '49 &amp;nbsp; &amp;nbsp; &amp;nbsp;QUERY_FILETRANSFER 41[]:[]REQUEST_BLOCK[]:[]32768'
&lt;br&gt;(cmyth)__cmyth_rcv_length
&lt;br&gt;(cmyth)__cmyth_rcv_length: buffer is '1 &amp;nbsp; &amp;nbsp; &amp;nbsp; ' ret = 1
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received '0'
&lt;br&gt;(cmyth)cmyth_livetv_chain_read [livetv.c:804]: (trace) }
&lt;br&gt;(cmyth)cmyth_livetv_chain_read [livetv.c:784]: (trace) {
&lt;br&gt;(cmyth)__cmyth_send_message
&lt;br&gt;(cmyth)__cmyth_send_message: sending message '49 &amp;nbsp; &amp;nbsp; &amp;nbsp;QUERY_FILETRANSFER 41[]:[]REQUEST_BLOCK[]:[]32768'
&lt;br&gt;(cmyth)__cmyth_rcv_length
&lt;br&gt;(cmyth)__cmyth_rcv_length: buffer is '1 &amp;nbsp; &amp;nbsp; &amp;nbsp; ' ret = 1
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received '0'
&lt;br&gt;(cmyth)cmyth_livetv_chain_read [livetv.c:804]: (trace) }
&lt;br&gt;(cmyth)cmyth_livetv_chain_read [livetv.c:784]: (trace) {
&lt;br&gt;(cmyth)__cmyth_send_message
&lt;br&gt;(cmyth)__cmyth_send_message: sending message '49 &amp;nbsp; &amp;nbsp; &amp;nbsp;QUERY_FILETRANSFER 41[]:[]REQUEST_BLOCK[]:[]32768'
&lt;br&gt;(cmyth)__cmyth_rcv_length
&lt;br&gt;(cmyth)__cmyth_rcv_length: buffer is '1 &amp;nbsp; &amp;nbsp; &amp;nbsp; ' ret = 1
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received '0'
&lt;br&gt;(cmyth)cmyth_livetv_chain_read [livetv.c:804]: (trace) }
&lt;br&gt;(cmyth)cmyth_livetv_chain_read [livetv.c:784]: (trace) {
&lt;br&gt;(cmyth)__cmyth_send_message
&lt;br&gt;(cmyth)__cmyth_send_message: sending message '49 &amp;nbsp; &amp;nbsp; &amp;nbsp;QUERY_FILETRANSFER 41[]:[]REQUEST_BLOCK[]:[]32768'
&lt;br&gt;(cmyth)__cmyth_rcv_length
&lt;br&gt;(cmyth)__cmyth_rcv_length: buffer is '1 &amp;nbsp; &amp;nbsp; &amp;nbsp; ' ret = 1
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received '0'
&lt;br&gt;(cmyth)cmyth_livetv_chain_read [livetv.c:804]: (trace) }
&lt;br&gt;(cmyth)cmyth_livetv_chain_read [livetv.c:784]: (trace) {
&lt;br&gt;(cmyth)__cmyth_send_message
&lt;br&gt;(cmyth)__cmyth_send_message: sending message '49 &amp;nbsp; &amp;nbsp; &amp;nbsp;QUERY_FILETRANSFER 41[]:[]REQUEST_BLOCK[]:[]32768'
&lt;br&gt;(cmyth)__cmyth_rcv_length
&lt;br&gt;(cmyth)__cmyth_rcv_length: buffer is '1 &amp;nbsp; &amp;nbsp; &amp;nbsp; ' ret = 1
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received '0'
&lt;br&gt;(cmyth)cmyth_livetv_chain_read [livetv.c:804]: (trace) }
&lt;br&gt;(cmyth)cmyth_livetv_chain_read [livetv.c:784]: (trace) {
&lt;br&gt;(cmyth)__cmyth_send_message
&lt;br&gt;(cmyth)__cmyth_send_message: sending message '49 &amp;nbsp; &amp;nbsp; &amp;nbsp;QUERY_FILETRANSFER 41[]:[]REQUEST_BLOCK[]:[]32768'
&lt;br&gt;(cmyth)__cmyth_rcv_length
&lt;br&gt;(cmyth)__cmyth_rcv_length: buffer is '1 &amp;nbsp; &amp;nbsp; &amp;nbsp; ' ret = 1
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received '0'
&lt;br&gt;(cmyth)cmyth_livetv_chain_read [livetv.c:804]: (trace) }
&lt;br&gt;(cmyth)cmyth_livetv_chain_read [livetv.c:784]: (trace) {
&lt;br&gt;(cmyth)__cmyth_send_message
&lt;br&gt;(cmyth)__cmyth_send_message: sending message '49 &amp;nbsp; &amp;nbsp; &amp;nbsp;QUERY_FILETRANSFER 41[]:[]REQUEST_BLOCK[]:[]32768'
&lt;br&gt;(cmyth)__cmyth_rcv_length
&lt;br&gt;(cmyth)__cmyth_rcv_length: buffer is '1 &amp;nbsp; &amp;nbsp; &amp;nbsp; ' ret = 1
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received '0'
&lt;br&gt;(cmyth)cmyth_livetv_chain_read [livetv.c:804]: (trace) }
&lt;br&gt;(cmyth)cmyth_livetv_chain_read [livetv.c:784]: (trace) {
&lt;br&gt;(cmyth)__cmyth_send_message
&lt;br&gt;(cmyth)__cmyth_send_message: sending message '49 &amp;nbsp; &amp;nbsp; &amp;nbsp;QUERY_FILETRANSFER 41[]:[]REQUEST_BLOCK[]:[]32768'
&lt;br&gt;(cmyth)__cmyth_rcv_length
&lt;br&gt;(cmyth)__cmyth_rcv_length: buffer is '1 &amp;nbsp; &amp;nbsp; &amp;nbsp; ' ret = 1
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received '0'
&lt;br&gt;(cmyth)cmyth_livetv_chain_read [livetv.c:804]: (trace) }
&lt;br&gt;(cmyth)__cmyth_send_message
&lt;br&gt;(cmyth)__cmyth_send_message: sending message '32 &amp;nbsp; &amp;nbsp; &amp;nbsp;QUERY_RECORDER 4[]:[]STOP_LIVETV'
&lt;br&gt;(cmyth)__cmyth_rcv_length
&lt;br&gt;(cmyth)__cmyth_rcv_length: buffer is '2 &amp;nbsp; &amp;nbsp; &amp;nbsp; ' ret = 2
&lt;br&gt;(cmyth)__cmyth_rcv_string: string received 'ok'
&lt;br&gt;&lt;br /&gt;------------------------------------------------------------------------------
&lt;br&gt;Come build with us! The BlackBerry(R) Developer Conference in SF, CA
&lt;br&gt;is the only developer event you need to attend this year. Jumpstart your
&lt;br&gt;developing skills, take BlackBerry mobile applications to market and stay 
&lt;br&gt;ahead of the curve. Join us from November 9 - 12, 2009. Register now!
&lt;br&gt;&lt;a href=&quot;http://p.sf.net/sfu/devconference&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/devconference&lt;/a&gt;&lt;br /&gt;_______________________________________________
&lt;br&gt;Mvpmc-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26156208&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Mvpmc-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/mvpmc-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/mvpmc-devel&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/libcmyth-and-XBMC-tp25900674s24862p26156208.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26152073</id>
	<title>Re: libcmyth and XBMC</title>
	<published>2009-11-01T07:33:13Z</published>
	<updated>2009-11-01T07:33:13Z</updated>
	<author>
		<name>gettler</name>
	</author>
	<content type="html">&lt;br&gt;I think what I would like to see with the libcmyth git repository, is
&lt;br&gt;someone from XBMC to take ownership of an XBMC development branch. &amp;nbsp;That
&lt;br&gt;way changes can flow freely into the repository from XBMC (either through
&lt;br&gt;patches or direct commits) without concern about breaking other projects.
&lt;br&gt;I expect I will create an mvpmc project branch as well.
&lt;br&gt;&lt;br&gt;Then we can occasionally do releases of libcmyth from the master branch
&lt;br&gt;that support all the projects.
&lt;br&gt;&lt;br&gt;As for make vs scons, I'd like to keep the scons build, but I'm not opposed
&lt;br&gt;to someone else writing a parallel set of make/autoconf files. &amp;nbsp;scons is
&lt;br&gt;just far easier to deal with, in my opinion.
&lt;br&gt;&lt;br&gt;Jon
&lt;br&gt;&lt;br&gt;On Sun, 01 Nov 2009 01:10:35 MST, dteirney wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Daniel, probably best to use the XBMC version of the libcmyth library and
&lt;br&gt;&amp;gt; make any necessary changes there. Can you please create a Trac ticket for
&lt;br&gt;&amp;gt; the work you are doing and submit patches. I'd quite like to see how the
&lt;br&gt;&amp;gt; MythTV PVR addon for XBMC is coming along. Should be able to use and extend
&lt;br&gt;&amp;gt; most of the existing DllLibcmyth wrapper. &amp;nbsp;I'm still updating some of the
&lt;br&gt;&amp;gt; code that is already used for the MythTV integration within XBMC - would be
&lt;br&gt;&amp;gt; good to get some more code reuse between existing functionality and the new
&lt;br&gt;&amp;gt; PVR Addon (although I don't know anything about how the Addons are segmented
&lt;br&gt;&amp;gt; out from XBMC).
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; I presume that the XBMC use of libcmyth will carry on the same as it has in
&lt;br&gt;&amp;gt; the past and the same as for other open source libraries being used - code
&lt;br&gt;&amp;gt; kept in the XBMC tree and updated from the master source as necessary.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Right now I have the GIT version of libcmyth on my machine in a completely
&lt;br&gt;&amp;gt; separate location. I'm still using the XBMC version of libcmyth. All I've
&lt;br&gt;&amp;gt; done thus far is a directory diff to see where the code changes are in
&lt;br&gt;&amp;gt; preparation for patches to the GIT version where necessary.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; XBMC build is pretty much all Make and there is an existing one that works
&lt;br&gt;&amp;gt; so will probably use that in the short term. Scons is new for me too.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Everyone, should we start sending patches through to this mailing list to
&lt;br&gt;&amp;gt; get the GIT version updated?
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; David
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Daniel Cleaver wrote:
&lt;br&gt;&amp;gt; &amp;gt; 
&lt;br&gt;&amp;gt; &amp;gt; I think the current git version is working very well.
&lt;br&gt;&amp;gt; &amp;gt; 
&lt;br&gt;&amp;gt; &amp;gt; David, any chance of submitting your patch? I'm using the mvpmc version
&lt;br&gt;&amp;gt; &amp;gt; for my XBMC PVR client instead of the XBMC version (thinking I'd add the
&lt;br&gt;&amp;gt; &amp;gt; things the PVR client needs as I go along), but I'm now getting to the
&lt;br&gt;&amp;gt; &amp;gt; point where I'm needing most of the things in the XBMC libcmyth!
&lt;br&gt;&amp;gt; &amp;gt; 
&lt;br&gt;&amp;gt; &amp;gt; On a side note, how would your version fit in with the XBMC build
&lt;br&gt;&amp;gt; &amp;gt; process? Would 'make' simply call 'scons'? Or have you created a
&lt;br&gt;&amp;gt; &amp;gt; separate makefile?
&lt;br&gt;&amp;gt; &amp;gt; 
&lt;br&gt;&amp;gt; &amp;gt; Regards,
&lt;br&gt;&amp;gt; &amp;gt; Daniel
&lt;br&gt;&amp;gt; &amp;gt; 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; -- 
&lt;br&gt;&amp;gt; View this message in context: &lt;a href=&quot;http://old.nabble.com/libcmyth-and-XBMC-tp25900&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://old.nabble.com/libcmyth-and-XBMC-tp25900&lt;/a&gt;&lt;br&gt;&amp;gt;674s24862p26148867.html
&lt;br&gt;&amp;gt; Sent from the MediaMVP Media Center - Development mailing list archive at Nab
&lt;br&gt;&amp;gt;ble.com.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; -----------------------------------------------------------------------------
&lt;br&gt;&amp;gt;-
&lt;br&gt;&amp;gt; Come build with us! The BlackBerry(R) Developer Conference in SF, CA
&lt;br&gt;&amp;gt; is the only developer event you need to attend this year. Jumpstart your
&lt;br&gt;&amp;gt; developing skills, take BlackBerry mobile applications to market and stay 
&lt;br&gt;&amp;gt; ahead of the curve. Join us from November 9 - 12, 2009. Register now!
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://p.sf.net/sfu/devconference&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/devconference&lt;/a&gt;&lt;br&gt;&amp;gt; _______________________________________________
&lt;br&gt;&amp;gt; Mvpmc-devel mailing list
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26152073&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Mvpmc-devel@...&lt;/a&gt;
&lt;br&gt;&amp;gt; &lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/mvpmc-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/mvpmc-devel&lt;/a&gt;&lt;/div&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Come build with us! The BlackBerry(R) Developer Conference in SF, CA
&lt;br&gt;is the only developer event you need to attend this year. Jumpstart your
&lt;br&gt;developing skills, take BlackBerry mobile applications to market and stay 
&lt;br&gt;ahead of the curve. Join us from November 9 - 12, 2009. Register now!
&lt;br&gt;&lt;a href=&quot;http://p.sf.net/sfu/devconference&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/devconference&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Mvpmc-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26152073&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Mvpmc-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/mvpmc-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/mvpmc-devel&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/libcmyth-and-XBMC-tp25900674s24862p26152073.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26148867</id>
	<title>Re: libcmyth and XBMC</title>
	<published>2009-11-01T01:10:34Z</published>
	<updated>2009-11-01T01:10:34Z</updated>
	<author>
		<name>dteirney</name>
	</author>
	<content type="html">Daniel, probably best to use the XBMC version of the libcmyth library and make any necessary changes there. Can you please create a Trac ticket for the work you are doing and submit patches. I'd quite like to see how the MythTV PVR addon for XBMC is coming along. Should be able to use and extend most of the existing DllLibcmyth wrapper. &amp;nbsp;I'm still updating some of the code that is already used for the MythTV integration within XBMC - would be good to get some more code reuse between existing functionality and the new PVR Addon (although I don't know anything about how the Addons are segmented out from XBMC).
&lt;br&gt;&lt;br&gt;I presume that the XBMC use of libcmyth will carry on the same as it has in the past and the same as for other open source libraries being used - code kept in the XBMC tree and updated from the master source as necessary.
&lt;br&gt;&lt;br&gt;Right now I have the GIT version of libcmyth on my machine in a completely separate location. I'm still using the XBMC version of libcmyth. All I've done thus far is a directory diff to see where the code changes are in preparation for patches to the GIT version where necessary.
&lt;br&gt;&lt;br&gt;XBMC build is pretty much all Make and there is an existing one that works so will probably use that in the short term. Scons is new for me too.
&lt;br&gt;&lt;br&gt;Everyone, should we start sending patches through to this mailing list to get the GIT version updated?
&lt;br&gt;&lt;br&gt;&lt;br&gt;David
&lt;br&gt;&lt;br&gt;&lt;blockquote class=&quot;quote light-black dark-border-color&quot;&gt;&lt;div class=&quot;quote light-border-color&quot;&gt;
&lt;div class=&quot;quote-author&quot; style=&quot;font-weight: bold;&quot;&gt;Daniel Cleaver wrote:&lt;/div&gt;
&lt;div class=&quot;quote-message shrinkable-quote&quot;&gt;I think the current git version is working very well.
&lt;br&gt;&lt;br&gt;David, any chance of submitting your patch? I'm using the mvpmc version
&lt;br&gt;for my XBMC PVR client instead of the XBMC version (thinking I'd add the
&lt;br&gt;things the PVR client needs as I go along), but I'm now getting to the
&lt;br&gt;point where I'm needing most of the things in the XBMC libcmyth!
&lt;br&gt;&lt;br&gt;On a side note, how would your version fit in with the XBMC build
&lt;br&gt;process? Would 'make' simply call 'scons'? Or have you created a
&lt;br&gt;separate makefile?
&lt;br&gt;&lt;br&gt;Regards,
&lt;br&gt;Daniel
&lt;/div&gt;
&lt;/div&gt;&lt;/blockquote&gt;
</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/libcmyth-and-XBMC-tp25900674s24862p26148867.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26144843</id>
	<title>Re: libcmyth and XBMC</title>
	<published>2009-10-31T11:31:22Z</published>
	<updated>2009-10-31T11:31:22Z</updated>
	<author>
		<name>Daniel Cleaver</name>
	</author>
	<content type="html">I think the current git version is working very well.
&lt;br&gt;&lt;br&gt;David, any chance of submitting your patch? I'm using the mvpmc version
&lt;br&gt;for my XBMC PVR client instead of the XBMC version (thinking I'd add the
&lt;br&gt;things the PVR client needs as I go along), but I'm now getting to the
&lt;br&gt;point where I'm needing most of the things in the XBMC libcmyth!
&lt;br&gt;&lt;br&gt;On a side note, how would your version fit in with the XBMC build
&lt;br&gt;process? Would 'make' simply call 'scons'? Or have you created a
&lt;br&gt;separate makefile?
&lt;br&gt;&lt;br&gt;Regards,
&lt;br&gt;Daniel
&lt;br&gt;&lt;br&gt;&lt;br&gt;On Tue, 2009-10-20 at 20:29 -0500, Eric Lund wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; As one of those involved, I think it is probably ready for prime time, 
&lt;br&gt;&amp;gt; at least from the perspective of appearing to work. &amp;nbsp;Anyone else?
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 					Eric
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; On 10/19/2009 07:37 AM, &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26144843&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;gettler@...&lt;/a&gt; wrote:
&lt;br&gt;&amp;gt; &amp;gt; I think the next step is for those involved to agree that the current
&lt;br&gt;&amp;gt; &amp;gt; cmyth.git repo is a good starting point. &amp;nbsp;Then we can start taking patches
&lt;br&gt;&amp;gt; &amp;gt; from mvpmc and XBMC so that it is buildable by both projects (as well as
&lt;br&gt;&amp;gt; &amp;gt; standalone).
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; Jon
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; On Mon, 19 Oct 2009 00:00:56 PDT, dteirney wrote:
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; Would be great to have a separate libcmyth project that is contributed to by
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; all those using it.
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; I've also done some development of libcmyth for use with XBMC Media Center.
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; For example, finished the work already started to get commercial breaks from
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; the backend using the Myth Protocol rather than the MySQL query. Also a
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; patch to support 0.22 over and above what was added in the mvpmc repository.
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; There are a number of other changes within XBMC to support building with the
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; Microsoft C compiler, which is very pedantic, e.g. all variables must be
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; declared at the top of the method. Lots of #ifdef _MSC_VER around the place
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; for other reasons.
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; I don't know the reasons for all of the differences between the XBMC version
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; and the current libcmyth trunk, but I might be able to get some time off
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; elupus to provide some information about the changes that aren't obvious.
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; What is the next step to try and push back some of the changes that have
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; been made externally to the mvpmc repository? I've got the git version on my
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; machine and can start sending patches with rationale.
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; Thanks!
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; David
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; --
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; View this message in context: &lt;a href=&quot;http://www.nabble.com/libcmyth-and-XBMC-tp25900&quot; target=&quot;_top&quot;&gt;http://www.nabble.com/libcmyth-and-XBMC-tp25900&lt;/a&gt;&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; 674s24862p25944258.html
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; Sent from the MediaMVP Media Center - Development mailing list archive at Nab
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; ble.com.
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; ------------------------------------------------------------------------------
&lt;br&gt;&amp;gt; &amp;gt; Come build with us! The BlackBerry(R) Developer Conference in SF, CA
&lt;br&gt;&amp;gt; &amp;gt; is the only developer event you need to attend this year. Jumpstart your
&lt;br&gt;&amp;gt; &amp;gt; developing skills, take BlackBerry mobile applications to market and stay
&lt;br&gt;&amp;gt; &amp;gt; ahead of the curve. Join us from November 9 - 12, 2009. Register now!
&lt;br&gt;&amp;gt; &amp;gt; &lt;a href=&quot;http://p.sf.net/sfu/devconference&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/devconference&lt;/a&gt;&lt;br&gt;&amp;gt; &amp;gt; _______________________________________________
&lt;br&gt;&amp;gt; &amp;gt; Mvpmc-devel mailing list
&lt;br&gt;&amp;gt; &amp;gt; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26144843&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Mvpmc-devel@...&lt;/a&gt;
&lt;br&gt;&amp;gt; &amp;gt; &lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/mvpmc-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/mvpmc-devel&lt;/a&gt;&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; ------------------------------------------------------------------------------
&lt;br&gt;&amp;gt; Come build with us! The BlackBerry(R) Developer Conference in SF, CA
&lt;br&gt;&amp;gt; is the only developer event you need to attend this year. Jumpstart your
&lt;br&gt;&amp;gt; developing skills, take BlackBerry mobile applications to market and stay 
&lt;br&gt;&amp;gt; ahead of the curve. Join us from November 9 - 12, 2009. Register now!
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://p.sf.net/sfu/devconference&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/devconference&lt;/a&gt;&lt;br&gt;&amp;gt; _______________________________________________
&lt;br&gt;&amp;gt; Mvpmc-devel mailing list
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26144843&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Mvpmc-devel@...&lt;/a&gt;
&lt;br&gt;&amp;gt; &lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/mvpmc-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/mvpmc-devel&lt;/a&gt;&lt;/div&gt;&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Come build with us! The BlackBerry(R) Developer Conference in SF, CA
&lt;br&gt;is the only developer event you need to attend this year. Jumpstart your
&lt;br&gt;developing skills, take BlackBerry mobile applications to market and stay 
&lt;br&gt;ahead of the curve. Join us from November 9 - 12, 2009. Register now!
&lt;br&gt;&lt;a href=&quot;http://p.sf.net/sfu/devconference&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/devconference&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Mvpmc-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26144843&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Mvpmc-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/mvpmc-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/mvpmc-devel&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/libcmyth-and-XBMC-tp25900674s24862p26144843.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26099708</id>
	<title>Re: libcmyth and XBMC</title>
	<published>2009-10-28T11:24:49Z</published>
	<updated>2009-10-28T11:24:49Z</updated>
	<author>
		<name>Daniel Cleaver</name>
	</author>
	<content type="html">On Wed, 2009-10-28 at 13:02 -0500, &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26099708&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;gettler@...&lt;/a&gt; wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; On Wed, 28 Oct 2009 12:10:38 CDT, &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26099708&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;gettler@...&lt;/a&gt; wrote:
&lt;br&gt;&amp;gt; &amp;gt; 
&lt;br&gt;&amp;gt; &amp;gt; On Wed, 28 Oct 2009 16:56:04 -0000, Daniel Cleaver wrote:
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; Hi Jon,
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; I notice you've made quite a few changes to the source recently. I've
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; just updated my local copy, but I'm now getting the following error when
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; trying to compile:
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; 
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; ar rc libcmyth/libcmyth.a libcmyth/bookmark.o libcmyth/connection.o
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; libcmyth/debug.o libcmyth/event.o libcmyth/file.o libcmyth/freespace.o
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; libcmyth/keyframe.o libcmyth/posmap.o libcmyth/proginfo.o
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; libcmyth/proglist.o libcmyth/rec_num.o libcmyth/recorder.o
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; libcmyth/ringbuf.o libcmyth/socket.o libcmyth/timestamp.o
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; libcmyth/livetv.o libcmyth/commbreak.o libcmyth/mythtv_mysql.o
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; libcmyth/mysql_query.o
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; ranlib libcmyth/libcmyth.a
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; scons: *** [libcmyth/libcmyth.so.0.1] AttributeError : 'NoneType' object
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; has no attribute 'genstring'
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; scons: building terminated because of errors.
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; 
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; This is from a clean clone of the repo. It looks as though it's an scons
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; problem, but I'm not too hot with scons yet. Any ideas what's going on?
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; 
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; Cheers,
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; Daniel
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; 
&lt;br&gt;&amp;gt; &amp;gt; 
&lt;br&gt;&amp;gt; &amp;gt; That does seem odd. &amp;nbsp;With scons v0.97.0d20071203.r2509, it all builds
&lt;br&gt;&amp;gt; &amp;gt; just fine. &amp;nbsp;But with scons v1.2.0.r3842 I get the same error you do.
&lt;br&gt;&amp;gt; &amp;gt; 
&lt;br&gt;&amp;gt; &amp;gt; I'll look into it...
&lt;br&gt;&amp;gt; &amp;gt; 
&lt;br&gt;&amp;gt; &amp;gt; Jon
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; I pushed up a fix which seems to work for both versions of scons that
&lt;br&gt;&amp;gt; I tried (v0.97.0d20071203.r2509 and v1.2.0.r3842).
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Jon
&lt;br&gt;&amp;gt; 
&lt;/div&gt;&lt;br&gt;Thanks for that. Works fine now with my v1.2.0.r3842.
&lt;br&gt;&lt;br&gt;Daniel
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Come build with us! The BlackBerry(R) Developer Conference in SF, CA
&lt;br&gt;is the only developer event you need to attend this year. Jumpstart your
&lt;br&gt;developing skills, take BlackBerry mobile applications to market and stay 
&lt;br&gt;ahead of the curve. Join us from November 9 - 12, 2009. Register now!
&lt;br&gt;&lt;a href=&quot;http://p.sf.net/sfu/devconference&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/devconference&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Mvpmc-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26099708&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Mvpmc-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/mvpmc-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/mvpmc-devel&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/libcmyth-and-XBMC-tp25900674s24862p26099708.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26099337</id>
	<title>Re: libcmyth and XBMC</title>
	<published>2009-10-28T11:02:43Z</published>
	<updated>2009-10-28T11:02:43Z</updated>
	<author>
		<name>gettler</name>
	</author>
	<content type="html">&lt;br&gt;On Wed, 28 Oct 2009 12:10:38 CDT, &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26099337&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;gettler@...&lt;/a&gt; wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; On Wed, 28 Oct 2009 16:56:04 -0000, Daniel Cleaver wrote:
&lt;br&gt;&amp;gt; &amp;gt; Hi Jon,
&lt;br&gt;&amp;gt; &amp;gt; I notice you've made quite a few changes to the source recently. I've
&lt;br&gt;&amp;gt; &amp;gt; just updated my local copy, but I'm now getting the following error when
&lt;br&gt;&amp;gt; &amp;gt; trying to compile:
&lt;br&gt;&amp;gt; &amp;gt; 
&lt;br&gt;&amp;gt; &amp;gt; ar rc libcmyth/libcmyth.a libcmyth/bookmark.o libcmyth/connection.o
&lt;br&gt;&amp;gt; &amp;gt; libcmyth/debug.o libcmyth/event.o libcmyth/file.o libcmyth/freespace.o
&lt;br&gt;&amp;gt; &amp;gt; libcmyth/keyframe.o libcmyth/posmap.o libcmyth/proginfo.o
&lt;br&gt;&amp;gt; &amp;gt; libcmyth/proglist.o libcmyth/rec_num.o libcmyth/recorder.o
&lt;br&gt;&amp;gt; &amp;gt; libcmyth/ringbuf.o libcmyth/socket.o libcmyth/timestamp.o
&lt;br&gt;&amp;gt; &amp;gt; libcmyth/livetv.o libcmyth/commbreak.o libcmyth/mythtv_mysql.o
&lt;br&gt;&amp;gt; &amp;gt; libcmyth/mysql_query.o
&lt;br&gt;&amp;gt; &amp;gt; ranlib libcmyth/libcmyth.a
&lt;br&gt;&amp;gt; &amp;gt; scons: *** [libcmyth/libcmyth.so.0.1] AttributeError : 'NoneType' object
&lt;br&gt;&amp;gt; &amp;gt; has no attribute 'genstring'
&lt;br&gt;&amp;gt; &amp;gt; scons: building terminated because of errors.
&lt;br&gt;&amp;gt; &amp;gt; 
&lt;br&gt;&amp;gt; &amp;gt; This is from a clean clone of the repo. It looks as though it's an scons
&lt;br&gt;&amp;gt; &amp;gt; problem, but I'm not too hot with scons yet. Any ideas what's going on?
&lt;br&gt;&amp;gt; &amp;gt; 
&lt;br&gt;&amp;gt; &amp;gt; Cheers,
&lt;br&gt;&amp;gt; &amp;gt; Daniel
&lt;br&gt;&amp;gt; &amp;gt; 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; That does seem odd. &amp;nbsp;With scons v0.97.0d20071203.r2509, it all builds
&lt;br&gt;&amp;gt; just fine. &amp;nbsp;But with scons v1.2.0.r3842 I get the same error you do.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; I'll look into it...
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Jon
&lt;/div&gt;&lt;br&gt;I pushed up a fix which seems to work for both versions of scons that
&lt;br&gt;I tried (v0.97.0d20071203.r2509 and v1.2.0.r3842).
&lt;br&gt;&lt;br&gt;Jon
&lt;br&gt;&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Come build with us! The BlackBerry(R) Developer Conference in SF, CA
&lt;br&gt;is the only developer event you need to attend this year. Jumpstart your
&lt;br&gt;developing skills, take BlackBerry mobile applications to market and stay 
&lt;br&gt;ahead of the curve. Join us from November 9 - 12, 2009. Register now!
&lt;br&gt;&lt;a href=&quot;http://p.sf.net/sfu/devconference&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/devconference&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Mvpmc-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26099337&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Mvpmc-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/mvpmc-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/mvpmc-devel&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/libcmyth-and-XBMC-tp25900674s24862p26099337.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26098534</id>
	<title>Re: libcmyth and XBMC</title>
	<published>2009-10-28T10:10:38Z</published>
	<updated>2009-10-28T10:10:38Z</updated>
	<author>
		<name>gettler</name>
	</author>
	<content type="html">&lt;br&gt;On Wed, 28 Oct 2009 16:56:04 -0000, Daniel Cleaver wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Hi Jon,
&lt;br&gt;&amp;gt; I notice you've made quite a few changes to the source recently. I've
&lt;br&gt;&amp;gt; just updated my local copy, but I'm now getting the following error when
&lt;br&gt;&amp;gt; trying to compile:
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; ar rc libcmyth/libcmyth.a libcmyth/bookmark.o libcmyth/connection.o
&lt;br&gt;&amp;gt; libcmyth/debug.o libcmyth/event.o libcmyth/file.o libcmyth/freespace.o
&lt;br&gt;&amp;gt; libcmyth/keyframe.o libcmyth/posmap.o libcmyth/proginfo.o
&lt;br&gt;&amp;gt; libcmyth/proglist.o libcmyth/rec_num.o libcmyth/recorder.o
&lt;br&gt;&amp;gt; libcmyth/ringbuf.o libcmyth/socket.o libcmyth/timestamp.o
&lt;br&gt;&amp;gt; libcmyth/livetv.o libcmyth/commbreak.o libcmyth/mythtv_mysql.o
&lt;br&gt;&amp;gt; libcmyth/mysql_query.o
&lt;br&gt;&amp;gt; ranlib libcmyth/libcmyth.a
&lt;br&gt;&amp;gt; scons: *** [libcmyth/libcmyth.so.0.1] AttributeError : 'NoneType' object
&lt;br&gt;&amp;gt; has no attribute 'genstring'
&lt;br&gt;&amp;gt; scons: building terminated because of errors.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; This is from a clean clone of the repo. It looks as though it's an scons
&lt;br&gt;&amp;gt; problem, but I'm not too hot with scons yet. Any ideas what's going on?
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Cheers,
&lt;br&gt;&amp;gt; Daniel
&lt;br&gt;&amp;gt; 
&lt;/div&gt;&lt;br&gt;That does seem odd. &amp;nbsp;With scons v0.97.0d20071203.r2509, it all builds
&lt;br&gt;just fine. &amp;nbsp;But with scons v1.2.0.r3842 I get the same error you do.
&lt;br&gt;&lt;br&gt;I'll look into it...
&lt;br&gt;&lt;br&gt;Jon
&lt;br&gt;&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Come build with us! The BlackBerry(R) Developer Conference in SF, CA
&lt;br&gt;is the only developer event you need to attend this year. Jumpstart your
&lt;br&gt;developing skills, take BlackBerry mobile applications to market and stay 
&lt;br&gt;ahead of the curve. Join us from November 9 - 12, 2009. Register now!
&lt;br&gt;&lt;a href=&quot;http://p.sf.net/sfu/devconference&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/devconference&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Mvpmc-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26098534&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Mvpmc-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/mvpmc-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/mvpmc-devel&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/libcmyth-and-XBMC-tp25900674s24862p26098534.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26098284</id>
	<title>Re: libcmyth and XBMC</title>
	<published>2009-10-28T09:56:04Z</published>
	<updated>2009-10-28T09:56:04Z</updated>
	<author>
		<name>Daniel Cleaver</name>
	</author>
	<content type="html">Hi Jon,
&lt;br&gt;I notice you've made quite a few changes to the source recently. I've
&lt;br&gt;just updated my local copy, but I'm now getting the following error when
&lt;br&gt;trying to compile:
&lt;br&gt;&lt;br&gt;ar rc libcmyth/libcmyth.a libcmyth/bookmark.o libcmyth/connection.o
&lt;br&gt;libcmyth/debug.o libcmyth/event.o libcmyth/file.o libcmyth/freespace.o
&lt;br&gt;libcmyth/keyframe.o libcmyth/posmap.o libcmyth/proginfo.o
&lt;br&gt;libcmyth/proglist.o libcmyth/rec_num.o libcmyth/recorder.o
&lt;br&gt;libcmyth/ringbuf.o libcmyth/socket.o libcmyth/timestamp.o
&lt;br&gt;libcmyth/livetv.o libcmyth/commbreak.o libcmyth/mythtv_mysql.o
&lt;br&gt;libcmyth/mysql_query.o
&lt;br&gt;ranlib libcmyth/libcmyth.a
&lt;br&gt;scons: *** [libcmyth/libcmyth.so.0.1] AttributeError : 'NoneType' object
&lt;br&gt;has no attribute 'genstring'
&lt;br&gt;scons: building terminated because of errors.
&lt;br&gt;&lt;br&gt;This is from a clean clone of the repo. It looks as though it's an scons
&lt;br&gt;problem, but I'm not too hot with scons yet. Any ideas what's going on?
&lt;br&gt;&lt;br&gt;Cheers,
&lt;br&gt;Daniel
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Come build with us! The BlackBerry(R) Developer Conference in SF, CA
&lt;br&gt;is the only developer event you need to attend this year. Jumpstart your
&lt;br&gt;developing skills, take BlackBerry mobile applications to market and stay 
&lt;br&gt;ahead of the curve. Join us from November 9 - 12, 2009. Register now!
&lt;br&gt;&lt;a href=&quot;http://p.sf.net/sfu/devconference&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/devconference&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Mvpmc-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26098284&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Mvpmc-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/mvpmc-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/mvpmc-devel&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/libcmyth-and-XBMC-tp25900674s24862p26098284.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25991664</id>
	<title>Re: libcmyth and XBMC</title>
	<published>2009-10-21T05:11:35Z</published>
	<updated>2009-10-21T05:11:35Z</updated>
	<author>
		<name>gettler</name>
	</author>
	<content type="html">&lt;br&gt;On Wed, 21 Oct 2009 02:59:40 PDT, dteirney wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Eric, you are right. The variables need to be defined at the top of the block
&lt;br&gt;&amp;gt; they are scoped within. This is what has been done. The #ifdef statements
&lt;br&gt;&amp;gt; are not used to change the location of the variable declaration. That would
&lt;br&gt;&amp;gt; be madness.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; The #ifdef/#ifndef statements are generally used to include platform
&lt;br&gt;&amp;gt; specific headers. For example,
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; #ifndef _MSC_VER
&lt;br&gt;&amp;gt; #include &amp;lt;unistd.h&amp;gt;
&lt;br&gt;&amp;gt; #endif
&lt;br&gt;&amp;gt; #include &amp;lt;stdio.h&amp;gt;
&lt;br&gt;&amp;gt; #ifdef _MSC_VER
&lt;br&gt;&amp;gt; #include &amp;lt;winsock2.h&amp;gt;
&lt;br&gt;&amp;gt; #else
&lt;br&gt;&amp;gt; #include &amp;lt;sys/socket.h&amp;gt;
&lt;br&gt;&amp;gt; #include &amp;lt;netinet/in.h&amp;gt;
&lt;br&gt;&amp;gt; #include &amp;lt;netdb.h&amp;gt;
&lt;br&gt;&amp;gt; #include &amp;lt;arpa/inet.h&amp;gt;
&lt;br&gt;&amp;gt; #endif
&lt;/div&gt;&lt;br&gt;I think the above is a good use of #ifdef _MSC_VER
&lt;br&gt;&lt;br&gt;&amp;gt; They are also used to remove blocks of code, for example.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; #ifndef _MSC_VER
&lt;br&gt;&amp;gt; 	void (*old_sighandler)(int);
&lt;br&gt;&amp;gt; 	int old_alarm;
&lt;br&gt;&amp;gt; #endif
&lt;br&gt;&lt;br&gt;I think we should change this type of thing, however, to some sort of
&lt;br&gt;feature ifdef. &amp;nbsp;That way users of the library can easily turn off features
&lt;br&gt;they may not want or cannot support.
&lt;br&gt;&lt;br&gt;Jon
&lt;br&gt;&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Come build with us! The BlackBerry(R) Developer Conference in SF, CA
&lt;br&gt;is the only developer event you need to attend this year. Jumpstart your
&lt;br&gt;developing skills, take BlackBerry mobile applications to market and stay 
&lt;br&gt;ahead of the curve. Join us from November 9 - 12, 2009. Register now!
&lt;br&gt;&lt;a href=&quot;http://p.sf.net/sfu/devconference&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/devconference&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Mvpmc-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25991664&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Mvpmc-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/mvpmc-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/mvpmc-devel&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/libcmyth-and-XBMC-tp25900674s24862p25991664.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25989635</id>
	<title>Re: libcmyth and XBMC</title>
	<published>2009-10-21T02:59:38Z</published>
	<updated>2009-10-21T02:59:38Z</updated>
	<author>
		<name>dteirney</name>
	</author>
	<content type="html">Eric, you are right. The variables need to be defined at the top of the block they are scoped within. This is what has been done. The #ifdef statements are not used to change the location of the variable declaration. That would be madness.
&lt;br&gt;&lt;br&gt;The #ifdef/#ifndef statements are generally used to include platform specific headers. For example,
&lt;br&gt;&lt;br&gt;#ifndef _MSC_VER
&lt;br&gt;#include &amp;lt;unistd.h&amp;gt;
&lt;br&gt;#endif
&lt;br&gt;#include &amp;lt;stdio.h&amp;gt;
&lt;br&gt;#ifdef _MSC_VER
&lt;br&gt;#include &amp;lt;winsock2.h&amp;gt;
&lt;br&gt;#else
&lt;br&gt;#include &amp;lt;sys/socket.h&amp;gt;
&lt;br&gt;#include &amp;lt;netinet/in.h&amp;gt;
&lt;br&gt;#include &amp;lt;netdb.h&amp;gt;
&lt;br&gt;#include &amp;lt;arpa/inet.h&amp;gt;
&lt;br&gt;#endif
&lt;br&gt;&lt;br&gt;They are also used to remove blocks of code, for example.
&lt;br&gt;&lt;br&gt;#ifndef _MSC_VER
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; void (*old_sighandler)(int);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; int old_alarm;
&lt;br&gt;#endif
&lt;br&gt;&lt;br&gt;&lt;blockquote class=&quot;quote light-black dark-border-color&quot;&gt;&lt;div class=&quot;quote light-border-color&quot;&gt;
&lt;div class=&quot;quote-author&quot; style=&quot;font-weight: bold;&quot;&gt;Eric Lund wrote:&lt;/div&gt;
&lt;div class=&quot;quote-message shrinkable-quote&quot;&gt;David,
&lt;br&gt;&lt;br&gt;The pedantic compiler issues don't seem to me like they should need to
&lt;br&gt;be ifdef'ed. &amp;nbsp;If there is a code generation issue with the Microsoft
&lt;br&gt;compiler, then, by all means, protect it, but I, for one, hate excess
&lt;br&gt;ifdef's, so if you are just making the code work well for a stricter
&lt;br&gt;compiler, by all make the changes in the common code.
&lt;br&gt;&lt;br&gt;That said, is it that the variables have to be declared at the top of the
&lt;br&gt;function or as the first thing in a delineated block? &amp;nbsp;Most C compilers are
&lt;br&gt;just fine with:
&lt;br&gt;&lt;br&gt;int foo()
&lt;br&gt;{
&lt;br&gt;&amp;nbsp; &amp;nbsp; ...
&lt;br&gt;&amp;nbsp; &amp;nbsp; if (a == b) {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;int i;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;...
&lt;br&gt;&amp;nbsp; &amp;nbsp; }
&lt;br&gt;&amp;nbsp; &amp;nbsp; ...
&lt;br&gt;}
&lt;br&gt;&lt;br&gt;In fact, I believe this has been a documented legal syntax in C since the
&lt;br&gt;original K+R book, and it places the scope of 'i' in the inner block. Many
&lt;br&gt;true C compilers (as opposed to C++ compilers doing double duty as C
&lt;br&gt;compilers) will have a problem with:
&lt;br&gt;&lt;br&gt;int foo()
&lt;br&gt;{
&lt;br&gt;&amp;nbsp; &amp;nbsp; ...
&lt;br&gt;&amp;nbsp; &amp;nbsp; if (a == b) {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;a++;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;int i;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;...
&lt;br&gt;&amp;nbsp; &amp;nbsp; }
&lt;br&gt;&amp;nbsp; &amp;nbsp; ...
&lt;br&gt;}
&lt;br&gt;&lt;br&gt;So, if you have a choice of moving an inlined definition to the top of the
&lt;br&gt;function versus moving it to the top of the block in which it is defined,
&lt;br&gt;and the compiler will let you, please move it to the top of the block to
&lt;br&gt;avoid any possible changes in scoping that might bite you.
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Eric
&lt;/div&gt;
&lt;/div&gt;&lt;/blockquote&gt;
</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/libcmyth-and-XBMC-tp25900674s24862p25989635.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25985238</id>
	<title>Re: libcmyth and XBMC</title>
	<published>2009-10-20T18:29:16Z</published>
	<updated>2009-10-20T18:29:16Z</updated>
	<author>
		<name>Eric Lund</name>
	</author>
	<content type="html">As one of those involved, I think it is probably ready for prime time, 
&lt;br&gt;at least from the perspective of appearing to work. &amp;nbsp;Anyone else?
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Eric
&lt;br&gt;&lt;br&gt;On 10/19/2009 07:37 AM, &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25985238&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;gettler@...&lt;/a&gt; wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; I think the next step is for those involved to agree that the current
&lt;br&gt;&amp;gt; cmyth.git repo is a good starting point. &amp;nbsp;Then we can start taking patches
&lt;br&gt;&amp;gt; from mvpmc and XBMC so that it is buildable by both projects (as well as
&lt;br&gt;&amp;gt; standalone).
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Jon
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; On Mon, 19 Oct 2009 00:00:56 PDT, dteirney wrote:
&lt;br&gt;&amp;gt;&amp;gt; Would be great to have a separate libcmyth project that is contributed to by
&lt;br&gt;&amp;gt;&amp;gt; all those using it.
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; I've also done some development of libcmyth for use with XBMC Media Center.
&lt;br&gt;&amp;gt;&amp;gt; For example, finished the work already started to get commercial breaks from
&lt;br&gt;&amp;gt;&amp;gt; the backend using the Myth Protocol rather than the MySQL query. Also a
&lt;br&gt;&amp;gt;&amp;gt; patch to support 0.22 over and above what was added in the mvpmc repository.
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; There are a number of other changes within XBMC to support building with the
&lt;br&gt;&amp;gt;&amp;gt; Microsoft C compiler, which is very pedantic, e.g. all variables must be
&lt;br&gt;&amp;gt;&amp;gt; declared at the top of the method. Lots of #ifdef _MSC_VER around the place
&lt;br&gt;&amp;gt;&amp;gt; for other reasons.
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; I don't know the reasons for all of the differences between the XBMC version
&lt;br&gt;&amp;gt;&amp;gt; and the current libcmyth trunk, but I might be able to get some time off
&lt;br&gt;&amp;gt;&amp;gt; elupus to provide some information about the changes that aren't obvious.
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; What is the next step to try and push back some of the changes that have
&lt;br&gt;&amp;gt;&amp;gt; been made externally to the mvpmc repository? I've got the git version on my
&lt;br&gt;&amp;gt;&amp;gt; machine and can start sending patches with rationale.
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; Thanks!
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; David
&lt;br&gt;&amp;gt;&amp;gt; --
&lt;br&gt;&amp;gt;&amp;gt; View this message in context: &lt;a href=&quot;http://www.nabble.com/libcmyth-and-XBMC-tp25900&quot; target=&quot;_top&quot;&gt;http://www.nabble.com/libcmyth-and-XBMC-tp25900&lt;/a&gt;&lt;br&gt;&amp;gt;&amp;gt; 674s24862p25944258.html
&lt;br&gt;&amp;gt;&amp;gt; Sent from the MediaMVP Media Center - Development mailing list archive at Nab
&lt;br&gt;&amp;gt;&amp;gt; ble.com.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; ------------------------------------------------------------------------------
&lt;br&gt;&amp;gt; Come build with us! The BlackBerry(R) Developer Conference in SF, CA
&lt;br&gt;&amp;gt; is the only developer event you need to attend this year. Jumpstart your
&lt;br&gt;&amp;gt; developing skills, take BlackBerry mobile applications to market and stay
&lt;br&gt;&amp;gt; ahead of the curve. Join us from November 9 - 12, 2009. Register now!
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://p.sf.net/sfu/devconference&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/devconference&lt;/a&gt;&lt;br&gt;&amp;gt; _______________________________________________
&lt;br&gt;&amp;gt; Mvpmc-devel mailing list
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25985238&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Mvpmc-devel@...&lt;/a&gt;
&lt;br&gt;&amp;gt; &lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/mvpmc-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/mvpmc-devel&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;/div&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Come build with us! The BlackBerry(R) Developer Conference in SF, CA
&lt;br&gt;is the only developer event you need to attend this year. Jumpstart your
&lt;br&gt;developing skills, take BlackBerry mobile applications to market and stay 
&lt;br&gt;ahead of the curve. Join us from November 9 - 12, 2009. Register now!
&lt;br&gt;&lt;a href=&quot;http://p.sf.net/sfu/devconference&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/devconference&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Mvpmc-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25985238&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Mvpmc-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/mvpmc-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/mvpmc-devel&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/libcmyth-and-XBMC-tp25900674s24862p25985238.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25963374</id>
	<title>Re: libcmyth and XBMC</title>
	<published>2009-10-19T11:35:35Z</published>
	<updated>2009-10-19T11:35:35Z</updated>
	<author>
		<name>Eric Lund</name>
	</author>
	<content type="html">David,
&lt;br&gt;&lt;br&gt;The pedantic compiler issues don't seem to me like they should need to
&lt;br&gt;be ifdef'ed. &amp;nbsp;If there is a code generation issue with the Microsoft
&lt;br&gt;compiler, then, by all means, protect it, but I, for one, hate excess
&lt;br&gt;ifdef's, so if you are just making the code work well for a stricter
&lt;br&gt;compiler, by all make the changes in the common code.
&lt;br&gt;&lt;br&gt;That said, is it that the variables have to be declared at the top of the
&lt;br&gt;function or as the first thing in a delineated block? &amp;nbsp;Most C compilers are
&lt;br&gt;just fine with:
&lt;br&gt;&lt;br&gt;int foo()
&lt;br&gt;{
&lt;br&gt;&amp;nbsp; &amp;nbsp; ...
&lt;br&gt;&amp;nbsp; &amp;nbsp; if (a == b) {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;int i;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;...
&lt;br&gt;&amp;nbsp; &amp;nbsp; }
&lt;br&gt;&amp;nbsp; &amp;nbsp; ...
&lt;br&gt;}
&lt;br&gt;&lt;br&gt;In fact, I believe this has been a documented legal syntax in C since the
&lt;br&gt;original K+R book, and it places the scope of 'i' in the inner block. Many
&lt;br&gt;true C compilers (as opposed to C++ compilers doing double duty as C
&lt;br&gt;compilers) will have a problem with:
&lt;br&gt;&lt;br&gt;int foo()
&lt;br&gt;{
&lt;br&gt;&amp;nbsp; &amp;nbsp; ...
&lt;br&gt;&amp;nbsp; &amp;nbsp; if (a == b) {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;a++;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;int i;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;...
&lt;br&gt;&amp;nbsp; &amp;nbsp; }
&lt;br&gt;&amp;nbsp; &amp;nbsp; ...
&lt;br&gt;}
&lt;br&gt;&lt;br&gt;So, if you have a choice of moving an inlined definition to the top of the
&lt;br&gt;function versus moving it to the top of the block in which it is defined,
&lt;br&gt;and the compiler will let you, please move it to the top of the block to
&lt;br&gt;avoid any possible changes in scoping that might bite you.
&lt;br&gt;&lt;br&gt;Jon, I didn't get around to trying out the myth fuse over the weekend.
&lt;br&gt;maybe tonight. &amp;nbsp;I now have an 0.21 myth server (I was running 0.20 up
&lt;br&gt;until last week) so we'll see if it still works with 0.21.
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Eric
&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25963374&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;gettler@...&lt;/a&gt; wrote:
&lt;br&gt;&amp;nbsp;&amp;gt; I think the next step is for those involved to agree that the current
&lt;br&gt;&amp;nbsp;&amp;gt; cmyth.git repo is a good starting point. &amp;nbsp;Then we can start taking patches
&lt;br&gt;&amp;nbsp;&amp;gt; from mvpmc and XBMC so that it is buildable by both projects (as well as
&lt;br&gt;&amp;nbsp;&amp;gt; standalone).
&lt;br&gt;&amp;nbsp;&amp;gt;
&lt;br&gt;&amp;nbsp;&amp;gt; Jon
&lt;br&gt;&amp;nbsp;&amp;gt;
&lt;br&gt;&amp;nbsp;&amp;gt; On Mon, 19 Oct 2009 00:00:56 PDT, dteirney wrote:
&lt;br&gt;&amp;nbsp;&amp;gt;&amp;gt; Would be great to have a separate libcmyth project that is contributed to by
&lt;br&gt;&amp;nbsp;&amp;gt;&amp;gt; all those using it.
&lt;br&gt;&amp;nbsp;&amp;gt;&amp;gt;
&lt;br&gt;&amp;nbsp;&amp;gt;&amp;gt; I've also done some development of libcmyth for use with XBMC Media Center.
&lt;br&gt;&amp;nbsp;&amp;gt;&amp;gt; For example, finished the work already started to get commercial breaks from
&lt;br&gt;&amp;nbsp;&amp;gt;&amp;gt; the backend using the Myth Protocol rather than the MySQL query. Also a
&lt;br&gt;&amp;nbsp;&amp;gt;&amp;gt; patch to support 0.22 over and above what was added in the mvpmc repository.
&lt;br&gt;&amp;nbsp;&amp;gt;&amp;gt;
&lt;br&gt;&amp;nbsp;&amp;gt;&amp;gt; There are a number of other changes within XBMC to support building with the
&lt;br&gt;&amp;nbsp;&amp;gt;&amp;gt; Microsoft C compiler, which is very pedantic, e.g. all variables must be
&lt;br&gt;&amp;nbsp;&amp;gt;&amp;gt; declared at the top of the method. Lots of #ifdef _MSC_VER around the place
&lt;br&gt;&amp;nbsp;&amp;gt;&amp;gt; for other reasons.
&lt;br&gt;&amp;nbsp;&amp;gt;&amp;gt;
&lt;br&gt;&amp;nbsp;&amp;gt;&amp;gt; I don't know the reasons for all of the differences between the XBMC version
&lt;br&gt;&amp;nbsp;&amp;gt;&amp;gt; and the current libcmyth trunk, but I might be able to get some time off
&lt;br&gt;&amp;nbsp;&amp;gt;&amp;gt; elupus to provide some information about the changes that aren't obvious.
&lt;br&gt;&amp;nbsp;&amp;gt;&amp;gt;
&lt;br&gt;&amp;nbsp;&amp;gt;&amp;gt; What is the next step to try and push back some of the changes that have
&lt;br&gt;&amp;nbsp;&amp;gt;&amp;gt; been made externally to the mvpmc repository? I've got the git version on my
&lt;br&gt;&amp;nbsp;&amp;gt;&amp;gt; machine and can start sending patches with rationale.
&lt;br&gt;&amp;nbsp;&amp;gt;&amp;gt;
&lt;br&gt;&amp;nbsp;&amp;gt;&amp;gt; Thanks!
&lt;br&gt;&amp;nbsp;&amp;gt;&amp;gt;
&lt;br&gt;&amp;nbsp;&amp;gt;&amp;gt; David
&lt;br&gt;&amp;nbsp;&amp;gt;&amp;gt; --
&lt;br&gt;&amp;nbsp;&amp;gt;&amp;gt; View this message in context: &lt;a href=&quot;http://www.nabble.com/libcmyth-and-XBMC-tp25900&quot; target=&quot;_top&quot;&gt;http://www.nabble.com/libcmyth-and-XBMC-tp25900&lt;/a&gt;&lt;br&gt;&amp;nbsp;&amp;gt;&amp;gt; 674s24862p25944258.html
&lt;br&gt;&amp;nbsp;&amp;gt;&amp;gt; Sent from the MediaMVP Media Center - Development mailing list archive at Nab
&lt;br&gt;&amp;nbsp;&amp;gt;&amp;gt; ble.com.
&lt;br&gt;&amp;nbsp;&amp;gt;
&lt;br&gt;&amp;nbsp;&amp;gt; ------------------------------------------------------------------------------
&lt;br&gt;&amp;nbsp;&amp;gt; Come build with us! The BlackBerry(R) Developer Conference in SF, CA
&lt;br&gt;&amp;nbsp;&amp;gt; is the only developer event you need to attend this year. Jumpstart your
&lt;br&gt;&amp;nbsp;&amp;gt; developing skills, take BlackBerry mobile applications to market and stay
&lt;br&gt;&amp;nbsp;&amp;gt; ahead of the curve. Join us from November 9 - 12, 2009. Register now!
&lt;br&gt;&amp;nbsp;&amp;gt; &lt;a href=&quot;http://p.sf.net/sfu/devconference&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/devconference&lt;/a&gt;&lt;br&gt;&amp;nbsp;&amp;gt; _______________________________________________
&lt;br&gt;&amp;nbsp;&amp;gt; Mvpmc-devel mailing list
&lt;br&gt;&amp;nbsp;&amp;gt; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25963374&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Mvpmc-devel@...&lt;/a&gt;
&lt;br&gt;&amp;nbsp;&amp;gt; &lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/mvpmc-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/mvpmc-devel&lt;/a&gt;&lt;br&gt;&amp;nbsp;&amp;gt;
&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Come build with us! The BlackBerry(R) Developer Conference in SF, CA
&lt;br&gt;is the only developer event you need to attend this year. Jumpstart your
&lt;br&gt;developing skills, take BlackBerry mobile applications to market and stay 
&lt;br&gt;ahead of the curve. Join us from November 9 - 12, 2009. Register now!
&lt;br&gt;&lt;a href=&quot;http://p.sf.net/sfu/devconference&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/devconference&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Mvpmc-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25963374&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Mvpmc-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/mvpmc-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/mvpmc-devel&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/libcmyth-and-XBMC-tp25900674s24862p25963374.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25957754</id>
	<title>Re: libcmyth and XBMC</title>
	<published>2009-10-19T05:37:32Z</published>
	<updated>2009-10-19T05:37:32Z</updated>
	<author>
		<name>gettler</name>
	</author>
	<content type="html">&lt;br&gt;I think the next step is for those involved to agree that the current
&lt;br&gt;cmyth.git repo is a good starting point. &amp;nbsp;Then we can start taking patches
&lt;br&gt;from mvpmc and XBMC so that it is buildable by both projects (as well as
&lt;br&gt;standalone).
&lt;br&gt;&lt;br&gt;Jon
&lt;br&gt;&lt;br&gt;On Mon, 19 Oct 2009 00:00:56 PDT, dteirney wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Would be great to have a separate libcmyth project that is contributed to by
&lt;br&gt;&amp;gt; all those using it.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; I've also done some development of libcmyth for use with XBMC Media Center.
&lt;br&gt;&amp;gt; For example, finished the work already started to get commercial breaks from
&lt;br&gt;&amp;gt; the backend using the Myth Protocol rather than the MySQL query. Also a
&lt;br&gt;&amp;gt; patch to support 0.22 over and above what was added in the mvpmc repository.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; There are a number of other changes within XBMC to support building with the
&lt;br&gt;&amp;gt; Microsoft C compiler, which is very pedantic, e.g. all variables must be
&lt;br&gt;&amp;gt; declared at the top of the method. Lots of #ifdef _MSC_VER around the place
&lt;br&gt;&amp;gt; for other reasons.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; I don't know the reasons for all of the differences between the XBMC version
&lt;br&gt;&amp;gt; and the current libcmyth trunk, but I might be able to get some time off
&lt;br&gt;&amp;gt; elupus to provide some information about the changes that aren't obvious.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; What is the next step to try and push back some of the changes that have
&lt;br&gt;&amp;gt; been made externally to the mvpmc repository? I've got the git version on my
&lt;br&gt;&amp;gt; machine and can start sending patches with rationale.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Thanks!
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; David
&lt;br&gt;&amp;gt; -- 
&lt;br&gt;&amp;gt; View this message in context: &lt;a href=&quot;http://www.nabble.com/libcmyth-and-XBMC-tp25900&quot; target=&quot;_top&quot;&gt;http://www.nabble.com/libcmyth-and-XBMC-tp25900&lt;/a&gt;&lt;br&gt;&amp;gt;674s24862p25944258.html
&lt;br&gt;&amp;gt; Sent from the MediaMVP Media Center - Development mailing list archive at Nab
&lt;br&gt;&amp;gt;ble.com.
&lt;/div&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Come build with us! The BlackBerry(R) Developer Conference in SF, CA
&lt;br&gt;is the only developer event you need to attend this year. Jumpstart your
&lt;br&gt;developing skills, take BlackBerry mobile applications to market and stay 
&lt;br&gt;ahead of the curve. Join us from November 9 - 12, 2009. Register now!
&lt;br&gt;&lt;a href=&quot;http://p.sf.net/sfu/devconference&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/devconference&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Mvpmc-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25957754&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Mvpmc-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/mvpmc-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/mvpmc-devel&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/libcmyth-and-XBMC-tp25900674s24862p25957754.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25944258</id>
	<title>Re: libcmyth and XBMC</title>
	<published>2009-10-17T22:59:56Z</published>
	<updated>2009-10-19T00:00:53Z</updated>
	<author>
		<name>dteirney</name>
	</author>
	<content type="html">Would be great to have a separate libcmyth project that is contributed to by all those using it.
&lt;br&gt;&lt;br&gt;I've also done some development of libcmyth for use with XBMC Media Center. For example, finished the work already started to get commercial breaks from the backend using the Myth Protocol rather than the MySQL query. Also a patch to support 0.22 over and above what was added in the mvpmc repository.
&lt;br&gt;&lt;br&gt;There are a number of other changes within XBMC to support building with the Microsoft C compiler, which is very pedantic, e.g. all variables must be declared at the top of the method. Lots of #ifdef _MSC_VER around the place for other reasons.
&lt;br&gt;&lt;br&gt;I don't know the reasons for all of the differences between the XBMC version and the current libcmyth trunk, but I might be able to get some time off elupus to provide some information about the changes that aren't obvious.
&lt;br&gt;&lt;br&gt;What is the next step to try and push back some of the changes that have been made externally to the mvpmc repository? I've got the git version on my machine and can start sending patches with rationale.
&lt;br&gt;&lt;br&gt;Thanks!
&lt;br&gt;&lt;br&gt;David</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/libcmyth-and-XBMC-tp25900674s24862p25944258.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25928510</id>
	<title>Re: libcmyth and XBMC</title>
	<published>2009-10-16T09:41:14Z</published>
	<updated>2009-10-16T09:41:14Z</updated>
	<author>
		<name>Daniel Cleaver</name>
	</author>
	<content type="html">Wow! That was fast!
&lt;br&gt;&lt;br&gt;I've managed to build the libraries fine. The mythfuse example doesn't
&lt;br&gt;compile though. Scratch that -- just went to check the exact error and I
&lt;br&gt;don't have the fuse headers installed :S
&lt;br&gt;&lt;br&gt;I'll let you know how I get on with using the library. Still in the
&lt;br&gt;early stages though.
&lt;br&gt;&lt;br&gt;Thanks,
&lt;br&gt;Daniel
&lt;br&gt;&lt;br&gt;On Thu, 2009-10-15 at 20:29 -0500, &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25928510&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;gettler@...&lt;/a&gt; wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; On Thu, 15 Oct 2009 09:34:33 CDT, Eric Lund wrote:
&lt;br&gt;&amp;gt; &amp;gt; 
&lt;br&gt;&amp;gt; &amp;gt; Splitting libcmyth out would be fine with me. &amp;nbsp;I think it is a great
&lt;br&gt;&amp;gt; &amp;gt; idea. &amp;nbsp;It is nice to know that that code lives on in other projects.
&lt;br&gt;&amp;gt; &amp;gt; 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; I've taken the first stab at this. &amp;nbsp;The problems I had rewriting history
&lt;br&gt;&amp;gt; seem to have gone away with git 1.6.5.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; So have a look at &lt;a href=&quot;http://git.mvpmc.org/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://git.mvpmc.org/&lt;/a&gt;&amp;nbsp;and the cmyth.git repository. &amp;nbsp;I
&lt;br&gt;&amp;gt; rewrote the history from HEAD of mvpmc.git to remove everything that was not
&lt;br&gt;&amp;gt; needed by an app that wants to use libcmyth. &amp;nbsp;Then I made it compile on my
&lt;br&gt;&amp;gt; PC, and added my mythfuse app as an example (it creates a filesystem for
&lt;br&gt;&amp;gt; your myth server).
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; For everyone interested in libcmyth, please take a look at this. &amp;nbsp;If I've
&lt;br&gt;&amp;gt; missed anything, I would prefer to fix it now by recreating the repo, rather
&lt;br&gt;&amp;gt; than after people start using it for real.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; FYI, it is read-only at the moment, so you won't be able to push into it.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Thanks.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Jon
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; ------------------------------------------------------------------------------
&lt;br&gt;&amp;gt; Come build with us! The BlackBerry(R) Developer Conference in SF, CA
&lt;br&gt;&amp;gt; is the only developer event you need to attend this year. Jumpstart your
&lt;br&gt;&amp;gt; developing skills, take BlackBerry mobile applications to market and stay 
&lt;br&gt;&amp;gt; ahead of the curve. Join us from November 9 - 12, 2009. Register now!
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://p.sf.net/sfu/devconference&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/devconference&lt;/a&gt;&lt;br&gt;&amp;gt; _______________________________________________
&lt;br&gt;&amp;gt; Mvpmc-devel mailing list
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25928510&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Mvpmc-devel@...&lt;/a&gt;
&lt;br&gt;&amp;gt; &lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/mvpmc-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/mvpmc-devel&lt;/a&gt;&lt;/div&gt;&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Come build with us! The BlackBerry(R) Developer Conference in SF, CA
&lt;br&gt;is the only developer event you need to attend this year. Jumpstart your
&lt;br&gt;developing skills, take BlackBerry mobile applications to market and stay 
&lt;br&gt;ahead of the curve. Join us from November 9 - 12, 2009. Register now!
&lt;br&gt;&lt;a href=&quot;http://p.sf.net/sfu/devconference&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/devconference&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Mvpmc-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25928510&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Mvpmc-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/mvpmc-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/mvpmc-devel&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/libcmyth-and-XBMC-tp25900674s24862p25928510.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25918735</id>
	<title>Re: libcmyth and XBMC</title>
	<published>2009-10-15T18:29:02Z</published>
	<updated>2009-10-15T18:29:02Z</updated>
	<author>
		<name>gettler</name>
	</author>
	<content type="html">&lt;br&gt;On Thu, 15 Oct 2009 09:34:33 CDT, Eric Lund wrote:
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Splitting libcmyth out would be fine with me. &amp;nbsp;I think it is a great
&lt;br&gt;&amp;gt; idea. &amp;nbsp;It is nice to know that that code lives on in other projects.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&lt;br&gt;I've taken the first stab at this. &amp;nbsp;The problems I had rewriting history
&lt;br&gt;seem to have gone away with git 1.6.5.
&lt;br&gt;&lt;br&gt;So have a look at &lt;a href=&quot;http://git.mvpmc.org/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://git.mvpmc.org/&lt;/a&gt;&amp;nbsp;and the cmyth.git repository. &amp;nbsp;I
&lt;br&gt;rewrote the history from HEAD of mvpmc.git to remove everything that was not
&lt;br&gt;needed by an app that wants to use libcmyth. &amp;nbsp;Then I made it compile on my
&lt;br&gt;PC, and added my mythfuse app as an example (it creates a filesystem for
&lt;br&gt;your myth server).
&lt;br&gt;&lt;br&gt;For everyone interested in libcmyth, please take a look at this. &amp;nbsp;If I've
&lt;br&gt;missed anything, I would prefer to fix it now by recreating the repo, rather
&lt;br&gt;than after people start using it for real.
&lt;br&gt;&lt;br&gt;FYI, it is read-only at the moment, so you won't be able to push into it.
&lt;br&gt;&lt;br&gt;Thanks.
&lt;br&gt;&lt;br&gt;Jon
&lt;br&gt;&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Come build with us! The BlackBerry(R) Developer Conference in SF, CA
&lt;br&gt;is the only developer event you need to attend this year. Jumpstart your
&lt;br&gt;developing skills, take BlackBerry mobile applications to market and stay 
&lt;br&gt;ahead of the curve. Join us from November 9 - 12, 2009. Register now!
&lt;br&gt;&lt;a href=&quot;http://p.sf.net/sfu/devconference&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/devconference&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Mvpmc-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25918735&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Mvpmc-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/mvpmc-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/mvpmc-devel&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/libcmyth-and-XBMC-tp25900674s24862p25918735.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25914499</id>
	<title>Re: libcmyth and XBMC</title>
	<published>2009-10-15T12:15:21Z</published>
	<updated>2009-10-15T12:15:21Z</updated>
	<author>
		<name>gettler</name>
	</author>
	<content type="html">&lt;br&gt;There are several options.
&lt;br&gt;&lt;br&gt;We could have a single development stream and have the mvpmc.org server
&lt;br&gt;generate tarballs on days when the code changes. &amp;nbsp;Each project could then
&lt;br&gt;track the library as they see fit.
&lt;br&gt;&lt;br&gt;Or each project could have their own development stream within the libcmyth
&lt;br&gt;repository, and they would build from their own tip. &amp;nbsp;This would require
&lt;br&gt;the developers to merge their own changes back and forth between a master
&lt;br&gt;tip, but each project would be in control of what they are releasing.
&lt;br&gt;&lt;br&gt;Also, we'll want do official releases of the library every so often.
&lt;br&gt;&lt;br&gt;Jon
&lt;br&gt;&lt;br&gt;On Thu, 15 Oct 2009 19:45:08 BST, Daniel Cleaver wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Jon,
&lt;br&gt;&amp;gt; That sounds great. I guess you'll want to enforce some rules though
&lt;br&gt;&amp;gt; about what people can commit? Particularly to prevent breaking mvpmc's
&lt;br&gt;&amp;gt; myth functionality.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Or were you thinking of branching it and only merging back when mvpmc is
&lt;br&gt;&amp;gt; happy with the changes?
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Daniel
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; On Wed, 2009-10-14 at 18:35 -0500, &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25914499&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;gettler@...&lt;/a&gt; wrote:
&lt;br&gt;&amp;gt; &amp;gt; On Wed, 14 Oct 2009 23:35:17 BST, Daniel Cleaver wrote:
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; Hi all,
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; I'm not sure whether you guys are aware or not that XBMC
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; (&lt;a href=&quot;http://xbmc.org&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://xbmc.org&lt;/a&gt;) currently use the libcmyth library?
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; 
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; I'm looking at expanding on XBMC's use of MythTV (and therefore the
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; library) to provide full PVR functionality (currently only basic
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; watching of live and recorded shows is possible, but no EPG).
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; 
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; My question is -- what's the best way to go about adding functionality
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; to libcmyth for XBMC's needs? Branch at the current trunk revision?
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; Would you guys be willing to allow merges back? Or only if they suited
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; MediaMVP? In which case XBMC would have to maintain its own fork with
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; merges being fed into it from the original libcmyth?
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; 
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; Excuse my ignorance on such matters -- I'm new to this open source
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; development lark. Figured I've used it for so long, might as well get my
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; hands dirty :)
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; 
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; Regards,
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; Daniel Cleaver
&lt;br&gt;&amp;gt; &amp;gt; 
&lt;br&gt;&amp;gt; &amp;gt; This has come up before.
&lt;br&gt;&amp;gt; &amp;gt; 
&lt;br&gt;&amp;gt; &amp;gt; The correct solution, really, is for us to create a standalone git repo
&lt;br&gt;&amp;gt; &amp;gt; that contains libcmyth only. &amp;nbsp;Then development could proceed there by
&lt;br&gt;&amp;gt; &amp;gt; everyone who is interested in maintaining it (from mvpmc, xbmc, ...).
&lt;br&gt;&amp;gt; &amp;gt; 
&lt;br&gt;&amp;gt; &amp;gt; I tried splitting the code apart into a seperate repository a while back,
&lt;br&gt;&amp;gt; &amp;gt; but never quite got git to retain the development history correctly.
&lt;br&gt;&amp;gt; &amp;gt; 
&lt;br&gt;&amp;gt; &amp;gt; Would this work for everyone? &amp;nbsp;I can make sure that those interested have
&lt;br&gt;&amp;gt; &amp;gt; write access to the repo.
&lt;br&gt;&amp;gt; &amp;gt; 
&lt;br&gt;&amp;gt; &amp;gt; Jon
&lt;br&gt;&amp;gt; &amp;gt; 
&lt;/div&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Come build with us! The BlackBerry(R) Developer Conference in SF, CA
&lt;br&gt;is the only developer event you need to attend this year. Jumpstart your
&lt;br&gt;developing skills, take BlackBerry mobile applications to market and stay 
&lt;br&gt;ahead of the curve. Join us from November 9 - 12, 2009. Register now!
&lt;br&gt;&lt;a href=&quot;http://p.sf.net/sfu/devconference&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/devconference&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Mvpmc-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25914499&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Mvpmc-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/mvpmc-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/mvpmc-devel&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/libcmyth-and-XBMC-tp25900674s24862p25914499.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25913952</id>
	<title>Re: libcmyth and XBMC</title>
	<published>2009-10-15T11:45:08Z</published>
	<updated>2009-10-15T11:45:08Z</updated>
	<author>
		<name>Daniel Cleaver</name>
	</author>
	<content type="html">Jon,
&lt;br&gt;That sounds great. I guess you'll want to enforce some rules though
&lt;br&gt;about what people can commit? Particularly to prevent breaking mvpmc's
&lt;br&gt;myth functionality.
&lt;br&gt;&lt;br&gt;Or were you thinking of branching it and only merging back when mvpmc is
&lt;br&gt;happy with the changes?
&lt;br&gt;&lt;br&gt;Daniel
&lt;br&gt;&lt;br&gt;On Wed, 2009-10-14 at 18:35 -0500, &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25913952&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;gettler@...&lt;/a&gt; wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; On Wed, 14 Oct 2009 23:35:17 BST, Daniel Cleaver wrote:
&lt;br&gt;&amp;gt; &amp;gt; Hi all,
&lt;br&gt;&amp;gt; &amp;gt; I'm not sure whether you guys are aware or not that XBMC
&lt;br&gt;&amp;gt; &amp;gt; (&lt;a href=&quot;http://xbmc.org&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://xbmc.org&lt;/a&gt;) currently use the libcmyth library?
&lt;br&gt;&amp;gt; &amp;gt; 
&lt;br&gt;&amp;gt; &amp;gt; I'm looking at expanding on XBMC's use of MythTV (and therefore the
&lt;br&gt;&amp;gt; &amp;gt; library) to provide full PVR functionality (currently only basic
&lt;br&gt;&amp;gt; &amp;gt; watching of live and recorded shows is possible, but no EPG).
&lt;br&gt;&amp;gt; &amp;gt; 
&lt;br&gt;&amp;gt; &amp;gt; My question is -- what's the best way to go about adding functionality
&lt;br&gt;&amp;gt; &amp;gt; to libcmyth for XBMC's needs? Branch at the current trunk revision?
&lt;br&gt;&amp;gt; &amp;gt; Would you guys be willing to allow merges back? Or only if they suited
&lt;br&gt;&amp;gt; &amp;gt; MediaMVP? In which case XBMC would have to maintain its own fork with
&lt;br&gt;&amp;gt; &amp;gt; merges being fed into it from the original libcmyth?
&lt;br&gt;&amp;gt; &amp;gt; 
&lt;br&gt;&amp;gt; &amp;gt; Excuse my ignorance on such matters -- I'm new to this open source
&lt;br&gt;&amp;gt; &amp;gt; development lark. Figured I've used it for so long, might as well get my
&lt;br&gt;&amp;gt; &amp;gt; hands dirty :)
&lt;br&gt;&amp;gt; &amp;gt; 
&lt;br&gt;&amp;gt; &amp;gt; Regards,
&lt;br&gt;&amp;gt; &amp;gt; Daniel Cleaver
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; This has come up before.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; The correct solution, really, is for us to create a standalone git repo
&lt;br&gt;&amp;gt; that contains libcmyth only. &amp;nbsp;Then development could proceed there by
&lt;br&gt;&amp;gt; everyone who is interested in maintaining it (from mvpmc, xbmc, ...).
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; I tried splitting the code apart into a seperate repository a while back,
&lt;br&gt;&amp;gt; but never quite got git to retain the development history correctly.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Would this work for everyone? &amp;nbsp;I can make sure that those interested have
&lt;br&gt;&amp;gt; write access to the repo.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Jon
&lt;br&gt;&amp;gt; 
&lt;/div&gt;&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Come build with us! The BlackBerry(R) Developer Conference in SF, CA
&lt;br&gt;is the only developer event you need to attend this year. Jumpstart your
&lt;br&gt;developing skills, take BlackBerry mobile applications to market and stay 
&lt;br&gt;ahead of the curve. Join us from November 9 - 12, 2009. Register now!
&lt;br&gt;&lt;a href=&quot;http://p.sf.net/sfu/devconference&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/devconference&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Mvpmc-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25913952&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Mvpmc-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/mvpmc-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/mvpmc-devel&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/libcmyth-and-XBMC-tp25900674s24862p25913952.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25911917</id>
	<title>Re: libcmyth and XBMC</title>
	<published>2009-10-15T09:32:27Z</published>
	<updated>2009-10-15T09:32:27Z</updated>
	<author>
		<name>MVallevand</name>
	</author>
	<content type="html">On Thu, Oct 15, 2009 at 10:34 AM, Eric Lund &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25911917&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;eric@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt; That said, I would like another player, and I am not sure the PH is
&lt;br&gt;&amp;gt; where I want to go at this point.  Is the Roku a good direction?  What
&lt;br&gt;&lt;br&gt;Personally I think we just need to devote a month to get the PCH's and
&lt;br&gt;MythTV working and everyone will be pleasantly surprised. &amp;nbsp;You can't
&lt;br&gt;compare what you see with the basic Syabas player, with what GBPVR
&lt;br&gt;users are seeing. &amp;nbsp;Playing mpeg-ts and mpeg-ps files &amp;nbsp;of reasonable
&lt;br&gt;quality (ie not too many severe internal errors) they get livetv with
&lt;br&gt;2 second channel ranges, comskip, navigation forwards and backward,
&lt;br&gt;controllable OSD over video, on all broadcast tv captures that I have
&lt;br&gt;found including HD-PVR format. &amp;nbsp;Music and video playback starts with
&lt;br&gt;MVP like speed and you can have simultaneous audio &amp;nbsp;playback with
&lt;br&gt;control of the UI.
&lt;br&gt;&lt;br&gt;The only real limitations now are &amp;nbsp;AC3 pass through is not working,
&lt;br&gt;the firmware lacks support for AAC HE-LATM used some countries, and
&lt;br&gt;there is no DVB teletext or graphic subtitles. &amp;nbsp; Also closed
&lt;br&gt;captioning from analog and digital sources in N.A. is only working on
&lt;br&gt;composite and svideo but the HD does play downconverted.
&lt;br&gt;&lt;br&gt;I don't think the Roku supports h264 so it is limited to North
&lt;br&gt;America. &amp;nbsp; &amp;nbsp;For non-mpeg files the PCH player does a reasonable job
&lt;br&gt;and it &amp;nbsp;is much better than the Roku.
&lt;br&gt;&lt;br&gt;Martin
&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Come build with us! The BlackBerry(R) Developer Conference in SF, CA
&lt;br&gt;is the only developer event you need to attend this year. Jumpstart your
&lt;br&gt;developing skills, take BlackBerry mobile applications to market and stay 
&lt;br&gt;ahead of the curve. Join us from November 9 - 12, 2009. Register now!
&lt;br&gt;&lt;a href=&quot;http://p.sf.net/sfu/devconference&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/devconference&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Mvpmc-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25911917&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Mvpmc-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/mvpmc-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/mvpmc-devel&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/libcmyth-and-XBMC-tp25900674s24862p25911917.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25910037</id>
	<title>Re: libcmyth and XBMC</title>
	<published>2009-10-15T07:34:33Z</published>
	<updated>2009-10-15T07:34:33Z</updated>
	<author>
		<name>Eric Lund</name>
	</author>
	<content type="html">Jon, James, Martin,
&lt;br&gt;&lt;br&gt;Splitting libcmyth out would be fine with me. &amp;nbsp;I think it is a great
&lt;br&gt;idea. &amp;nbsp;It is nice to know that that code lives on in other projects.
&lt;br&gt;&lt;br&gt;Speaking of the popcorn hour, I finally upgraded my A110 and it stopped
&lt;br&gt;talking to myth altogether. &amp;nbsp;I had it running as a UPNP client of Myth,
&lt;br&gt;but it malforms (or Myth misinterprets) URLs in the latest firmare. &amp;nbsp;I
&lt;br&gt;am not sure this is a bad thing, though. &amp;nbsp;I upgraded myth and swtiched
&lt;br&gt;over to using NFS and mythrename (the nifty little PERL script that
&lt;br&gt;makes sensible filenames out of Myth data) and I don't think I will go
&lt;br&gt;back.
&lt;br&gt;&lt;br&gt;That said, I would like another player, and I am not sure the PH is
&lt;br&gt;where I want to go at this point. &amp;nbsp;Is the Roku a good direction? &amp;nbsp;What
&lt;br&gt;Roku products are supported my MythRoku? My MediaMVPs are all out of
&lt;br&gt;commission at this point, since they can't handle the bandwidth.
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Eric
&lt;br&gt;&lt;br&gt;MVallevand wrote:
&lt;br&gt;&amp;nbsp;&amp;gt; On Thu, Oct 15, 2009 at 2:01 AM, Maclaren, James M &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25910037&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;maclaren@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&amp;nbsp;&amp;gt;&amp;gt; This would be great. &amp;nbsp;I use libcmyth, probably an old version too, on
&lt;br&gt;&amp;nbsp;&amp;gt;&amp;gt; the roku hd1000 in my mythroku application that is still used by a few
&lt;br&gt;&amp;nbsp;&amp;gt;&amp;gt; remaining luddites without one of the fancy new media streamers such as
&lt;br&gt;&amp;nbsp;&amp;gt;&amp;gt; the popcorn hour!
&lt;br&gt;&amp;nbsp;&amp;gt;&amp;gt; James
&lt;br&gt;&amp;nbsp;&amp;gt;
&lt;br&gt;&amp;nbsp;&amp;gt; James what you did on the roku hd1000 is excellent and far fancier
&lt;br&gt;&amp;nbsp;&amp;gt; than anything done for MythTV on the Popcorn Hour.
&lt;br&gt;&amp;nbsp;&amp;gt;
&lt;br&gt;&amp;nbsp;&amp;gt; Martin
&lt;br&gt;&amp;nbsp;&amp;gt;
&lt;br&gt;&amp;nbsp;&amp;gt; ------------------------------------------------------------------------------
&lt;br&gt;&amp;nbsp;&amp;gt; Come build with us! The BlackBerry(R) Developer Conference in SF, CA
&lt;br&gt;&amp;nbsp;&amp;gt; is the only developer event you need to attend this year. Jumpstart your
&lt;br&gt;&amp;nbsp;&amp;gt; developing skills, take BlackBerry mobile applications to market and stay
&lt;br&gt;&amp;nbsp;&amp;gt; ahead of the curve. Join us from November 9 - 12, 2009. Register now!
&lt;br&gt;&amp;nbsp;&amp;gt; &lt;a href=&quot;http://p.sf.net/sfu/devconference&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/devconference&lt;/a&gt;&lt;br&gt;&amp;nbsp;&amp;gt; _______________________________________________
&lt;br&gt;&amp;nbsp;&amp;gt; Mvpmc-devel mailing list
&lt;br&gt;&amp;nbsp;&amp;gt; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25910037&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Mvpmc-devel@...&lt;/a&gt;
&lt;br&gt;&amp;nbsp;&amp;gt; &lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/mvpmc-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/mvpmc-devel&lt;/a&gt;&lt;br&gt;&amp;nbsp;&amp;gt;
&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Come build with us! The BlackBerry(R) Developer Conference in SF, CA
&lt;br&gt;is the only developer event you need to attend this year. Jumpstart your
&lt;br&gt;developing skills, take BlackBerry mobile applications to market and stay 
&lt;br&gt;ahead of the curve. Join us from November 9 - 12, 2009. Register now!
&lt;br&gt;&lt;a href=&quot;http://p.sf.net/sfu/devconference&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/devconference&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Mvpmc-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25910037&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Mvpmc-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/mvpmc-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/mvpmc-devel&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/libcmyth-and-XBMC-tp25900674s24862p25910037.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25902148</id>
	<title>Re: libcmyth and XBMC</title>
	<published>2009-10-14T19:22:44Z</published>
	<updated>2009-10-14T19:22:44Z</updated>
	<author>
		<name>MVallevand</name>
	</author>
	<content type="html">On Thu, Oct 15, 2009 at 2:01 AM, Maclaren, James M &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25902148&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;maclaren@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt; This would be great. &amp;nbsp;I use libcmyth, probably an old version too, on
&lt;br&gt;&amp;gt; the roku hd1000 in my mythroku application that is still used by a few
&lt;br&gt;&amp;gt; remaining luddites without one of the fancy new media streamers such as
&lt;br&gt;&amp;gt; the popcorn hour!
&lt;br&gt;&amp;gt; James
&lt;br&gt;&lt;br&gt;James what you did on the roku hd1000 is excellent and far fancier
&lt;br&gt;than anything done for MythTV on the Popcorn Hour.
&lt;br&gt;&lt;br&gt;Martin
&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Come build with us! The BlackBerry(R) Developer Conference in SF, CA
&lt;br&gt;is the only developer event you need to attend this year. Jumpstart your
&lt;br&gt;developing skills, take BlackBerry mobile applications to market and stay 
&lt;br&gt;ahead of the curve. Join us from November 9 - 12, 2009. Register now!
&lt;br&gt;&lt;a href=&quot;http://p.sf.net/sfu/devconference&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/devconference&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Mvpmc-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25902148&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Mvpmc-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/mvpmc-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/mvpmc-devel&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/libcmyth-and-XBMC-tp25900674s24862p25902148.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25902007</id>
	<title>Re: libcmyth and XBMC</title>
	<published>2009-10-14T19:01:37Z</published>
	<updated>2009-10-14T19:01:37Z</updated>
	<author>
		<name>jm_maclaren</name>
	</author>
	<content type="html">From: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25902007&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;gettler@...&lt;/a&gt; [mailto:&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25902007&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;gettler@...&lt;/a&gt;] 
&lt;br&gt;Sent: Wednesday, October 14, 2009 6:35 PM
&lt;br&gt;To: Daniel Cleaver
&lt;br&gt;Cc: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25902007&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;mvpmc-devel@...&lt;/a&gt;
&lt;br&gt;Subject: Re: [Mvpmc-devel] libcmyth and XBMC
&lt;br&gt;&lt;br&gt;&lt;br&gt;On Wed, 14 Oct 2009 23:35:17 BST, Daniel Cleaver wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Hi all,
&lt;br&gt;&amp;gt; I'm not sure whether you guys are aware or not that XBMC
&lt;br&gt;&amp;gt; (&lt;a href=&quot;http://xbmc.org&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://xbmc.org&lt;/a&gt;) currently use the libcmyth library?
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; I'm looking at expanding on XBMC's use of MythTV (and therefore the
&lt;br&gt;&amp;gt; library) to provide full PVR functionality (currently only basic
&lt;br&gt;&amp;gt; watching of live and recorded shows is possible, but no EPG).
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; My question is -- what's the best way to go about adding functionality
&lt;br&gt;&amp;gt; to libcmyth for XBMC's needs? Branch at the current trunk revision?
&lt;br&gt;&amp;gt; Would you guys be willing to allow merges back? Or only if they suited
&lt;br&gt;&amp;gt; MediaMVP? In which case XBMC would have to maintain its own fork with
&lt;br&gt;&amp;gt; merges being fed into it from the original libcmyth?
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Excuse my ignorance on such matters -- I'm new to this open source
&lt;br&gt;&amp;gt; development lark. Figured I've used it for so long, might as well get
&lt;/div&gt;my
&lt;br&gt;&amp;gt; hands dirty :)
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Regards,
&lt;br&gt;&amp;gt; Daniel Cleaver
&lt;br&gt;&lt;br&gt;This has come up before.
&lt;br&gt;&lt;br&gt;The correct solution, really, is for us to create a standalone git repo
&lt;br&gt;that contains libcmyth only. &amp;nbsp;Then development could proceed there by
&lt;br&gt;everyone who is interested in maintaining it (from mvpmc, xbmc, ...).
&lt;br&gt;&lt;br&gt;I tried splitting the code apart into a seperate repository a while
&lt;br&gt;back,
&lt;br&gt;but never quite got git to retain the development history correctly.
&lt;br&gt;&lt;br&gt;Would this work for everyone? &amp;nbsp;I can make sure that those interested
&lt;br&gt;have
&lt;br&gt;write access to the repo.
&lt;br&gt;&lt;br&gt;Jon
&lt;br&gt;&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------
&lt;br&gt;------
&lt;br&gt;Come build with us! The BlackBerry(R) Developer Conference in SF, CA
&lt;br&gt;is the only developer event you need to attend this year. Jumpstart your
&lt;br&gt;developing skills, take BlackBerry mobile applications to market and
&lt;br&gt;stay 
&lt;br&gt;ahead of the curve. Join us from November 9 - 12, 2009. Register now!
&lt;br&gt;&lt;a href=&quot;http://p.sf.net/sfu/devconference&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/devconference&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Mvpmc-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25902007&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Mvpmc-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/mvpmc-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/mvpmc-devel&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;Jon
&lt;br&gt;This would be great. &amp;nbsp;I use libcmyth, probably an old version too, on
&lt;br&gt;the roku hd1000 in my mythroku application that is still used by a few
&lt;br&gt;remaining luddites without one of the fancy new media streamers such as
&lt;br&gt;the popcorn hour!
&lt;br&gt;James
&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Come build with us! The BlackBerry(R) Developer Conference in SF, CA
&lt;br&gt;is the only developer event you need to attend this year. Jumpstart your
&lt;br&gt;developing skills, take BlackBerry mobile applications to market and stay 
&lt;br&gt;ahead of the curve. Join us from November 9 - 12, 2009. Register now!
&lt;br&gt;&lt;a href=&quot;http://p.sf.net/sfu/devconference&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/devconference&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Mvpmc-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25902007&amp;i=4&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Mvpmc-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/mvpmc-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/mvpmc-devel&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/libcmyth-and-XBMC-tp25900674s24862p25902007.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25901347</id>
	<title>Re: libcmyth and XBMC</title>
	<published>2009-10-14T16:35:03Z</published>
	<updated>2009-10-14T16:35:03Z</updated>
	<author>
		<name>gettler</name>
	</author>
	<content type="html">&lt;br&gt;On Wed, 14 Oct 2009 23:35:17 BST, Daniel Cleaver wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Hi all,
&lt;br&gt;&amp;gt; I'm not sure whether you guys are aware or not that XBMC
&lt;br&gt;&amp;gt; (&lt;a href=&quot;http://xbmc.org&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://xbmc.org&lt;/a&gt;) currently use the libcmyth library?
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; I'm looking at expanding on XBMC's use of MythTV (and therefore the
&lt;br&gt;&amp;gt; library) to provide full PVR functionality (currently only basic
&lt;br&gt;&amp;gt; watching of live and recorded shows is possible, but no EPG).
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; My question is -- what's the best way to go about adding functionality
&lt;br&gt;&amp;gt; to libcmyth for XBMC's needs? Branch at the current trunk revision?
&lt;br&gt;&amp;gt; Would you guys be willing to allow merges back? Or only if they suited
&lt;br&gt;&amp;gt; MediaMVP? In which case XBMC would have to maintain its own fork with
&lt;br&gt;&amp;gt; merges being fed into it from the original libcmyth?
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Excuse my ignorance on such matters -- I'm new to this open source
&lt;br&gt;&amp;gt; development lark. Figured I've used it for so long, might as well get my
&lt;br&gt;&amp;gt; hands dirty :)
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Regards,
&lt;br&gt;&amp;gt; Daniel Cleaver
&lt;/div&gt;&lt;br&gt;This has come up before.
&lt;br&gt;&lt;br&gt;The correct solution, really, is for us to create a standalone git repo
&lt;br&gt;that contains libcmyth only. &amp;nbsp;Then development could proceed there by
&lt;br&gt;everyone who is interested in maintaining it (from mvpmc, xbmc, ...).
&lt;br&gt;&lt;br&gt;I tried splitting the code apart into a seperate repository a while back,
&lt;br&gt;but never quite got git to retain the development history correctly.
&lt;br&gt;&lt;br&gt;Would this work for everyone? &amp;nbsp;I can make sure that those interested have
&lt;br&gt;write access to the repo.
&lt;br&gt;&lt;br&gt;Jon
&lt;br&gt;&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Come build with us! The BlackBerry(R) Developer Conference in SF, CA
&lt;br&gt;is the only developer event you need to attend this year. Jumpstart your
&lt;br&gt;developing skills, take BlackBerry mobile applications to market and stay 
&lt;br&gt;ahead of the curve. Join us from November 9 - 12, 2009. Register now!
&lt;br&gt;&lt;a href=&quot;http://p.sf.net/sfu/devconference&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/devconference&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Mvpmc-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25901347&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Mvpmc-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/mvpmc-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/mvpmc-devel&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/libcmyth-and-XBMC-tp25900674s24862p25901347.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25900674</id>
	<title>libcmyth and XBMC</title>
	<published>2009-10-14T15:35:17Z</published>
	<updated>2009-10-14T15:35:17Z</updated>
	<author>
		<name>Daniel Cleaver</name>
	</author>
	<content type="html">Hi all,
&lt;br&gt;I'm not sure whether you guys are aware or not that XBMC
&lt;br&gt;(&lt;a href=&quot;http://xbmc.org&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://xbmc.org&lt;/a&gt;) currently use the libcmyth library?
&lt;br&gt;&lt;br&gt;I'm looking at expanding on XBMC's use of MythTV (and therefore the
&lt;br&gt;library) to provide full PVR functionality (currently only basic
&lt;br&gt;watching of live and recorded shows is possible, but no EPG).
&lt;br&gt;&lt;br&gt;My question is -- what's the best way to go about adding functionality
&lt;br&gt;to libcmyth for XBMC's needs? Branch at the current trunk revision?
&lt;br&gt;Would you guys be willing to allow merges back? Or only if they suited
&lt;br&gt;MediaMVP? In which case XBMC would have to maintain its own fork with
&lt;br&gt;merges being fed into it from the original libcmyth?
&lt;br&gt;&lt;br&gt;Excuse my ignorance on such matters -- I'm new to this open source
&lt;br&gt;development lark. Figured I've used it for so long, might as well get my
&lt;br&gt;hands dirty :)
&lt;br&gt;&lt;br&gt;Regards,
&lt;br&gt;Daniel Cleaver
&lt;br&gt;&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Come build with us! The BlackBerry(R) Developer Conference in SF, CA
&lt;br&gt;is the only developer event you need to attend this year. Jumpstart your
&lt;br&gt;developing skills, take BlackBerry mobile applications to market and stay 
&lt;br&gt;ahead of the curve. Join us from November 9 - 12, 2009. Register now!
&lt;br&gt;&lt;a href=&quot;http://p.sf.net/sfu/devconference&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/devconference&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Mvpmc-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25900674&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Mvpmc-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/mvpmc-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/mvpmc-devel&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/libcmyth-and-XBMC-tp25900674s24862p25900674.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25605922</id>
	<title>Re: Is the mvpmc weather app working for others ?</title>
	<published>2009-09-24T20:08:47Z</published>
	<updated>2009-09-24T20:08:47Z</updated>
	<author>
		<name>stuart-20</name>
	</author>
	<content type="html">&lt;br&gt;&lt;br&gt;Roger Heflin wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; stuart wrote:
&lt;br&gt;&amp;gt;&amp;gt; Humm... grumble grumble, wonder what's going on... &amp;nbsp;new router(s), nah - 
&lt;br&gt;&amp;gt;&amp;gt; all the other PCs can get out to the world... bad mvpmc command line?, 
&lt;br&gt;&amp;gt;&amp;gt; humm, maybe - but picking a preloaded town in the mvpmc's settings menu 
&lt;br&gt;&amp;gt;&amp;gt; didn't work either...
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Verify DNS, and verify that it has a default route, and can ping say 
&lt;br&gt;&amp;gt; www.google.com or something else.
&lt;/div&gt;&lt;br&gt;Well, it could not ... humm ...
&lt;br&gt;&lt;br&gt;So there were a number of things wrong.
&lt;br&gt;&lt;br&gt;I rearranged my network and tightened up my security. &amp;nbsp;So much that the 
&lt;br&gt;mvpmc's mac was not in the routers &amp;quot;ok list&amp;quot; and so, even though the 
&lt;br&gt;mvpmc could get a download from the server and it could mount NFS 
&lt;br&gt;shares, it couldn't ping the router or the outside world.
&lt;br&gt;&lt;br&gt;Also, the new dhcp server (moved it from a old fedora box to a new 
&lt;br&gt;debian box) was not configured correctly. &amp;nbsp;So the mvpmc /etc/resolv.conf 
&lt;br&gt;picked up &amp;quot;example&amp;quot; nameservers which meant nothing. &amp;nbsp;So fixed that as well.
&lt;br&gt;&lt;br&gt;Now, finally, weather works on the mvpmc for me ... yeah!
&lt;br&gt;&lt;br&gt;-thanks
&lt;br&gt;&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Come build with us! The BlackBerry&amp;reg; Developer Conference in SF, CA
&lt;br&gt;is the only developer event you need to attend this year. Jumpstart your
&lt;br&gt;developing skills, take BlackBerry mobile applications to market and stay 
&lt;br&gt;ahead of the curve. Join us from November 9&amp;#45;12, 2009. Register now&amp;#33;
&lt;br&gt;&lt;a href=&quot;http://p.sf.net/sfu/devconf&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/devconf&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Mvpmc-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25605922&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Mvpmc-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/mvpmc-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/mvpmc-devel&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Is-the-mvpmc-weather-app-working-for-others---tp25549151s24862p25605922.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25586937</id>
	<title>Re: Is the mvpmc weather app working for others ?</title>
	<published>2009-09-23T16:32:19Z</published>
	<updated>2009-09-23T16:32:19Z</updated>
	<author>
		<name>Roger Heflin-3</name>
	</author>
	<content type="html">stuart wrote:
&lt;br&gt;&amp;gt; Humm... grumble grumble, wonder what's going on... &amp;nbsp;new router(s), nah - 
&lt;br&gt;&amp;gt; all the other PCs can get out to the world... bad mvpmc command line?, 
&lt;br&gt;&amp;gt; humm, maybe - but picking a preloaded town in the mvpmc's settings menu 
&lt;br&gt;&amp;gt; didn't work either...
&lt;br&gt;&amp;gt; 
&lt;br&gt;&lt;br&gt;&lt;br&gt;Verify DNS, and verify that it has a default route, and can ping say 
&lt;br&gt;www.google.com or something else.
&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Come build with us! The BlackBerry&amp;reg; Developer Conference in SF, CA
&lt;br&gt;is the only developer event you need to attend this year. Jumpstart your
&lt;br&gt;developing skills, take BlackBerry mobile applications to market and stay 
&lt;br&gt;ahead of the curve. Join us from November 9&amp;#45;12, 2009. Register now&amp;#33;
&lt;br&gt;&lt;a href=&quot;http://p.sf.net/sfu/devconf&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/devconf&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Mvpmc-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25586937&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Mvpmc-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/mvpmc-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/mvpmc-devel&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Is-the-mvpmc-weather-app-working-for-others---tp25549151s24862p25586937.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25564109</id>
	<title>Re: Is the mvpmc weather app working for others ?</title>
	<published>2009-09-22T10:32:07Z</published>
	<updated>2009-09-22T10:32:07Z</updated>
	<author>
		<name>stuart-20</name>
	</author>
	<content type="html">&lt;br&gt;Humm... grumble grumble, wonder what's going on... &amp;nbsp;new router(s), nah - 
&lt;br&gt;all the other PCs can get out to the world... bad mvpmc command line?, 
&lt;br&gt;humm, maybe - but picking a preloaded town in the mvpmc's settings menu 
&lt;br&gt;didn't work either...
&lt;br&gt;&lt;br&gt;Roger Heflin wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; stuart wrote:
&lt;br&gt;&amp;gt;&amp;gt; Is the mvpmc weather app working for others ?
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; -thanks
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Yes.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; ------------------------------------------------------------------------------
&lt;br&gt;&amp;gt; Come build with us! The BlackBerry&amp;reg; Developer Conference in SF, CA
&lt;br&gt;&amp;gt; is the only developer event you need to attend this year. Jumpstart your
&lt;br&gt;&amp;gt; developing skills, take BlackBerry mobile applications to market and stay 
&lt;br&gt;&amp;gt; ahead of the curve. Join us from November 9&amp;#45;12, 2009. Register now&amp;#33;
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://p.sf.net/sfu/devconf&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/devconf&lt;/a&gt;&lt;/div&gt;^^^^^^
&lt;br&gt;||||||
&lt;br&gt;&amp;lt;SOAPBOX&amp;gt;What is this advert? &amp;nbsp;Sounds like Research In Motion (rim.com) 
&lt;br&gt;is trying to get a free helping hand from the open source world. &amp;nbsp;Bah, 
&lt;br&gt;they are a real company able to hire real developers. &amp;nbsp;At least when you 
&lt;br&gt;write an i P o d app there is a venue for either selling or giving it 
&lt;br&gt;away which directly tied to your self or your company.&amp;lt;/SOAPBOX&amp;gt;
&lt;br&gt;&lt;br&gt;&amp;gt; _______________________________________________
&lt;br&gt;&amp;gt; Mvpmc-devel mailing list
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25564109&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Mvpmc-devel@...&lt;/a&gt;
&lt;br&gt;&amp;gt; &lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/mvpmc-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/mvpmc-devel&lt;/a&gt;&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Come build with us! The BlackBerry&amp;reg; Developer Conference in SF, CA
&lt;br&gt;is the only developer event you need to attend this year. Jumpstart your
&lt;br&gt;developing skills, take BlackBerry mobile applications to market and stay 
&lt;br&gt;ahead of the curve. Join us from November 9&amp;#45;12, 2009. Register now&amp;#33;
&lt;br&gt;&lt;a href=&quot;http://p.sf.net/sfu/devconf&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/devconf&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Mvpmc-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25564109&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Mvpmc-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/mvpmc-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/mvpmc-devel&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Is-the-mvpmc-weather-app-working-for-others---tp25549151s24862p25564109.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25553733</id>
	<title>Re: MVPMC on Atom 330 Boards?</title>
	<published>2009-09-21T19:30:00Z</published>
	<updated>2009-09-21T19:30:00Z</updated>
	<author>
		<name>Tom Metro-9</name>
	</author>
	<content type="html">MVallevand wrote:
&lt;br&gt;&amp;gt; My Asrock ION 330 (now running XBMC) cost me...about $350 ($US
&lt;br&gt;&amp;gt; equivalent)...
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; With work, a flavour of mvpmc would work well too, &amp;nbsp;but based on what
&lt;br&gt;&amp;gt; I see with XBMC a client should be fine so the effort might be
&lt;br&gt;&amp;gt; unnecessary.
&lt;br&gt;&lt;br&gt;Not owning Xbox hardware, I had been ignoring XBMC, but I see they've 
&lt;br&gt;broadened the scope of that project to other x86 devices. That sounds 
&lt;br&gt;like an option worth checking out.
&lt;br&gt;&lt;br&gt;&lt;br&gt;&amp;gt; I'm sure with some community effort, the NMT would have been even
&lt;br&gt;&amp;gt; more popular than the MVP as a MythTV client and I would have liked
&lt;br&gt;&amp;gt; to have been part of it.
&lt;br&gt;&lt;br&gt;I know you put in the effort to make that happen, and I'm not sure why 
&lt;br&gt;it didn't take hold. I can only say that I didn't get involved because I 
&lt;br&gt;didn't own the hardware. When it first came onto the market, I wasn't 
&lt;br&gt;looking to replace the MVP, and then later the hardware seemed less 
&lt;br&gt;compelling compared to the alternatives.
&lt;br&gt;&lt;br&gt;&lt;br&gt;Mike Holden wrote:
&lt;br&gt;&amp;gt; If I went for this hardware, I would run native Myth on it, not mvpmc.
&lt;br&gt;&lt;br&gt;That's logical. As an mvpmc user you do tend to feel like a second class 
&lt;br&gt;citizen in the MythTV community, however, as I've noted on the list 
&lt;br&gt;several times, I still tend to think mvpmc has better designed usability 
&lt;br&gt;in its MythTV client compared to the official front-end.
&lt;br&gt;&lt;br&gt;I also think it is good for the MythTV project to have clients developed 
&lt;br&gt;by outside projects. In theory, it should encourage them to spiff up the 
&lt;br&gt;architecture and not embed so much functionality in the front-end that 
&lt;br&gt;really should be in the back-end.
&lt;br&gt;&lt;br&gt;So even if I move to more general purpose front-end hardware, I'll 
&lt;br&gt;probably still lean towards using third party MythTV clients, like XBMC.
&lt;br&gt;&lt;br&gt;&lt;br&gt;stuart wrote:
&lt;br&gt;&amp;gt; ...what happened to the iPhone/iTouch mythtv development effort?
&lt;br&gt;&lt;br&gt;The author posted a few months back saying that he was likely going to 
&lt;br&gt;drop the transcoding proxy project, and instead use a native stream 
&lt;br&gt;playback feature added to the iPhone.
&lt;br&gt;&lt;br&gt;&lt;br&gt;&amp;gt; ...I am thinking most mythtv developers actually have 2 systems. One
&lt;br&gt;&amp;gt; for development and one for using.
&lt;br&gt;&lt;br&gt;I asked a local MythTV developer who periodically gives talks for a 
&lt;br&gt;local user group about this. He said he doesn't bother with two systems. 
&lt;br&gt;Instead he just runs the trunk version of MythTV as his &amp;quot;production&amp;quot; 
&lt;br&gt;installation. (Most of his development work is on peripheral aspects of 
&lt;br&gt;MythTV, like the firewire drivers, so his work probably has minimal 
&lt;br&gt;impact on playback.) He also noted that a colleague was successfully 
&lt;br&gt;running a back-end in a VM using an Ethernet (HDHR) connected tuner, so 
&lt;br&gt;that's another option.
&lt;br&gt;&lt;br&gt;A good discussion for the MythTV developer's list is what would you 
&lt;br&gt;change in the architecture to facilitate easier development? (Though I 
&lt;br&gt;think the MythTV project impeds developers in several ways, and the 
&lt;br&gt;architecture is only one of them.)
&lt;br&gt;&lt;br&gt;&amp;nbsp; -Tom
&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Come build with us! The BlackBerry&amp;reg; Developer Conference in SF, CA
&lt;br&gt;is the only developer event you need to attend this year. Jumpstart your
&lt;br&gt;developing skills, take BlackBerry mobile applications to market and stay 
&lt;br&gt;ahead of the curve. Join us from November 9&amp;#45;12, 2009. Register now&amp;#33;
&lt;br&gt;&lt;a href=&quot;http://p.sf.net/sfu/devconf&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/devconf&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Mvpmc-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25553733&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Mvpmc-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/mvpmc-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/mvpmc-devel&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Everyone-happy-with-mclient-and-squeezcenter-7.3.3--tp25479211s24862p25553733.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25552702</id>
	<title>Re: Is the mvpmc weather app working for others ?</title>
	<published>2009-09-21T16:52:12Z</published>
	<updated>2009-09-21T16:52:12Z</updated>
	<author>
		<name>Roger Heflin-3</name>
	</author>
	<content type="html">stuart wrote:
&lt;br&gt;&amp;gt; Is the mvpmc weather app working for others ?
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; -thanks
&lt;br&gt;&lt;br&gt;Yes.
&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Come build with us! The BlackBerry&amp;reg; Developer Conference in SF, CA
&lt;br&gt;is the only developer event you need to attend this year. Jumpstart your
&lt;br&gt;developing skills, take BlackBerry mobile applications to market and stay 
&lt;br&gt;ahead of the curve. Join us from November 9&amp;#45;12, 2009. Register now&amp;#33;
&lt;br&gt;&lt;a href=&quot;http://p.sf.net/sfu/devconf&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/devconf&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Mvpmc-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25552702&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Mvpmc-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/mvpmc-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/mvpmc-devel&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Is-the-mvpmc-weather-app-working-for-others---tp25549151s24862p25552702.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25549161</id>
	<title>Re: MVPMC on Atom 330 Boards?</title>
	<published>2009-09-21T12:05:19Z</published>
	<updated>2009-09-21T12:05:19Z</updated>
	<author>
		<name>stuart-20</name>
	</author>
	<content type="html">&lt;br&gt;Well, I think, for 2 reasons, most people think this way - unfortunately.
&lt;br&gt;&lt;br&gt;1) As we head off to HD, we leave many platforms behind. &amp;nbsp;They just can 
&lt;br&gt;not handle the BW.
&lt;br&gt;&lt;br&gt;2) There is, AFAIK, no way for the mythtv's MBE to transcode video on 
&lt;br&gt;the fly &amp;quot;natively&amp;quot;. &amp;nbsp;That is, make it transparent to the client.
&lt;br&gt;&lt;br&gt;As for solutions to the 2nd reason, I am thinking most mythtv developers 
&lt;br&gt;&amp;nbsp; actually have 2 systems. &amp;nbsp;One for development and one for using. &amp;nbsp;That 
&lt;br&gt;right there will put most people off of mythtv developing and adding 
&lt;br&gt;code to the MBE to transcode on the fly. &amp;nbsp;Maybe I'm wrong, but if I 
&lt;br&gt;moved my mythtv network into the realm of development, the rest of the 
&lt;br&gt;people in my house would riot!
&lt;br&gt;&lt;br&gt;Speaking of the 2nd reason - what happened to the iPhone/iTouch mythtv 
&lt;br&gt;development effort? &amp;nbsp;The current solution is to transcode all your 
&lt;br&gt;recordings - yeah, not for me.
&lt;br&gt;&lt;br&gt;BTW - the iPhone/iTouch mythtv remote control is a free app and works 
&lt;br&gt;great for a single MBE. &amp;nbsp;I recommend it. &amp;nbsp;And, I suspect some fixes for 
&lt;br&gt;multiple BEs w/FEs running will be here soon. &amp;nbsp;(FYI, multiple FEs work, 
&lt;br&gt;you just have to manually enter the IP of the front ends not running on 
&lt;br&gt;the MBE machine.)
&lt;br&gt;&lt;br&gt;...
&lt;br&gt;&lt;br&gt;&lt;br&gt;Thomas Pontoppidan wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Like Mike, I prefer a full MythTV client when the hardware is capable. I 
&lt;br&gt;&amp;gt; don't know if Minimyth runs on the board mentioned, but it is 
&lt;br&gt;&amp;gt; definetely possible to run a full MythTV client on a very modest, 
&lt;br&gt;&amp;gt; diskless system.
&lt;br&gt;&amp;gt; &amp;nbsp;
&lt;br&gt;&amp;gt; Thomas
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 2009/9/17 Mike Holden &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25549161&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;mvpmc@...&lt;/a&gt; &amp;lt;mailto:&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25549161&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;mvpmc@...&lt;/a&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; People are already running genuine MythTV frontends on these boxes,
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; and even
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; backends. If I went for this hardware, I would run native Myth on
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; it, not mvpmc.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; They run a decent nvidia graphics chip that permits VDPAU, so good
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; quality full HD,
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; with little CPU use.
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; --
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; Mike Holden
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; ------------------------------------------------------------------------------
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; Come build with us! The BlackBerry&amp;reg; Developer Conference in SF, CA
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; is the only developer event you need to attend this year. Jumpstart your
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; developing skills, take BlackBerry mobile applications to market and
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; stay
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; ahead of the curve. Join us from November 9&amp;#45;12, 2009. Register
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; now&amp;#33;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &lt;a href=&quot;http://p.sf.net/sfu/devconf&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/devconf&lt;/a&gt;&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; _______________________________________________
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; Mvpmc-devel mailing list
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25549161&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Mvpmc-devel@...&lt;/a&gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;lt;mailto:&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25549161&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Mvpmc-devel@...&lt;/a&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/mvpmc-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/mvpmc-devel&lt;/a&gt;&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; ------------------------------------------------------------------------
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; ------------------------------------------------------------------------------
&lt;br&gt;&amp;gt; Come build with us! The BlackBerry&amp;reg; Developer Conference in SF, CA
&lt;br&gt;&amp;gt; is the only developer event you need to attend this year. Jumpstart your
&lt;br&gt;&amp;gt; developing skills, take BlackBerry mobile applications to market and stay 
&lt;br&gt;&amp;gt; ahead of the curve. Join us from November 9&amp;#45;12, 2009. Register now&amp;#33;
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://p.sf.net/sfu/devconf&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/devconf&lt;/a&gt;&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; ------------------------------------------------------------------------
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; _______________________________________________
&lt;br&gt;&amp;gt; Mvpmc-devel mailing list
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25549161&amp;i=4&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Mvpmc-devel@...&lt;/a&gt;
&lt;br&gt;&amp;gt; &lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/mvpmc-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/mvpmc-devel&lt;/a&gt;&lt;/div&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Come build with us! The BlackBerry&amp;reg; Developer Conference in SF, CA
&lt;br&gt;is the only developer event you need to attend this year. Jumpstart your
&lt;br&gt;developing skills, take BlackBerry mobile applications to market and stay 
&lt;br&gt;ahead of the curve. Join us from November 9&amp;#45;12, 2009. Register now&amp;#33;
&lt;br&gt;&lt;a href=&quot;http://p.sf.net/sfu/devconf&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/devconf&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Mvpmc-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25549161&amp;i=5&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Mvpmc-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/mvpmc-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/mvpmc-devel&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Everyone-happy-with-mclient-and-squeezcenter-7.3.3--tp25479211s24862p25549161.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25549151</id>
	<title>Is the mvpmc weather app working for others ?</title>
	<published>2009-09-21T12:03:31Z</published>
	<updated>2009-09-21T12:03:31Z</updated>
	<author>
		<name>stuart-20</name>
	</author>
	<content type="html">Is the mvpmc weather app working for others ?
&lt;br&gt;&lt;br&gt;-thanks
&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Come build with us! The BlackBerry&amp;reg; Developer Conference in SF, CA
&lt;br&gt;is the only developer event you need to attend this year. Jumpstart your
&lt;br&gt;developing skills, take BlackBerry mobile applications to market and stay 
&lt;br&gt;ahead of the curve. Join us from November 9&amp;#45;12, 2009. Register now&amp;#33;
&lt;br&gt;&lt;a href=&quot;http://p.sf.net/sfu/devconf&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/devconf&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Mvpmc-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25549151&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Mvpmc-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/mvpmc-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/mvpmc-devel&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Is-the-mvpmc-weather-app-working-for-others---tp25549151s24862p25549151.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25540604</id>
	<title>Re: MVPMC on Atom 330 Boards?</title>
	<published>2009-09-21T01:47:56Z</published>
	<updated>2009-09-21T01:47:56Z</updated>
	<author>
		<name>Thomas Pontoppidan</name>
	</author>
	<content type="html">&lt;div&gt;Like Mike, I prefer a full MythTV client when the hardware is capable. I don&amp;#39;t know if Minimyth runs on the board mentioned, but it is definetely possible to run a full MythTV client on a very modest, diskless system.&lt;/div&gt;

&lt;div&gt; &lt;/div&gt;
&lt;div&gt;Thomas&lt;br&gt;&lt;br&gt;&lt;/div&gt;
&lt;div class=&quot;gmail_quote&quot;&gt;2009/9/17 Mike Holden &lt;span dir=&quot;ltr&quot;&gt;&amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25540604&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;mvpmc@...&lt;/a&gt;&amp;gt;&lt;/span&gt;&lt;br&gt;
&lt;blockquote class=&quot;gmail_quote&quot; style=&quot;PADDING-LEFT: 1ex; MARGIN: 0px 0px 0px 0.8ex; BORDER-LEFT: #ccc 1px solid&quot;&gt;People are already running genuine MythTV frontends on these boxes, and even&lt;br&gt;backends. If I went for this hardware, I would run native Myth on it, not mvpmc.&lt;br&gt;
&lt;br&gt;They run a decent nvidia graphics chip that permits VDPAU, so good quality full HD,&lt;br&gt;with little CPU use.&lt;br&gt;--&lt;br&gt;&lt;font color=&quot;#888888&quot;&gt;Mike Holden&lt;br&gt;&lt;/font&gt;
&lt;div&gt;
&lt;div&gt;&lt;/div&gt;
&lt;div class=&quot;h5&quot;&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------&lt;br&gt;Come build with us! The BlackBerry&amp;amp;reg; Developer Conference in SF, CA&lt;br&gt;is the only developer event you need to attend this year. Jumpstart your&lt;br&gt;
developing skills, take BlackBerry mobile applications to market and stay&lt;br&gt;ahead of the curve. Join us from November 9&amp;amp;#45;12, 2009. Register now&amp;amp;#33;&lt;br&gt;&lt;a href=&quot;http://p.sf.net/sfu/devconf&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/devconf&lt;/a&gt;&lt;br&gt;
_______________________________________________&lt;br&gt;Mvpmc-devel mailing list&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25540604&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Mvpmc-devel@...&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/mvpmc-devel&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/mvpmc-devel&lt;/a&gt;&lt;br&gt;
&lt;br&gt;&lt;/div&gt;&lt;/div&gt;&lt;/blockquote&gt;&lt;/div&gt;&lt;br&gt;
&lt;br /&gt;------------------------------------------------------------------------------
&lt;br&gt;Come build with us! The BlackBerry&amp;reg; Developer Conference in SF, CA
&lt;br&gt;is the only developer event you need to attend this year. Jumpstart your
&lt;br&gt;developing skills, take BlackBerry mobile applications to market and stay 
&lt;br&gt;ahead of the curve. Join us from November 9&amp;#45;12, 2009. Register now&amp;#33;
&lt;br&gt;&lt;a href=&quot;http://p.sf.net/sfu/devconf&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/devconf&lt;/a&gt;&lt;br /&gt;_______________________________________________
&lt;br&gt;Mvpmc-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25540604&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Mvpmc-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/mvpmc-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/mvpmc-devel&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Everyone-happy-with-mclient-and-squeezcenter-7.3.3--tp25479211s24862p25540604.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25488665</id>
	<title>Re: MVPMC on Atom 330 Boards?</title>
	<published>2009-09-17T03:22:14Z</published>
	<updated>2009-09-17T03:22:14Z</updated>
	<author>
		<name>Mike Holden-3</name>
	</author>
	<content type="html">People are already running genuine MythTV frontends on these boxes, and even
&lt;br&gt;backends. If I went for this hardware, I would run native Myth on it, not mvpmc.
&lt;br&gt;&lt;br&gt;They run a decent nvidia graphics chip that permits VDPAU, so good quality full HD,
&lt;br&gt;with little CPU use.
&lt;br&gt;-- 
&lt;br&gt;Mike Holden
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Come build with us! The BlackBerry&amp;reg; Developer Conference in SF, CA
&lt;br&gt;is the only developer event you need to attend this year. Jumpstart your
&lt;br&gt;developing skills, take BlackBerry mobile applications to market and stay 
&lt;br&gt;ahead of the curve. Join us from November 9&amp;#45;12, 2009. Register now&amp;#33;
&lt;br&gt;&lt;a href=&quot;http://p.sf.net/sfu/devconf&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/devconf&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Mvpmc-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25488665&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Mvpmc-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/mvpmc-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/mvpmc-devel&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Everyone-happy-with-mclient-and-squeezcenter-7.3.3--tp25479211s24862p25488665.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25484661</id>
	<title>Re: MVPMC on Atom 330 Boards?</title>
	<published>2009-09-16T20:37:08Z</published>
	<updated>2009-09-16T20:37:08Z</updated>
	<author>
		<name>Eric Lund</name>
	</author>
	<content type="html">It's nice to hear that the group still seems to be alive.
&lt;br&gt;&lt;br&gt;I don't know a whole lot about the atom boord except that the price is
&lt;br&gt;right and it seems to have decent compute power. &amp;nbsp;I am working on a
&lt;br&gt;separate project (a software defined Ham Radio transceiver) which some
&lt;br&gt;people are using Atom 330 boards for, and in looking over the HW it
&lt;br&gt;seemed likely that it could probably handle the media that I am
&lt;br&gt;recording right now and forced to watch on the Popcorn Hour UPnP client
&lt;br&gt;(which can only fast forward not rewind and has no skip capability) or
&lt;br&gt;my son's XBox. &amp;nbsp;I have been looking for something in the price range of
&lt;br&gt;the MVP that would run MVPMC because it is much more capable.
&lt;br&gt;&lt;br&gt;It might need video acceleration, not sure, but I am willing to
&lt;br&gt;experiment with it because I am eventually going to buy the card for
&lt;br&gt;my radio project anyway, so the card isn't wasted.
&lt;br&gt;&lt;br&gt;As to cases, if this works I would love a low profile case with a power
&lt;br&gt;supply and a place for an IR receiver. &amp;nbsp;Something big enough to hold
&lt;br&gt;a mini-ITX board and power supply, but only about 2 inches high would
&lt;br&gt;be great.
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Eric
&lt;br&gt;&lt;br&gt;On 09/16/2009 08:53 PM, Jamin W. Collins wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Tom Metro wrote:
&lt;br&gt;&amp;gt;&amp;gt; Eric Lund wrote:
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; Would anyone out there be interested in MVPMC running on Atom 330 boards?
&lt;br&gt;&amp;gt;&amp;gt; Yes, or nVidia ION hardware:
&lt;br&gt;&amp;gt;&amp;gt; &lt;a href=&quot;http://www.nabble.com/nVidia-ion-platform-tc22632126s24861.html#a22632126&quot; target=&quot;_top&quot;&gt;http://www.nabble.com/nVidia-ion-platform-tc22632126s24861.html#a22632126&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; I'd prefer to see support for the ION platform. &amp;nbsp;If anyone knows of some
&lt;br&gt;&amp;gt; good (small and stylish) cases for the mini-itx boards, I'd be love to
&lt;br&gt;&amp;gt; know. &amp;nbsp;I'm thinking something along the line of the Acer AspireRevo's
&lt;br&gt;&amp;gt; case[1].
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; [1] -
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://www.engadget.com/2009/04/07/acer-launches-first-nvidia-ion-based-nettop-aspirerevo/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.engadget.com/2009/04/07/acer-launches-first-nvidia-ion-based-nettop-aspirerevo/&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; ------------------------------------------------------------------------------
&lt;br&gt;&amp;gt; Come build with us! The BlackBerry&amp;reg; Developer Conference in SF, CA
&lt;br&gt;&amp;gt; is the only developer event you need to attend this year. Jumpstart your
&lt;br&gt;&amp;gt; developing skills, take BlackBerry mobile applications to market and stay
&lt;br&gt;&amp;gt; ahead of the curve. Join us from November 9&amp;#45;12, 2009. Register now&amp;#33;
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://p.sf.net/sfu/devconf&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/devconf&lt;/a&gt;&lt;br&gt;&amp;gt; _______________________________________________
&lt;br&gt;&amp;gt; Mvpmc-devel mailing list
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25484661&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Mvpmc-devel@...&lt;/a&gt;
&lt;br&gt;&amp;gt; &lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/mvpmc-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/mvpmc-devel&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;/div&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Come build with us! The BlackBerry&amp;reg; Developer Conference in SF, CA
&lt;br&gt;is the only developer event you need to attend this year. Jumpstart your
&lt;br&gt;developing skills, take BlackBerry mobile applications to market and stay 
&lt;br&gt;ahead of the curve. Join us from November 9&amp;#45;12, 2009. Register now&amp;#33;
&lt;br&gt;&lt;a href=&quot;http://p.sf.net/sfu/devconf&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/devconf&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Mvpmc-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25484661&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Mvpmc-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/mvpmc-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/mvpmc-devel&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Everyone-happy-with-mclient-and-squeezcenter-7.3.3--tp25479211s24862p25484661.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25484223</id>
	<title>Re: MVPMC on Atom 330 Boards?</title>
	<published>2009-09-16T18:53:18Z</published>
	<updated>2009-09-16T18:53:18Z</updated>
	<author>
		<name>Jamin W. Collins</name>
	</author>
	<content type="html">Tom Metro wrote:
&lt;br&gt;&amp;gt; Eric Lund wrote:
&lt;br&gt;&amp;gt;&amp;gt; Would anyone out there be interested in MVPMC running on Atom 330 boards?
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Yes, or nVidia ION hardware:
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://www.nabble.com/nVidia-ion-platform-tc22632126s24861.html#a22632126&quot; target=&quot;_top&quot;&gt;http://www.nabble.com/nVidia-ion-platform-tc22632126s24861.html#a22632126&lt;/a&gt;&lt;br&gt;&lt;br&gt;I'd prefer to see support for the ION platform. &amp;nbsp;If anyone knows of some 
&lt;br&gt;good (small and stylish) cases for the mini-itx boards, I'd be love to 
&lt;br&gt;know. &amp;nbsp;I'm thinking something along the line of the Acer AspireRevo's 
&lt;br&gt;case[1].
&lt;br&gt;&lt;br&gt;[1] - 
&lt;br&gt;&lt;a href=&quot;http://www.engadget.com/2009/04/07/acer-launches-first-nvidia-ion-based-nettop-aspirerevo/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.engadget.com/2009/04/07/acer-launches-first-nvidia-ion-based-nettop-aspirerevo/&lt;/a&gt;&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Come build with us! The BlackBerry&amp;reg; Developer Conference in SF, CA
&lt;br&gt;is the only developer event you need to attend this year. Jumpstart your
&lt;br&gt;developing skills, take BlackBerry mobile applications to market and stay 
&lt;br&gt;ahead of the curve. Join us from November 9&amp;#45;12, 2009. Register now&amp;#33;
&lt;br&gt;&lt;a href=&quot;http://p.sf.net/sfu/devconf&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/devconf&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Mvpmc-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25484223&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Mvpmc-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/mvpmc-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/mvpmc-devel&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Everyone-happy-with-mclient-and-squeezcenter-7.3.3--tp25479211s24862p25484223.html" />
</entry>

</feed>
