Saturday, May 19th, 2012, 00:03 UTC | ||
[00:03:25] | wagnerrp: | shoulda been running freebsd.. |
[00:08:08] | stichnot (stichnot!chatzilla@mythtv/developer/stichnot) has quit (Ping timeout: 240 seconds) | |
[00:08:12] | Lomion0815 (Lomion0815!~Lomion@213-33-13-36.adsl.highway.telekom.at) has quit () | |
[00:12:56] | zombor (zombor!~zombor_@kohana/developer/zombor) has quit (Remote host closed the connection) | |
[00:18:03] | stuartm: | zeromq? |
[00:18:42] | wagnerrp: | moves logging to a separate daemon, communicating over some "zeromq" protocol |
[00:20:07] | wagnerrp: | i assume its going to be like an automanaged version of syslog |
[00:27:52] | kormoc: | it's an concurrency framework |
[00:28:18] | kormoc: | the mq stands for message queue |
[00:31:01] | stuartm: | huh |
[00:32:25] | kormoc (kormoc!~kormoc@mythtv/developer/kormoc) has quit (Quit: kormoc) | |
[01:03:55] | zombor (zombor!~zombor_@kohana/developer/zombor) has joined #mythtv | |
[01:04:07] | zombor (zombor!~zombor_@kohana/developer/zombor) has quit (Remote host closed the connection) | |
[01:11:51] | zombor (zombor!~zombor_@kohana/developer/zombor) has joined #mythtv | |
[01:11:52] | zombor (zombor!~zombor_@kohana/developer/zombor) has quit (Remote host closed the connection) | |
[01:12:14] | jstenback (jstenback!~jstenback@2620:101:8003:200:224:e8ff:fe39:34c2) has joined #mythtv | |
[01:19:04] | natanojl (natanojl!~jonatan@c83-252-237-63.bredband.comhem.se) has quit (Ping timeout: 265 seconds) | |
[01:20:01] | Beirdo: | yeah, to make it simple, all of the log messages go to a central daemon to be logged to disk/syslog/db |
[01:20:11] | Beirdo: | this massively simplifies the clients |
[01:20:44] | Beirdo: | and allows (for instance) something like mythpreviewgen to start, do its work and stop... all in less than 1s as there's no need to wait for the db |
[01:21:03] | Beirdo: | and if the client crashes, pretty much all of the logs should squeak out before it dies |
[01:21:42] | Beirdo: | especially as I have SEGV and ABRT handlers in there that will delay 100ms to let the messages get out before re-raising the signal with no handler |
[01:22:33] | Beirdo: | all the more complex db logging cruft is only in the central service. And it will get autostarted by the clients, and will autodie when all clients have disconnected |
[01:23:16] | Beirdo: | anyways, I wanna make sure it will compile (and then behave, one would assume) on the buildbots before getting to merging to master |
[01:23:36] | Beirdo: | as otherwise... it will be more like the ffmpeg merge, when I forgot to do this before-hand :) |
[01:23:57] | Beirdo: | ahhh |
[01:24:18] | Beirdo: | stuarta: when you get a chance, could you apt-get install uuid-dev on the debian slave? |
[01:24:50] | Beirdo: | now for a laugh... |
[01:25:06] | Beirdo: | MythBuild: force build zeromq-vista-mingw-32bit now |
[01:25:07] | MythBuild: | build #0 forced |
[01:25:07] | MythBuild: | I'll give a shout when the build finishes |
[01:36:46] | cocoa117 (cocoa117!~cocoa117@188-222-31-239.zone13.bethere.co.uk) has quit (Ping timeout: 244 seconds) | |
[01:42:03] | zombor (zombor!~zombor_@kohana/developer/zombor) has joined #mythtv | |
[01:46:16] | stichnot (stichnot!~chatzilla@mythtv/developer/stichnot) has joined #mythtv | |
[02:09:25] | MythBuild: | Hey! build zeromq-vista-mingw-32bit #0 is complete: Failure [4failed compile] |
[02:09:25] | ** MythLogBot http://code.mythtv.org/trac/ticket/0 ** | |
[02:09:25] | MythBuild: | Build details are at http://code.mythtv.org/buildbot/builders/zero . . . bit/builds/0 |
[02:33:55] | jya: | stuartm: about GetRealFileSize() ; to calculate the size, I call some functions shared by other piece of the code… const being virus-like , it makes all sub-functions requiring to be const ; and that's not possible as I do need write access to some members |
[02:37:02] | jya: | danielk22, stuartm : mythtv will now build properly with llvm/clang without any particular option. It's only with the one that shipped with the mac xcode that it fails (segfault on libswscale)… Interestingly, when you retrieve from Apple's public repo the exact same source code and compile it yourself: there's no segfault... |
[02:37:10] | jya: | so it's really unique to the Apple's shipped one |
[02:39:31] | danielk22: | jya: If you need write to some members for caching reasons, that's what mutable is for. If you need access to some external code that doesn't use const then you can use const_cast<Blah*>(ThingToAccess) |
[02:40:11] | danielk22: | jya: I tried to compile with clang not to long ago and it failed in ffmpeg. |
[02:40:13] | jya: | danielk22: making variables mutable defeat the whole purpose of making the function const to start with imho |
[02:40:35] | jya: | what's not too long ago? |
[02:40:46] | danielk22: | couple weeks ago |
[02:40:55] | jya: | cause I spent a great deal of time earlier this year to have myth compile with clang |
[02:41:00] | jya: | interesting |
[02:44:32] | danielk22: | jya: The const keyword still tells you that the method won't change the state of the class so the compiler is free to optimize away multiple const method calls into fewer const method calls. |
[02:45:31] | jya: | i know what const does :) |
[02:46:14] | jya: | my point is that if you mark a method as const, the whole path should be read-only.. if you have to cast or mark items as mutable do get it to work ; it shouldn't have been const to start with |
[02:47:07] | danielk22: | So you think we should avoid mutable mutexes? That would really complicate code without any benefit. |
[02:53:56] | jya: | I think we shouldn't make functions as const unless there's a good reason to. For a class like RingBuffer, that will be implemented very differently depending on the media use ; it's too much of a constraint.. if a function is designed to be overloaded or pure virtual, don't force that design decision.. you never know how the implementation is going to be done later |
[02:55:07] | jya: | here for example, to calculate the size of the stream, I need to retrieve some data from the server, in my downloading queue it's rather complex (multi-threaded and all) ; so implementing it as const is virtually impossible |
[02:55:47] | jya: | for mutex, mutables are fine, they are designed to be that way anyway |
[02:56:34] | jya: | most of the mutex code is using atomic operation too |
[02:56:52] | danielk22: | jya: You can change the const-ness of that function if it causes a too much grief. |
[02:57:48] | Captain_Murdoch: | nice.... From my Roku, using a hacked copy of MythRokuPlayer and some static .qsp files on the MBE webserver, I was able to start up a new HLS stream of a MythTV video, watch it, stop the encoding, and delete the HLS stream. |
[02:57:49] | jya: | what I don't get, is that for seek to work in ringbuffer, if i provide a very rough estimation of the duration, it works. Yet, if I provide the exact size as I retrieve the various segments … it doesn't |
[02:59:17] | danielk22: | I tend to err on the side of we shouldn't make anything non-const unless there is a good reason to. Non-const is seriously viral. But if there is good reason to make it non-const then it's not the end of the world either. |
[02:59:50] | danielk22: | jya: That is odd |
[03:00:19] | jya: | i thought it was const that was seriously viral :) |
[03:00:36] | danielk22: | I've noticed ffmpeg does strange things to streams it knows it can seek in. |
[03:00:50] | jya: | danielk22: for a start I found that if I return a different size for each call to GetRealSize, then it fails miserably at some stage |
[03:01:27] | jya: | danielk22: actually, to be able to seek in my HLS stream, i have to return false in IsStreamed |
[03:01:41] | jya: | i should have read more carefully a comment in the streamingringbuffer code that states: |
[03:01:46] | danielk22: | Much of the complexity of FileRingBuffer is optimizations to deal with the multiple seeks+reads it does in quick succession. |
[03:02:13] | jya: | (stated: m_streamed = false /// yes confusing) |
[03:05:59] | danielk22: | oh, the suspense.. what does that actually do? |
[03:10:48] | jya: | when I looked back then, it's to do with how it assumes what some ffmpeg replies mean :) |
[03:11:18] | jya: | what I know for sure, is that if IsStreamed returns true; then the duration display is 8 times more than what it should be |
[03:11:55] | jya: | you also can't seek properly.. when you seek it starts calling safe_read like crazy, existing all the buffers, which then trigger an EOF detection and it stops |
[03:12:02] | danielk22: | sphery: stuartm: Recording deletion doesn't seem to work properly anymore. When I try to delete a program that is recording nothing happens. And when I delete a recording that doesn't have any file associated with it nothing happens. Were these edge cases always broken with the Delete recording group code? |
[03:12:29] | jya: | so what it does precisely, I'm not sure… seems that IsStreamed should be more like: IsLiveStream |
[03:12:49] | jya: | because that's how it's used in both streamingbuffer.cpp and now hls ringbuffer |
[03:13:48] | danielk22: | jya: I read that bit earlier in the week about how it was calling safe_read like crazy. That doesn't sound like any behavior I recall seening before. |
[03:17:10] | jya: | danielk22: not much makes sense to me.. I have no idea why what I did make it work… a |
[03:29:08] | stichnot (stichnot!~chatzilla@mythtv/developer/stichnot) has quit (Remote host closed the connection) | |
[03:31:20] | stichnot (stichnot!chatzilla@mythtv/developer/stichnot) has joined #mythtv | |
[03:37:08] | cattelan is now known as cattelan_away | |
[03:38:08] | cattelan_away is now known as cattelan | |
[03:38:45] | cocoa117 (cocoa117!~cocoa117@188-222-31-239.zone13.bethere.co.uk) has joined #mythtv | |
[03:42:37] | Seeker` (Seeker`!~cjo20@unaffiliated/seeker) has quit (Ping timeout: 265 seconds) | |
[03:43:39] | Seeker` (Seeker`!~cjo20@unaffiliated/seeker) has joined #mythtv | |
[04:22:00] | NightMonkey (NightMonkey!~NightrMon@pdpc/supporter/professional/nightmonkey) has joined #mythtv | |
[04:22:51] | NightMonkey (NightMonkey!~NightrMon@pdpc/supporter/professional/nightmonkey) has quit (Read error: Connection reset by peer) | |
[04:31:24] | brfransen (brfransen!~brfransen@64.179.142.146) has quit () | |
[04:32:58] | brfransen (brfransen!~brfransen@64.179.142.146) has joined #mythtv | |
[04:43:38] | brfransen (brfransen!~brfransen@64.179.142.146) has quit (Quit: Leaving.) | |
[04:43:53] | brfransen (brfransen!~brfransen@64.179.142.146) has joined #mythtv | |
[04:47:08] | _charly_ (_charly_!kroseneg@sunrise.schmidham.net) has quit (Ping timeout: 245 seconds) | |
[04:50:40] | _charly_ (_charly_!kroseneg@sunrise.schmidham.net) has joined #mythtv | |
[04:56:27] | brfransen (brfransen!~brfransen@64.179.142.146) has quit (Quit: Leaving.) | |
[04:57:20] | brfransen (brfransen!~brfransen@64.179.142.146) has joined #mythtv | |
[05:16:48] | brfransen (brfransen!~brfransen@64.179.142.146) has quit (Quit: Leaving.) | |
[05:17:01] | brfransen (brfransen!~brfransen@64.179.142.146) has joined #mythtv | |
[05:22:58] | brfransen (brfransen!~brfransen@64.179.142.146) has quit (Quit: Leaving.) | |
[05:23:12] | brfransen (brfransen!~brfransen@64.179.142.146) has joined #mythtv | |
[05:27:56] | zombor (zombor!~zombor_@kohana/developer/zombor) has quit (Remote host closed the connection) | |
[05:31:39] | stuarta (stuarta!~stuarta@mythtv/developer/stuarta) has quit (Read error: Operation timed out) | |
[05:34:13] | cattelan is now known as cattelan_away | |
[05:35:45] | stuarta (stuarta!~stuarta@callisto.ppp0.squashedfrog.net) has joined #mythtv | |
[05:44:56] | cattelan_away is now known as cattelan | |
[05:45:14] | cattelan is now known as cattelan_away | |
[06:19:02] | amessina (amessina!~amessina@2001:470:1f11:a4:d6be:d9ff:fe8d:7c1e) has quit (Quit: Konversation terminated!) | |
[06:21:16] | amessina (amessina!~amessina@2001:470:1f11:a4:d6be:d9ff:fe8d:7c1e) has joined #mythtv | |
[06:56:49] | ben1066_ (ben1066_!~quassel@unaffiliated/ben1066) has joined #mythtv | |
[06:58:06] | ben1066 (ben1066!~quassel@unaffiliated/ben1066) has quit (Ping timeout: 246 seconds) | |
[07:00:28] | Steve-Goodey (Steve-Goodey!~steve@host86-144-2-182.range86-144.btcentralplus.com) has joined #mythtv | |
[07:02:34] | stichnot (stichnot!chatzilla@mythtv/developer/stichnot) has quit (Ping timeout: 252 seconds) | |
[07:15:53] | stoffel (stoffel!~quassel@pD9E42D49.dip.t-dialin.net) has joined #mythtv | |
[07:20:40] | stichnot (stichnot!chatzilla@mythtv/developer/stichnot) has joined #mythtv | |
[07:21:53] | rsiebert_ (rsiebert_!~quassel@g231184206.adsl.alicedsl.de) has joined #mythtv | |
[07:25:34] | rsiebert (rsiebert!~quassel@g225048153.adsl.alicedsl.de) has quit (Ping timeout: 272 seconds) | |
[07:33:39] | stoffel (stoffel!~quassel@pD9E42D49.dip.t-dialin.net) has quit (Ping timeout: 260 seconds) | |
[07:35:44] | pheld (pheld!~heldal@cl-5.osl-01.no.sixxs.net) has joined #mythtv | |
[08:19:45] | andreax (andreax!~andreaz@p5089EC88.dip.t-dialin.net) has joined #mythtv | |
[08:40:56] | stoffel (stoffel!~quassel@pD9E42D49.dip.t-dialin.net) has joined #mythtv | |
[09:06:10] | stoffel (stoffel!~quassel@pD9E42D49.dip.t-dialin.net) has quit (Ping timeout: 244 seconds) | |
[09:11:31] | amessina (amessina!~amessina@2001:470:1f11:a4:d6be:d9ff:fe8d:7c1e) has quit (Quit: Konversation terminated!) | |
[09:17:13] | natanojl (natanojl!~jonatan@c83-252-237-63.bredband.comhem.se) has joined #mythtv | |
[09:40:38] | stuartm: | danielk22: odd, the former is working here, I just deleted an in-progress recording – it stopped recording and has been moved to the deleted recgroup |
[09:41:33] | stuartm: | where no recording file exists it's still moved to the deleted group, but it never expires from there – that's a known problem with the deleted group code and one I intend on fixing for 0.26 |
[10:05:02] | Guest71431 (Guest71431!~mike@c-98-232-220-158.hsd1.or.comcast.net) has quit (Remote host closed the connection) | |
[10:05:48] | mike (mike!~mike@c-98-232-220-158.hsd1.or.comcast.net) has joined #mythtv | |
[10:06:14] | mike is now known as Guest3503 | |
[10:14:12] | andreax (andreax!~andreaz@p5089EC88.dip.t-dialin.net) has quit (Read error: Connection reset by peer) | |
[10:20:34] | Seeker` (Seeker`!~cjo20@unaffiliated/seeker) has quit (Ping timeout: 244 seconds) | |
[10:21:32] | Seeker` (Seeker`!~cjo20@unaffiliated/seeker) has joined #mythtv | |
[10:35:28] | MaverickTech (MaverickTech!~MaverickT@111.86.233.220.static.exetel.com.au) has quit (Ping timeout: 245 seconds) | |
[11:37:59] | ben1066_ is now known as ben1066 | |
[12:26:10] | skd5aner (skd5aner!~skd5aner@cpe-071-071-242-134.carolina.res.rr.com) has quit (Quit: Leaving) | |
[13:06:46] | stoffel (stoffel!~quassel@pD9E417FC.dip.t-dialin.net) has joined #mythtv | |
[13:20:02] | stuartm: | jya: 700995 – AudioOutputDigitalEncoder::realloc() frees ptr, at ln 245 of audiooutputdigitalencoder.cpp we call free() on the same pointer immediately after calling realloc() |
[13:21:59] | jya: | stuartm: thanks.. I'll have a look… I still haven't looked at coverity |
[13:24:14] | danielk22: | stuartm: Thanks. It must be something that wouldn't effect everyone then.. |
[13:37:41] | stoffel (stoffel!~quassel@pD9E417FC.dip.t-dialin.net) has quit (Read error: Operation timed out) | |
[13:44:40] | stuartm: | jya: fwiw it seems easy to understand why we're calling free() there because the realloc has failed, but realloc frees the pointer whatever happens |
[13:46:22] | jya: | according to realloc man page: |
[13:46:23] | jya: | For realloc(), the input pointer is still valid if reallocation failed. For reallocf(), the input pointer will have been freed if realloca- |
[13:46:24] | jya: | tion failed. |
[13:46:35] | jya: | so as such, you must free it if realloc failed |
[13:47:31] | jya: | looks like a false positive to me. |
[13:51:18] | stuartm: | jya: it has reimplemented realloc |
[13:51:30] | jya: | who did ? |
[13:51:42] | stuartm: | AudioOutputDigitalEncoder::realloc() |
[13:52:04] | jya: | ahah |
[13:52:12] | jya: | i had totally forgotten about that :) |
[13:52:29] | RogerM (RogerM!~chatzilla@212.247.248.179) has joined #mythtv | |
[13:52:54] | stuartm: | sorry, I should have mentioned that from the start :) |
[13:53:55] | jya: | anyway, we would have never seen such error, would have had an exception a long time ago with all the "new" operator |
[14:10:18] | stoffel (stoffel!~quassel@pD9E417FC.dip.t-dialin.net) has joined #mythtv | |
[14:22:03] | zombor (zombor!~zombor_@kohana/developer/zombor) has joined #mythtv | |
[14:46:34] | brfransen (brfransen!~brfransen@64.179.142.146) has quit (Quit: Leaving.) | |
[14:46:56] | brfransen (brfransen!~brfransen@64.179.142.146) has joined #mythtv | |
[14:47:26] | stoffel (stoffel!~quassel@pD9E417FC.dip.t-dialin.net) has quit (Ping timeout: 246 seconds) | |
[15:14:12] | jya: | Captain_Murdoch: I've changed the handling of live HLS stream, I start at the first segment in the string and seek works in those… it works okay for playback of myth generated stream; except that the size displayed isn't being refreshed, it's the length as determined when playback starts. |
[15:18:07] | jya: | myth never seems to play the last 3–4s of a video… weird |
[15:19:19] | RogerM (RogerM!~chatzilla@212.247.248.179) has quit (Ping timeout: 245 seconds) | |
[15:25:04] | zombor (zombor!~zombor_@kohana/developer/zombor) has quit (Remote host closed the connection) | |
[15:26:36] | stoffel (stoffel!~quassel@pD9E417FC.dip.t-dialin.net) has joined #mythtv | |
[15:31:02] | hashbang (hashbang!~alex@213-152-35-50.dsl.eclipse.net.uk) has joined #mythtv | |
[15:32:15] | sphery: | jya: #6974 , especially comments 3–6 ... Note, though, that 3–4 seconds either indicates an ugly container (like AVI) or--more likely--you have "Prompt At End Of Recording" enabled, and it's the 2s margin used + some rounding/errors in calculations. The mythtv-6974-IsNearEnd_margin_for_end_of_recording_prompt.patchâ€&lsaq uo; shouldn't be applied, but the other should be reviewed by someone who knows the player code. See, also, #6148 and #6448 |
[15:32:15] | ** MythLogBot http://code.mythtv.org/trac/ticket/6974 ** | |
[15:32:15] | ** MythLogBot http://code.mythtv.org/trac/ticket/6148 ** | |
[15:32:15] | ** MythLogBot http://code.mythtv.org/trac/ticket/6448 ** | |
[15:33:05] | jya: | sphery: here it's my mpegts stream |
[15:33:10] | jya: | I get no prompt at all |
[15:34:04] | jya: | my test of local HLS was streaming via the AirVideo server of Alias episode 22, season4.. In the last 3s, you see a car crash… completely gone in myth |
[15:34:34] | jya: | 3 years ago? |
[15:34:38] | jya: | damn |
[15:35:31] | jya: | his last patch looks okay |
[15:36:17] | jya: | why do you think that it shouldn't be applied? |
[15:37:12] | jya: | having said that, I had never noticed until today |
[15:45:04] | jya: | righto… night everyone |
[16:09:38] | joki (joki!~joki@p548641D9.dip.t-dialin.net) has quit (Ping timeout: 240 seconds) | |
[16:10:25] | joki (joki!~joki@p5486338B.dip.t-dialin.net) has joined #mythtv | |
[16:12:19] | natanojl (natanojl!~jonatan@c83-252-237-63.bredband.comhem.se) has quit (Ping timeout: 252 seconds) | |
[16:13:59] | zombor (zombor!~zombor_@kohana/developer/zombor) has joined #mythtv | |
[16:25:07] | natanojl (natanojl!~jonatan@c83-252-237-63.bredband.comhem.se) has joined #mythtv | |
[16:28:55] | 92AAAXCG8 is now known as mzanetti | |
[16:32:05] | Chutt (Chutt!~ijr@cpe-24-29-225-175.neo.res.rr.com) has quit (Ping timeout: 265 seconds) | |
[16:39:43] | stoffel (stoffel!~quassel@pD9E417FC.dip.t-dialin.net) has quit (Ping timeout: 276 seconds) | |
[16:58:41] | amessina (amessina!~amessina@2001:470:1f11:a4:d6be:d9ff:fe8d:7c1e) has joined #mythtv | |
[17:00:24] | zombor (zombor!~zombor_@kohana/developer/zombor) has quit (Remote host closed the connection) | |
[17:12:47] | XDS2010_ (XDS2010_!u1218@gateway/web/irccloud.com/x-aydfrhwnjltoqxdg) has quit (Max SendQ exceeded) | |
[17:15:05] | superm1 (superm1!u4318@ubuntu/member/superm1) has quit (Ping timeout: 260 seconds) | |
[17:16:01] | XDS2010_ (XDS2010_!u1218@gateway/web/irccloud.com/x-bnrldmvygblplarc) has joined #mythtv | |
[17:23:30] | XDS2010_ (XDS2010_!u1218@gateway/web/irccloud.com/x-bnrldmvygblplarc) has quit (Max SendQ exceeded) | |
[17:24:15] | XDS2010_ (XDS2010_!u1218@gateway/web/irccloud.com/x-pcqzsbfvxrkhswpm) has joined #mythtv | |
[17:25:00] | zombor (zombor!~zombor_@kohana/developer/zombor) has joined #mythtv | |
[17:28:48] | amessina (amessina!~amessina@2001:470:1f11:a4:d6be:d9ff:fe8d:7c1e) has quit (Quit: Konversation terminated!) | |
[17:36:33] | XDS2010_ (XDS2010_!u1218@gateway/web/irccloud.com/x-pcqzsbfvxrkhswpm) has quit (Max SendQ exceeded) | |
[17:39:55] | brfransen (brfransen!~brfransen@64.179.142.146) has left #mythtv () | |
[17:40:00] | brfransen (brfransen!~brfransen@64.179.142.146) has joined #mythtv | |
[17:45:53] | XDS2010_ (XDS2010_!u1218@gateway/web/irccloud.com/x-bzpmxytozgukbfqv) has joined #mythtv | |
[17:46:18] | brfransen (brfransen!~brfransen@64.179.142.146) has quit (Quit: Leaving.) | |
[17:46:35] | brfransen (brfransen!~brfransen@64.179.142.146) has joined #mythtv | |
[17:48:24] | brfransen (brfransen!~brfransen@64.179.142.146) has left #mythtv () | |
[17:48:37] | brfransen (brfransen!~brfransen@64.179.142.146) has joined #mythtv | |
[17:57:58] | superm1 (superm1!u4318@ubuntu/member/superm1) has joined #mythtv | |
[18:13:58] | Steve-Goodey (Steve-Goodey!~steve@host86-144-2-182.range86-144.btcentralplus.com) has quit (Remote host closed the connection) | |
[18:51:16] | amessina (amessina!~amessina@2001:470:1f11:a4:d6be:d9ff:fe8d:7c1e) has joined #mythtv | |
[19:44:59] | RogerM (RogerM!~chatzilla@212.247.248.179) has joined #mythtv | |
[19:45:04] | RogerM (RogerM!~chatzilla@212.247.248.179) has quit (Remote host closed the connection) | |
[19:51:19] | SteveGoodey (SteveGoodey!~steve@host86-144-2-182.range86-144.btcentralplus.com) has joined #mythtv | |
[19:53:11] | gpharos (gpharos!~noob2@adsl-74-178-196-190.jax.bellsouth.net) has joined #mythtv | |
[20:00:20] | natanojl (natanojl!~jonatan@c83-252-237-63.bredband.comhem.se) has quit (Ping timeout: 246 seconds) | |
[20:13:25] | natanojl (natanojl!~jonatan@c83-252-237-63.bredband.comhem.se) has joined #mythtv | |
[21:01:31] | SteveGoodey (SteveGoodey!~steve@host86-144-2-182.range86-144.btcentralplus.com) has quit (Remote host closed the connection) | |
[21:12:48] | hashbang (hashbang!~alex@213-152-35-50.dsl.eclipse.net.uk) has quit (Quit: Leaving.) | |
[21:13:02] | ben1066_ (ben1066_!~quassel@host109-152-55-188.range109-152.btcentralplus.com) has joined #mythtv | |
[21:13:02] | ben1066_ (ben1066_!~quassel@host109-152-55-188.range109-152.btcentralplus.com) has quit (Changing host) | |
[21:13:02] | ben1066_ (ben1066_!~quassel@unaffiliated/ben1066) has joined #mythtv | |
[21:14:11] | ben1066 (ben1066!~quassel@unaffiliated/ben1066) has quit (Ping timeout: 246 seconds) | |
[21:29:13] | ben1066 (ben1066!~quassel@host86-145-174-88.range86-145.btcentralplus.com) has joined #mythtv | |
[21:29:14] | ben1066 (ben1066!~quassel@host86-145-174-88.range86-145.btcentralplus.com) has quit (Changing host) | |
[21:29:14] | ben1066 (ben1066!~quassel@unaffiliated/ben1066) has joined #mythtv | |
[21:30:39] | ben1066_ (ben1066_!~quassel@unaffiliated/ben1066) has quit (Ping timeout: 246 seconds) | |
[21:32:57] | ben1066_ (ben1066_!~quassel@host109-152-33-100.range109-152.btcentralplus.com) has joined #mythtv | |
[21:32:57] | ben1066_ (ben1066_!~quassel@host109-152-33-100.range109-152.btcentralplus.com) has quit (Changing host) | |
[21:32:57] | ben1066_ (ben1066_!~quassel@unaffiliated/ben1066) has joined #mythtv | |
[21:34:30] | ben1066 (ben1066!~quassel@unaffiliated/ben1066) has quit (Ping timeout: 246 seconds) | |
[21:36:39] | ben1066 (ben1066!~quassel@host109-152-40-33.range109-152.btcentralplus.com) has joined #mythtv | |
[21:36:39] | ben1066 (ben1066!~quassel@host109-152-40-33.range109-152.btcentralplus.com) has quit (Changing host) | |
[21:36:39] | ben1066 (ben1066!~quassel@unaffiliated/ben1066) has joined #mythtv | |
[21:38:20] | ben1066_ (ben1066_!~quassel@unaffiliated/ben1066) has quit (Ping timeout: 246 seconds) | |
[21:51:10] | sphery: | jya: Mark S's patch on #6974 is the one someone who knows the player needs to review (but it looks good to me, too). It's only mythtv-6974-IsNearEnd_margin_for_end_of_recording_prompt.patchâ€&lsaq uo; (the one I posted) that shouldn't be applied (though it's easy and non-invasive, I don't trust it with the variety of video we now play back, so we need to do the real fix that Mark mentioned in comment 4. So, mythtv-play-to-end.20120306.patch​ is ... |
[21:51:10] | ** MythLogBot http://code.mythtv.org/trac/ticket/6974 ** | |
[21:51:17] | sphery: | ... probably good. |
[21:58:24] | zombor (zombor!~zombor_@kohana/developer/zombor) has quit (Remote host closed the connection) | |
[22:00:24] | lxs-makoto (lxs-makoto!~makoto@ludgate.privmsg.me.uk) has joined #mythtv | |
[22:00:27] | lxs-makoto (lxs-makoto!~makoto@ludgate.privmsg.me.uk) has left #mythtv () | |
[22:33:52] | zombor (zombor!~zombor_@kohana/developer/zombor) has joined #mythtv | |
[22:51:17] | amessina (amessina!~amessina@2001:470:1f11:a4:d6be:d9ff:fe8d:7c1e) has quit (Quit: Konversation terminated!) | |
[22:58:51] | stuartm: | Beirdo: cppcheck buildbot is offline? |
[23:04:25] | stuartm: | http://code.mythtv.org/cppcheck/index.html < a few new warnings in httplivestreambuffer.cpp |
[23:22:27] | gpharos (gpharos!~noob2@adsl-74-178-196-190.jax.bellsouth.net) has quit (Remote host closed the connection) | |
[23:30:04] | pheld (pheld!~heldal@cl-5.osl-01.no.sixxs.net) has quit (Quit: Leaving.) | |
[23:44:27] | Beirdo: | not that I know of, let me check |
[23:45:49] | Beirdo: | oh, this will be wonderful |
[23:46:18] | Beirdo: | that's my production master backend, and it has *no* video card, so debugging will be painful |
[23:46:22] | Beirdo: | sigh |
[23:47:33] | Beirdo: | just went and power cycled it, let's see |
[23:51:16] | Beirdo: | uptime of 303 days. boom |
[23:53:02] | Beirdo: | thanks. :) |
[23:53:07] | Beirdo: | dunno what happened there |
IRC Logs collected by
BeirdoBot.
Please use the above link to report any bugs.