Saturday, March 2nd, 2013, 13:25 UTC | ||
[13:25:08] | peper03: | Regarding the next steps I'd like to take: I need some way of passing the NAV packets through to AvFormatDecoderDVD. I've submitted a patch to ffmpeg, which would allow those packets through. I have no idea though at the moment whether it will be accepted. After several responses and a tweaked patch, I've had no response for several days. so I don't know whether it's still even under consideration. |
[13:26:38] | peper03: | For the case that they reject the patch (I think if there's a sticking point, it's that they can't see why it's necessary), what is the feeling here of applying it to Myth's copy? |
[13:27:16] | ElmerFudd (ElmerFudd!~le@87-55-166-130-static.dk.customer.tdc.net) has joined #mythtv | |
[13:28:05] | peper03: | I'd rather have it upstream but I've been asked whether there is code that already uses it. There isn't yet, since I don't want to spend a lot of time and effort implementing something that relies on that patch, only for it to be rejected anyway. |
[13:28:30] | peper03: | The patch for ffmpeg is here: http://pastebin.com/iMST8gce |
[13:29:15] | peper03: | A couple of tweaks are necessary for Myth, but nothing major. |
[13:32:39] | IReboot (IReboot!~doug@CPE10bf48e67915-CM78cd8e7e342d.cpe.net.cable.rogers.com) has quit (Remote host closed the connection) | |
[13:38:21] | Tobbe5178 (Tobbe5178!~asdf@h186n5-sv-a13.ias.bredband.telia.com) has quit (Read error: Connection reset by peer) | |
[13:53:21] | Steve-Goodey (Steve-Goodey!~steve@host86-147-183-135.range86-147.btcentralplus.com) has joined #mythtv | |
[13:54:01] | amessina (amessina!~amessina@2001:470:c1dc:7779:d6be:d9ff:fe8d:7c1e) has joined #mythtv | |
[14:32:33] | SteveGoodey (SteveGoodey!~steve@host86-147-183-135.range86-147.btcentralplus.com) has joined #mythtv | |
[14:42:18] | Wolfgang2 (Wolfgang2!~Thunderbi@178-27-144-160-dynip.superkabel.de) has quit (Quit: Wolfgang2) | |
[14:52:06] | Sharky-Sleep is now known as Sharky112065 | |
[14:53:15] | stichnot: | Seeker`: yes I saw the ticket. To get the seektable for a given recording, find the chanid and starttime and run the mysql query "select * from recordedseek where chanid=... and starttime=... order by mark, type;" |
[14:59:02] | stichnot: | Seeker`: for seektable entries where type=33, the offset column should be the timestamp in milliseconds for the frame number in the mark column. |
[14:59:58] | stichnot: | Seeker`: frame rate is calculated as frames per second, whereas frame duration is seconds per frame, hence the inverse calculcation. |
[15:13:53] | Seeker`: | stichnot: don't dur and den still mean the same thing though? |
[15:13:55] | IReboot (IReboot!~doug@CPE10bf48e67915-CM78cd8e7e342d.cpe.net.cable.rogers.com) has joined #mythtv | |
[15:15:22] | Seeker`: | sorry, num and den |
[15:27:43] | Seeker`: | ah, nevermind |
[15:29:51] | stichnot: | Seeker`: the code is separated into the player side, which directly accumulates the duration using AVRational, and the recorder size, which tracks "ticks" and when needed uses FrameRate to convert to duration. I would have liked to use AVRational similarly in the recorder, but we have a policy of not using ffmpeg libraries in the backend to avoid ffmpeg-related crashes. |
[15:32:13] | Seeker`: | I'll try to get that seektable stuff if about 20 mins |
[15:33:10] | stichnot: | Thanks. |
[15:35:55] | petefunk (petefunk!pfunk@unaffiliated/petefunk) has quit (Ping timeout: 252 seconds) | |
[15:36:19] | petefunk (petefunk!pfunk@unaffiliated/petefunk) has joined #mythtv | |
[15:44:56] | Seeker`: | stichnot: pre-rebuild is http://paste.ubuntu.com/5579512/ |
[15:49:19] | Seeker`: | after http://paste.ubuntu.com/5579528/ |
[15:53:09] | tonsofpcs: | wagnerrp: where is this data center? |
[16:12:56] | neufeld (neufeld!~user@69-165-173-139.dsl.teksavvy.com) has quit (Remote host closed the connection) | |
[16:12:58] | stichnot: | Seeker`: my guess is that the first 25 frames of the recording are somehow corrupted, as the mythcommflag player seems to be ignoring them. The type=9 file offsets seem to match up if you subtract 25 from recorder's mark values. |
[16:13:46] | Seeker`: | why does it work ok without your patch then? |
[16:14:00] | Seeker`: | its like that for 90% of my channel 4 HD recordings |
[16:14:20] | stichnot: | Seeker`: what happens if you set a bookmark somewhere past the 1 second mark, exit playback, and restart playback at the bookmark? |
[16:15:50] | stichnot: | I have no idea why normal playback without seeking would depend in any way on the duration values in the seektable, which is the only thing that commit should be affecting |
[16:16:42] | stichnot: | Two other things worth trying: |
[16:17:09] | neufeld (neufeld!~user@69-165-173-139.dsl.teksavvy.com) has joined #mythtv | |
[16:17:53] | stichnot: | 1. Remove the duration seektable entries for that recording – "delete from recordedseek where chanid=... and starttime=... and type=33;" |
[16:18:28] | stichnot: | 2. Show me the seektable after reverting the commit and re-running mythcommflag --rebuild |
[16:18:34] | neufeld (neufeld!~user@69-165-173-139.dsl.teksavvy.com) has quit (Remote host closed the connection) | |
[16:19:37] | stichnot: | Seeker`: your observation about video frame buffering seems consistent with corruption, though again I don't know how that commit would have affected things |
[16:24:40] | stichnot: | Seeker`: the thing that would probably help most is if you could provide the first ~50MB of that recording for me to look at |
[16:28:20] | Seeker`: | stichnot: tried 1 min in to the recording, still stutters |
[16:28:28] | Seeker`: | tried skipping 10 mins and it plays normally |
[16:29:38] | Seeker`: | hmm, I should probably point out it is only the frontend which I am adding / removing your patch. The backend is past that already. I'm not sure how rebuilding the seek table on the back end changes things based on whether the frontend has the patch or not |
[16:30:10] | Seeker`: | and how would you suggest I get the first 50MB? |
[16:32:33] | tonsofpcs: | are I-frames roughly 25 frames apart? |
[16:38:43] | stichnot: | Seeker`: the patch affects mythbackend only in the seektable creation during recording. It affects mythcommflag --rebuild. It is really not supposed to affect mythfrontend except with respect to the slightly different values that might be put into the seektable. |
[16:40:05] | stichnot: | Seeker`: dd if=/path/to/recording.mpg of=/tmp/test.mpg bs=1024k count=50 |
[16:43:39] | Seeker`: | stichnot: http://cjo20.net/test.mpg |
[16:44:20] | Seeker`: | it does look like there is something odd at the beginning / halfway through |
[16:45:45] | Seeker`: | ah, ingnore the 'halfway through' comment |
[16:45:51] | Seeker`: | but the start does look a bit weird |
[16:46:31] | Seeker`: | the patch must be doing something with the frontend, as removing it wouldn't make the recordings work again if it didn't |
[16:47:59] | stichnot: | yeah, I would assume that too, but I just can't imagine why. Hopefully the sample will sort things out |
[17:11:52] | stichnot: | Seeker`: I just noticed that my own HD-PVR recordings are having playback problems like this, and reverting that commit seems to fix it :( |
[17:12:11] | Seeker`: | good to know it isn't just me being crazy :P |
[17:13:18] | Seeker`: | I would guess it is one of the * 1000 or /1000 in avformatdecoder.cpp or decoderbase.*, or H264Parser |
[17:13:32] | Seeker`: | but I can't be sure because I don't understand how the code works |
[17:42:47] | Seeker`: | stichnot: is the first change in avformatdecoder.cpp correct? Everywhere else there seems to have been a change by a factor of 1000 (i.e. added or removed either a * or / by 1000) but for that first change you've got it altered by a factor of 1,000,000 (removed a / 1000 and added a * 1000) |
[17:48:02] | wagnerrp: | tonsofpcs: it's OSUOSL |
[18:37:23] | tonsofpcs: | wagnerrp: right, where is it? Portland? |
[18:43:15] | stichnot (stichnot!~stichnot@mythtv/developer/stichnot) has quit (Ping timeout: 248 seconds) | |
[19:07:56] | stichnot (stichnot!~stichnot@mythtv/developer/stichnot) has joined #mythtv | |
[19:12:20] | stichnot: | Seeker`: originally the code had a mishmash of units – seconds, milliseconds, microseconds. I changed it to track seconds internally, and write milliseconds to the DB as before. |
[19:12:53] | stichnot: | anyway, it's going to be a few hours until I can look into it, but at least I can reproduce some sort of problem. |
[19:16:06] | jhall_ (jhall_!~jhall@2001:468:d01:9c:226:b9ff:fe2d:482e) has quit (Remote host closed the connection) | |
[19:19:15] | Seeker`: | stichnot: not particularly desperate for a fix right now as I can get on fine just cutting out that patch. Let me know if you need anything tested. |
[19:23:32] | wagnerrp: | specifically? i'm not sure, oregon state university (OSU) runs it |
[19:30:27] | jhall_ (jhall_!~jhall@2001:468:d01:9c:226:b9ff:fe2d:482e) has joined #mythtv | |
[19:32:35] | neufeld (neufeld!~user@69-165-173-139.dsl.teksavvy.com) has joined #mythtv | |
[19:56:00] | SteveGoodey (SteveGoodey!~steve@host86-147-183-135.range86-147.btcentralplus.com) has quit (Quit: Konversation terminated!) | |
[20:59:06] | ElmerFudd (ElmerFudd!~le@87-55-166-130-static.dk.customer.tdc.net) has quit (Remote host closed the connection) | |
[21:01:11] | rsiebert_ (rsiebert_!~quassel@g229055028.adsl.alicedsl.de) has joined #mythtv | |
[21:01:11] | rsiebert (rsiebert!~quassel@g225049005.adsl.alicedsl.de) has quit (Read error: Connection reset by peer) | |
[21:03:01] | stichnot: | Seeker`: you can try this: http://pastebin.com/8c0vaUVw |
[21:05:43] | stichnot: | looks like I changed the meaning of H264Parser::frameRate() to be seconds instead of milliseconds, but left in the scaling factor |
[21:07:44] | stichnot: | for some reason I thought that function wasn't being called any more after I added getFrameRate() |
[21:10:17] | Seeker`: | stichnot: yup, seems to fix it here |
[21:11:26] | stichnot: | great, thanks for testing. |
[21:11:49] | stichnot: | I'm pulling in the Qt changes and building so that I can commit this |
[21:17:50] | stichnot: | Seeker`: thanks for your help on this. |
[21:18:03] | Seeker`: | stichnot: no problem, thanks for fixing it :) |
[21:29:43] | ElmerFudd (ElmerFudd!~le@87-55-166-130-static.dk.customer.tdc.net) has joined #mythtv | |
[22:08:36] | bergqvistjl (bergqvistjl!~bergqvist@79-70-226-106.dynamic.dsl.as9105.com) has joined #mythtv | |
[22:10:24] | bergqvistjl: | This may be more appropriate to the devs. Can the frontend player detect and respond appropriately to changes in the video scan (from Progressive to Interlaced and vice-versa in UK Freeview HD video) mid-playback? Because a lot of the time when i watch a program that's interlaced, which then finishes and moves onto another program that's progressive, the player is de-interlacing the progressive video, and slow the quality is sli |
[22:11:31] | bergqvistjl: | I think it may only be responding correctly to changes in the encoding mid-playback some of the time, but I can't be sure. |
[22:11:58] | bergqvistjl: | I think it handles going from progressive to interlaced better, than going from interlaced to progressive. |
[22:21:48] | bergqvistjl (bergqvistjl!~bergqvist@79-70-226-106.dynamic.dsl.as9105.com) has left #mythtv () | |
[22:42:12] | joki (joki!~joki@p54865434.dip.t-dialin.net) has quit (Ping timeout: 264 seconds) | |
[22:42:13] | joki- (joki-!~joki@p548651BB.dip.t-dialin.net) has joined #mythtv | |
[22:42:24] | joki- is now known as joki | |
[22:43:56] | aloril (aloril!~aloril@dsl-tkubrasgw3-54f97e-153.dhcp.inet.fi) has quit (Ping timeout: 276 seconds) | |
[22:45:00] | danielk222 (danielk222!~danielk@96.57.9.142) has quit (Quit: Leaving.) | |
[22:51:18] | Steve-Goodey (Steve-Goodey!~steve@host86-147-183-135.range86-147.btcentralplus.com) has quit (Quit: Konversation terminated!) | |
[22:56:08] | aloril (aloril!~aloril@dsl-tkubrasgw3-54f97e-153.dhcp.inet.fi) has joined #mythtv | |
[23:11:46] | danielk221 (danielk221!~danielk@96.57.9.142) has joined #mythtv | |
[23:25:16] | wagnerrp: | bergqvistjl: yes, mythtv can handle such thngs |
[23:29:09] | mick0_ (mick0_!~user@unaffiliated/mick0) has joined #mythtv | |
[23:57:08] | natanojl (natanojl!~jonatan@c83-252-237-63.bredband.comhem.se) has quit (Ping timeout: 248 seconds) | |
Sunday, March 3rd, 2013 | ||
[00:00:23] | SteveC_ (SteveC_!~scasey@02defece.bb.sky.com) has joined #mythtv | |
[00:02:29] | SteveC (SteveC!~scasey@5ad8ded6.bb.sky.com) has quit (Ping timeout: 255 seconds) | |
[00:04:00] | jya (jya!~jyavenard@mythtv/developer/jya) has quit (*.net *.split) | |
[00:04:01] | toeb (toeb!~tob@HSI-KBW-37-49-118-160.hsi14.kabel-badenwuerttemberg.de) has quit (*.net *.split) | |
[00:04:01] | XDS2010 (XDS2010!uid1218@gateway/web/irccloud.com/x-vqsspfnsmhpbwnif) has quit (*.net *.split) | |
[00:04:01] | sphery (sphery!~mdean@mythtv/developer/sphery) has quit (*.net *.split) | |
[00:04:02] | jya_ is now known as jya | |
[00:04:14] | sphery (sphery!~mdean@mythtv/developer/sphery) has joined #mythtv | |
[00:04:17] | toeb (toeb!~tob@HSI-KBW-37-49-118-160.hsi14.kabel-badenwuerttemberg.de) has joined #mythtv | |
[00:04:19] | jya_ (jya_!~jyavenard@CPE-120-148-103-15.bjzv2.vic.bigpond.net.au) has joined #mythtv | |
[00:04:20] | jya_ (jya_!~jyavenard@CPE-120-148-103-15.bjzv2.vic.bigpond.net.au) has quit (Changing host) | |
[00:04:20] | jya_ (jya_!~jyavenard@mythtv/developer/jya) has joined #mythtv | |
[00:05:09] | Sharky112065 is now known as Sharky-AFK | |
[00:07:12] | XDS2010 (XDS2010!uid1218@gateway/web/irccloud.com/x-nisembuymqilzrpx) has joined #mythtv | |
[00:11:49] | SteveC (SteveC!~scasey@5acc0fd5.bb.sky.com) has joined #mythtv | |
[00:13:23] | SteveC_ (SteveC_!~scasey@02defece.bb.sky.com) has quit (Ping timeout: 248 seconds) | |
[01:35:35] | bas-t (bas-t!~tycho@52484E89.cm-4-1b.dynamic.ziggo.nl) has joined #mythtv | |
[01:36:04] | bas-t (bas-t!~tycho@52484E89.cm-4-1b.dynamic.ziggo.nl) has quit (Client Quit) | |
[02:19:23] | sraue (sraue!~stephan@xbmc/staff/sraue) has quit (Quit: Ex-Chat) | |
[02:20:04] | sraue (sraue!~stephan@xbmc/staff/sraue) has joined #mythtv | |
[02:46:50] | amessina (amessina!~amessina@2001:470:c1dc:7779:d6be:d9ff:fe8d:7c1e) has quit (Remote host closed the connection) | |
[02:47:09] | amessina (amessina!~amessina@2001:470:c1dc:7779:d6be:d9ff:fe8d:7c1e) has joined #mythtv | |
[03:01:00] | amessina (amessina!~amessina@2001:470:c1dc:7779:d6be:d9ff:fe8d:7c1e) has quit (Quit: Konversation terminated!) | |
[03:01:27] | gigem (gigem!~david@mythtv/developer/gigem) has quit (Quit: WeeChat 0.3.8) | |
[03:02:58] | gigem (gigem!~david@pool-71-123-128-124.dllstx.fios.verizon.net) has joined #mythtv | |
[03:02:58] | gigem (gigem!~david@pool-71-123-128-124.dllstx.fios.verizon.net) has quit (Changing host) | |
[03:02:58] | gigem (gigem!~david@mythtv/developer/gigem) has joined #mythtv | |
[03:18:48] | GreyFoxx (GreyFoxx!~greg@out.of.phaze.org) has quit (Ping timeout: 240 seconds) | |
[03:18:55] | GreyFoxx (GreyFoxx!~greg@out.of.phaze.org) has joined #mythtv | |
[03:19:33] | Anssi (Anssi!hannulaa@mandriva/developer/anssi) has quit (Ping timeout: 240 seconds) | |
[03:19:40] | Anssi_ (Anssi_!hannulaa@mandriva/developer/anssi) has joined #mythtv | |
[03:19:45] | Anssi_ is now known as Anssi | |
[03:25:42] | Seeker`_ (Seeker`_!~cjo20@host86-145-12-185.range86-145.btcentralplus.com) has joined #mythtv | |
[03:30:41] | Seeker` (Seeker`!~cjo20@unaffiliated/seeker) has quit (*.net *.split) | |
[03:33:23] | peper03 (peper03!~peper03@port-92-203-103-76.dynamic.qsc.de) has quit (Ping timeout: 248 seconds) | |
[03:34:49] | peper03 (peper03!~peper03@port-92-203-122-194.dynamic.qsc.de) has joined #mythtv | |
[04:07:01] | Sharky112065-AFK (Sharky112065-AFK!~Sharky112@c-24-19-57-28.hsd1.wa.comcast.net) has joined #mythtv | |
[04:07:05] | Sharky-AFK (Sharky-AFK!~Sharky112@c-24-19-57-28.hsd1.wa.comcast.net) has quit (Read error: Connection reset by peer) | |
[04:12:29] | Sharky112065-AFK is now known as sharky112065 | |
[04:14:10] | sharky112065 (sharky112065!~Sharky112@c-24-19-57-28.hsd1.wa.comcast.net) has quit (Quit: “The only way to have a friend is to be one.†― Ralph Waldo Emerson) | |
[04:14:58] | Sharky-AFK (Sharky-AFK!~Sharky112@c-24-19-57-28.hsd1.wa.comcast.net) has joined #mythtv | |
[04:43:45] | fetzerch (fetzerch!~quassel@unaffiliated/fetzerch) has quit (Ping timeout: 260 seconds) | |
[04:45:11] | fetzerch (fetzerch!~quassel@unaffiliated/fetzerch) has joined #mythtv | |
[05:26:21] | Seeker` (Seeker`!~cjo20@host86-145-12-185.range86-145.btcentralplus.com) has joined #mythtv | |
[05:26:21] | Seeker` (Seeker`!~cjo20@host86-145-12-185.range86-145.btcentralplus.com) has quit (Changing host) | |
[05:26:21] | Seeker` (Seeker`!~cjo20@unaffiliated/seeker) has joined #mythtv | |
[05:27:08] | Seeker`_ (Seeker`_!~cjo20@host86-145-12-185.range86-145.btcentralplus.com) has quit (Ping timeout: 255 seconds) | |
[05:28:18] | tris (tris!tristan@camel.ethereal.net) has quit (Ping timeout: 255 seconds) | |
[05:30:12] | tris (tris!tristan@camel.ethereal.net) has joined #mythtv | |
[05:42:27] | stichnot (stichnot!~stichnot@mythtv/developer/stichnot) has quit (Ping timeout: 248 seconds) | |
[05:43:16] | nephyrin (nephyrin!~neph@nat/mozilla/x-vxxhhdnlnrfemkgn) has quit (Ping timeout: 245 seconds) | |
[05:47:59] | mick0 (mick0!~user@unaffiliated/mick0) has joined #mythtv | |
[05:52:01] | Gibby (Gibby!~Gibby@184.170.249.223) has quit (Ping timeout: 255 seconds) | |
[05:52:01] | mick0_ (mick0_!~user@unaffiliated/mick0) has quit (Ping timeout: 260 seconds) | |
[05:52:01] | Kevin` (Kevin`!~kevin@router.kwzs.be) has quit (Ping timeout: 260 seconds) | |
[05:52:02] | Sharky-AFK (Sharky-AFK!~Sharky112@c-24-19-57-28.hsd1.wa.comcast.net) has quit (*.net *.split) | |
[05:52:02] | _charly_ (_charly_!kroseneg@sunrise.schmidham.net) has quit (*.net *.split) | |
[05:52:02] | jarryd (jarryd!jarryd@im.jarryd.net) has quit (*.net *.split) | |
[05:52:02] | stuarta (stuarta!~stuarta@mythtv/developer/stuarta) has quit (*.net *.split) | |
[05:52:14] | Kevin` (Kevin`!~kevin@router.kwzs.be) has joined #mythtv | |
[05:52:35] | Gibby_ (Gibby_!~Gibby@184.170.249.223) has joined #mythtv | |
[05:56:52] | Sharky-AFK (Sharky-AFK!~Sharky112@c-24-19-57-28.hsd1.wa.comcast.net) has joined #mythtv | |
[05:56:52] | _charly_ (_charly_!kroseneg@sunrise.schmidham.net) has joined #mythtv | |
[05:56:52] | jarryd (jarryd!jarryd@im.jarryd.net) has joined #mythtv | |
[05:56:52] | stuarta (stuarta!~stuarta@mythtv/developer/stuarta) has joined #mythtv | |
[05:59:02] | stichnot (stichnot!~stichnot@mythtv/developer/stichnot) has joined #mythtv | |
[06:04:01] | sl1ce_1g (sl1ce_1g!~johnathan@pool-100-0-73-123.bstnma.fios.verizon.net) has joined #mythtv | |
[06:04:37] | sl1ce (sl1ce!~johnathan@100.0.73.123) has quit (Write error: Broken pipe) | |
[06:24:23] | danielk221 (danielk221!~danielk@96.57.9.142) has quit (Ping timeout: 256 seconds) | |
[06:25:29] | danielk221 (danielk221!~danielk@96.57.9.142) has joined #mythtv | |
[07:42:06] | tonsofpcs (tonsofpcs!~tonsofpcs@cpe-72-230-192-8.stny.res.rr.com) has quit (Ping timeout: 264 seconds) | |
[07:42:11] | gigem (gigem!~david@mythtv/developer/gigem) has quit (Ping timeout: 252 seconds) | |
[07:42:25] | tonsofpcs (tonsofpcs!~tonsofpcs@cpe-72-230-192-8.stny.res.rr.com) has joined #mythtv | |
[07:59:02] | dekarl (dekarl!~dekarl@p4FE85FD6.dip.t-dialin.net) has quit (Ping timeout: 256 seconds) | |
[08:02:31] | Tobbe5178 (Tobbe5178!~asdf@h186n5-sv-a13.ias.bredband.telia.com) has joined #mythtv | |
[08:02:35] | dekarl (dekarl!~dekarl@p4FE85658.dip.t-dialin.net) has joined #mythtv | |
[08:32:29] | Tobbe5178 (Tobbe5178!~asdf@h186n5-sv-a13.ias.bredband.telia.com) has quit (Read error: Connection reset by peer) | |
[08:42:33] | jya (jya!~jyavenard@mythtv/developer/jya) has quit (Quit: jya) | |
[08:42:34] | jya_ is now known as jya | |
[08:43:34] | jya_ (jya_!~jyavenard@mythtv/developer/jya) has joined #mythtv | |
[08:47:49] | sraue (sraue!~stephan@xbmc/staff/sraue) has quit (Quit: Ex-Chat) | |
[08:49:10] | amessina (amessina!~amessina@2001:470:c1dc:7779:d6be:d9ff:fe8d:7c1e) has joined #mythtv | |
[08:59:30] | stoffel (stoffel!~quassel@pD9E41FF9.dip.t-dialin.net) has joined #mythtv | |
[09:14:56] | jya_ (jya_!~jyavenard@mythtv/developer/jya) has quit (Quit: jya_) | |
[09:30:46] | jheizer_ (jheizer_!~jheizer@c-98-226-220-178.hsd1.il.comcast.net) has joined #mythtv | |
[09:31:04] | jheizer (jheizer!~jheizer@c-98-226-220-178.hsd1.il.comcast.net) has quit (Read error: Connection reset by peer) | |
[09:37:37] | jya_ (jya_!~jyavenard@mythtv/developer/jya) has joined #mythtv | |
[09:42:12] | SteveGoodey (SteveGoodey!~steve@host86-147-183-135.range86-147.btcentralplus.com) has joined #mythtv | |
[09:50:37] | bas-t (bas-t!~tycho@52484E89.cm-4-1b.dynamic.ziggo.nl) has joined #mythtv | |
[09:51:10] | stoffel (stoffel!~quassel@pD9E41FF9.dip.t-dialin.net) has quit (Ping timeout: 260 seconds) | |
[09:53:57] | gigem (gigem!~david@pool-71-123-128-124.dllstx.fios.verizon.net) has joined #mythtv | |
[09:53:58] | gigem (gigem!~david@pool-71-123-128-124.dllstx.fios.verizon.net) has quit (Changing host) | |
[09:53:58] | gigem (gigem!~david@mythtv/developer/gigem) has joined #mythtv | |
[09:55:50] | amessina_ (amessina_!~amessina@50-196-241-73-static.hfc.comcastbusiness.net) has joined #mythtv | |
[09:56:00] | amessina (amessina!~amessina@2001:470:c1dc:7779:d6be:d9ff:fe8d:7c1e) has quit (Ping timeout: 264 seconds) | |
[09:56:05] | sraue (sraue!~stephan@xbmc/staff/sraue) has joined #mythtv | |
[10:04:58] | stoffel (stoffel!~quassel@pD9E41FF9.dip.t-dialin.net) has joined #mythtv | |
[10:16:17] | amessina_ is now known as amessina | |
[10:25:48] | Sharky-AFK is now known as Sharky-Sleep | |
[10:34:46] | bas-t (bas-t!~tycho@52484E89.cm-4-1b.dynamic.ziggo.nl) has quit (Quit: Ex-Chat) | |
[10:39:40] | natanojl (natanojl!~jonatan@c83-252-237-63.bredband.comhem.se) has joined #mythtv | |
[10:43:45] | jheizer__ (jheizer__!~jheizer@c-98-226-220-178.hsd1.il.comcast.net) has joined #mythtv | |
[10:43:45] | jheizer_ (jheizer_!~jheizer@c-98-226-220-178.hsd1.il.comcast.net) has quit (Read error: Connection reset by peer) | |
[10:54:17] | stuartm: | IIRC we don't handle going from interlaced to progressive, the reason being that it's unheard of in the US, but there you might see the odd progressive frame in interlaced content and you don't want to be continually flipping the deinterlacing on/off |
[10:54:33] | stuartm: | but maybe that has been subsequently fixed ... |
[11:12:11] | jya_ (jya_!~jyavenard@mythtv/developer/jya) has quit (Quit: jya_) | |
[12:12:38] | stoffel (stoffel!~quassel@pD9E41FF9.dip.t-dialin.net) has quit (Ping timeout: 246 seconds) |
IRC Logs collected by
BeirdoBot.
Please use the above link to report any bugs.