Re: XMMS2 IRC Meeting proposal

2006-11-02 Thread Tilman Sauerbeck
Tobias Rundström [2006-11-02 14:58]: > 16:00 UTC works for me. Workday is probably easier, though this > weekend is free. I suggest: Saturday 5/10 or Monday 6/10. Let's use 16:00 UTC sucks a lot for me on Monday - Thursday. Would work on the rest of the week though. Regards, Tilman -- A: Be

Service method handling is strange

2007-10-06 Thread Tilman Sauerbeck
Hi guys, I'm currently working on Ruby bindings for the service method stuff, and I noticed something's strange. See eg http://repo.or.cz/w/xmms2-tutorial.git?a=blob;f=c/service_client/recursion.c;h=50d4af56a3e836dfb07ffec31707f5ef5f3195c6;hb=HEAD as an example of a service method. atm, service me

Re: Service method handling is strange

2007-10-06 Thread Tilman Sauerbeck
ZeeGeek [2007-10-07 01:17]: > On 10/7/07, Tilman Sauerbeck <[EMAIL PROTECTED]> wrote: > > > > Hi guys, > > I'm currently working on Ruby bindings for the service method stuff, and > > I noticed something's strange. > > > > See eg &g

Re: FOSDEM 2008

2008-01-08 Thread Tilman Sauerbeck
Tobias Rundström [2008-01-08 14:13]: > >> If people are interested I can help coordinate hotel booking (we want > >> to stay at the same place). > > > > That'd be cool indeed! > > Ok guys, I have been looking around and found a suitable hotel. It's > in the center and we can share double rooms b

Re: PlaylistMap

2008-02-03 Thread Tilman Sauerbeck
Johan Slikkie van der Slikke [2008-02-03 16:15]: > the newest abraca git version won't compile because the type 'PlaylistMap' > cannot be found. I discovered that the type is made by the code in utils, but > can you tell me how to compile that? Build with scons instead of make. The makefile is

Re: Meeting (2008-05-18)

2008-05-13 Thread Tilman Sauerbeck
Daniel Chokola [2008-05-13 07:17]: > Agenda (Make sure there is someone assigned to each issue!): > * Merge issues > * possibility of another reviewer (truders) > * release timing (truders) > * Use GTree for dictionaries instead of GHashTable? (tilman - resolved?) Sorry, I forget to remove

Re: Thanks for a great app

2008-06-14 Thread Tilman Sauerbeck
Peter Stuge [2008-06-14 16:44]: > On Sat, Jun 14, 2008 at 12:01:17PM +0200, Thomas Orgis wrote: > > > Does it understand the lame stuff for skipping silence in the > > > beginning of the mp3 file? > > > > Yep. I spent quite some time on that one (the whole > > gapless-gimme-only-the-real-sound thi

result/value-split: naming issue in xmmsclient/collection.c

2008-10-25 Thread Tilman Sauerbeck
Hi, I'm currently porting the Ruby bindings to the new xmmsclient API (result/value split), and I'm wondering why e.g. xmmsc_coll_parse() has been renamed to xmmsv_coll_parse()? The same applies to the other public functions in xmmsclient/collection.c. Considering those functions live in the xmmscl

result/value split: where did xmmsc_result_disconnect() go?

2008-10-26 Thread Tilman Sauerbeck
Hi, in the result/value split trees, xmmsc_result_disconnect() was removed from xmmsclient. The implementation is still in result.c though. Why was that function removed from xmmsclient.h? AFAICS, it's still needed in the public API :) Regards, Tilman -- A: Because it messes up the order in whi

Re: result/value-split: naming issue in xmmsclient/collection.c

2008-10-28 Thread Tilman Sauerbeck
Anders Waldenborg [2008-10-28 10:27]: > Tilman Sauerbeck wrote: >> Hi, >> I'm currently porting the Ruby bindings to the new xmmsclient API >> (result/value split), and I'm wondering why e.g. >> xmmsc_coll_parse() has been renamed to xmmsv_coll_parse()? &g

Re: FOSDEM 09.

2008-11-09 Thread Tilman Sauerbeck
Tobias Rundström [2008-11-09 12:30]: > How many people are interested of going to FOSDEM this year? \o/ > How many of you would be comfortable doing some kind of > presentation? ENOTHINGTOPRESENT, I think. Regards, Tilman -- A: Because it messes up the order in which people normally read tex

Re: [PATCH] BUG(2053): avcodec broken with newer libavcodec/ffmpeg

2008-11-09 Thread Tilman Sauerbeck
Anthony Garcia [2008-11-08 18:51]: > If libavcodec version is 52.0.0 or greater, AVCodecContext no longer > declares bits_per_coded_sample and bits_per_raw_sample and removes > bits_per_sample. > > avcodec_decode_audio was removed as well, being deprecated for almost > two years > --- > src/plugi

Re: [PATCH] HTML plugin fixed (rewritten?)

2008-11-10 Thread Tilman Sauerbeck
Anthony Garcia [2008-11-09 23:39]: > -static gchar * > -parse_tag (const gchar *tag, const gchar *plspath) > +static gchar *parse_tag (const gchar *tag, const gchar *plspath) Please leave those two lines as they were. Regards, Tilman -- A: Because it messes up the order in which people normally

Re: Non default librarie paths etc

2008-11-14 Thread Tilman Sauerbeck
Uli Franke [2008-11-14 16:13]: > [...] > I'm on debian etch and it's really hard to get the required dependencies > resolved without breaking my current system. I built a copy of > glib-2.18.2 and I thought that there is perhaps a way to tell waf about > it... I thought we were conservative about

Re: Request for waf branch testing

2008-12-09 Thread Tilman Sauerbeck
Daniel Chokola [2008-12-09 15:14]: > Daniel Chokola wrote: >> Daniel Svensson wrote: >>> Everyone should try out my waf branch. It contains the upgrade from >>> 1.2.somethingunknown to latest 1.5.1+bugfixes. >> >> 1) General gripe: the configuration output is very inconsistent. Not >> all lines ar

xmmsc_result_disconnect() is broken

2008-12-14 Thread Tilman Sauerbeck
Hi, in xmms2-devel.git, xmmsc_result_disconnect() is broken. In the old days (ie, before we had xmmsv), it used to work like this: 1.) User runs: my_result = xmmsc_signal_foo(); 2.) Eventually, the callback is hit and the user runs: my_result = xmmsc_result_restart(); Now, my_resul

Re: xmmsc_result_disconnect() is broken

2008-12-14 Thread Tilman Sauerbeck
Tilman Sauerbeck [2008-12-14 12:23]: > How do we fix this? I had the idea of sticking another xmmsc_result_t * > in the xmmsc_result_St struct that would always point to the latest > restarted signal. That way, xmmsc_result_disconnect() could look like > this: > [...] Sebastien ha

Being able to cancel client method calls

2008-12-14 Thread Tilman Sauerbeck
Hi, I'm trying to fix bug #846 (http://bugs.xmms2.xmms.se/view.php?id=846). The easy part would be to cancel calls which haven't been processed by the server yet, but that are still waiting in line. So, my idea is to put incoming method calls in a queue and process them one by one. If at a later p

Re: FOSDEM 09!

2008-12-16 Thread Tilman Sauerbeck
Tobias Rundström [2008-12-16 18:15]: > Who is joining us at FOSDEM 09? I need to start make preparations for I'll be there :) Regards, Tilman -- A: Because it messes up the order in which people normally read text. Q: Why is top-posting such a bad thing? A: Top-posting. Q: What is the most anno

Re: Being able to cancel client method calls

2008-12-18 Thread Tilman Sauerbeck
Tilman Sauerbeck [2008-12-14 17:30]: > I'm trying to fix bug #846 (http://bugs.xmms2.xmms.se/view.php?id=846). > The easy part would be to cancel calls which haven't been processed by > the server yet, but that are still waiting in line. Done: http://git.xmms.se/?p=xmms2-tilm

Re: Being able to cancel client method calls

2008-12-18 Thread Tilman Sauerbeck
Anders Waldenborg [2008-12-18 11:45]: > Tilman Sauerbeck wrote: >> Tilman Sauerbeck [2008-12-14 17:30]: >>> I'm trying to fix bug #846 (http://bugs.xmms2.xmms.se/view.php?id=846). >>> The easy part would be to cancel calls which haven't been processed by &

Re: IPC symmetry and simplification

2008-12-28 Thread Tilman Sauerbeck
Sébastien Cevey [2008-12-28 17:59]: > > I'd be happy to hack on a simpler IPC layer right now, but I'm > > thinking it would fit best with genipc. All the xmmsv > > creation/packing/unpacking/unreffing could be automated by genipc's > > awesomeness. > > GenIPC has been vaporware so far. As long

Some IPC stuff and patches

2008-12-28 Thread Tilman Sauerbeck
Hi, while working on genipc, I've come across a few funny things wrt our IPC implementation: 1.) The list of signals in xmmsc_idnumbers.h has entries that aren't used anymore. This isn't terribly funny, but still: http://git.xmms.se/?p=xmms2-tilman.git;a=commitdiff;h=ae16ff1d0cc6e4a3b6aaa

Re: Short summary from FOSDEM

2009-02-10 Thread Tilman Sauerbeck
Daniel Chokola [2009-02-09 21:46]: Hi, your MUA is broken. >> Currently I am at FOSDEM in brussels together with a bunch of XMMS2 >> developers. I wanted to give you a quick summary of the interesting >> discussions we had yesterday in the Hotel Lobby. This is the second >> year we had this littl

Re: Fwd: Summer of Code 2009

2009-03-06 Thread Tilman Sauerbeck
Sebastien Cevey [2009-03-04 12:49]: Hi guys, >> [...] >> Purposeful omissions: >> * GenIPC - it's being done anyway, right? > > Yaeah, I think tilman is almost done? I still haven't heard back from Anders. Anyway, I'll be offended if GenIPC becomes a SoC project again :P Regards, Tilman -- A:

XMMS2-Scrobbler release?

2009-05-09 Thread Tilman Sauerbeck
Hi, I'd like to release XMMS2-Scrobbler 0.3.0 soon since currently there's no release that will work with DrMattDestruction. Please give the master branch a try and let me know if you if you find any issues that need to be fixed before a release is made. Thanks, Tilman -- A: Because it messes u

Re: XMMS2-Scrobbler release?

2009-05-10 Thread Tilman Sauerbeck
Anthony Garcia [2009-05-09 17:59]: > On 21:34 2009-05-09 +0200, Tilman Sauerbeck wrote: > > Hi, > > I'd like to release XMMS2-Scrobbler 0.3.0 soon since currently there's > > no release that will work with DrMattDestruction. > > > > Please give the ma

Re: Interesting trees

2009-07-20 Thread Tilman Sauerbeck
Anders Waldenborg [2009-07-13 13:08]: > -- > tilman/genipc has 27 changes not in devel. 26 of them are real, 3% > pollution. Lags 8 changes, but merges cleanly > > Can it generate serverside? IMO this is the most important part, as it > en

Re: Interesting trees week 31

2009-07-27 Thread Tilman Sauerbeck
Anders Waldenborg [2009-07-27 18:53]: > New stuff: > * tilman/genipc has 29 changes not in devel. All are real! > Now generates some serverside code. Cool. Yes, it even seems to work. Just pushed a crappy hack that makes things build, too. > Any ideas on how to do signals/broadcasts?

PLaylist IPC weirdness

2009-07-27 Thread Tilman Sauerbeck
Hi, what's up with this? src/xmms/playlist.c, line ~285 xmms_ipc_broadcast_register (XMMS_OBJECT (ret), XMMS_IPC_SIGNAL_PLAYLIST_CHANGED); xmms_ipc_broadcast_register (XMMS_OBJECT (ret), XMMS_IPC_SIGNAL_PLAYLIST_CURRENT_POS); xmms_ipc_

Re: Interesting trees week 31

2009-07-28 Thread Tilman Sauerbeck
Anders Waldenborg [2009-07-27 21:52]: > Tilman Sauerbeck wrote: > >> Any ideas on how to do signals/broadcasts? > > > >Not yet, that one's next. > > I had some idea that each ipc exported object created a struct like this: > > typedef struct {

Re: Interesting trees week 31

2009-08-01 Thread Tilman Sauerbeck
Tilman Sauerbeck [2009-07-28 19:07]: > Anders Waldenborg [2009-07-27 21:52]: > > Tilman Sauerbeck wrote: > > >> Any ideas on how to do signals/broadcasts? > > > > > >Not yet, that one's next. > > > > I had some idea that each ipc expo

Re: Interesting trees week 32

2009-08-04 Thread Tilman Sauerbeck
Anders Waldenborg [2009-08-03 23:05]: > Merged: > [...] > * Small IPC stuff (from tilman/genipc) Thanks. > New stuff: > * tilman/genipc has 22 changes not in devel. >I see some renaming that is interesting. > eg: xmms_playlist_client_add_idlist-> ..._add_id_list > Why? My first guess

Re: Interesting trees week 32

2009-08-05 Thread Tilman Sauerbeck
Anders Waldenborg [2009-08-04 22:28]: > Tilman Sauerbeck wrote: > > >When I wrote the XML file, I tweaked the method names here and there, > >eg properly camel-casing _add_idlist as _add_id_list instead. > >I can undo those tweaks and copy the names from the clientlib thoug

RFC: IPC method renaming

2009-08-09 Thread Tilman Sauerbeck
Hi, like we discussed earlier this week, I'd like to do some IPC method renaming in preparation of genipc-ifying the world. I'll push these to the master branch of my repository. The first one is f16eae39. http://git.xmms.se/?p=xmms2-tilman.git;a=commit;h=f16eae391d8e9595c43013169c7af8e9431fecb4

Re: RFC: IPC method renaming

2009-08-12 Thread Tilman Sauerbeck
e.mas...@hccnet.nl [2009-08-09 17:52]: > Op Zo, 9 augustus, 2009 11:53 am schreef Tilman Sauerbeck: > > like we discussed earlier this week, I'd like to do some IPC method > > renaming in preparation of genipc-ifying the world. I'll push these to the > > master branc

Re: RFC: IPC method renaming

2009-08-12 Thread Tilman Sauerbeck
Anders Waldenborg [2009-08-10 22:17]: > Tilman Sauerbeck wrote: > >Let me know what you think. > > Looking good. Thats it? No, there's probably more to come. I didn't feel like doing all the stupid grunt work on Sunday :P > The "

Re: Interesting trees week 35

2009-08-26 Thread Tilman Sauerbeck
Anders Waldenborg [2009-08-24 21:21]: > * tilman/master >We are going for xmmsc_config_set_value instead of xmmsc_config_set? Did we discuss the possibility of using xmmsc_config_set instead? I don't remember. I'd rather get the current stuff merged tbh :D Regards, Tilman -- A: Because it

Re: XMMS2-Con 2010

2009-09-09 Thread Tilman Sauerbeck
Tobias Rundström [2009-09-09 13:22]: Hi, > Usually we meet up at the annual FOSDEM in Belgium for a small XMMS2-Con > type event. This year FOSDEM collides with another event that both me and > Daniel (nano) Svensson have to attend. After some discussions with my boss > (Emil for you who meet him

Re: RFC: IPC method renaming

2009-09-11 Thread Tilman Sauerbeck
Tilman Sauerbeck [2009-08-09 11:53]: > like we discussed earlier this week, I'd like to do some IPC method > renaming in preparation of genipc-ifying the world. Some more points. Here's a list of current xmmsc_* functions and their proposed replacements. Let me know whether the r

Re: [PATCH] Add ModPlug config options

2009-09-13 Thread Tilman Sauerbeck
Adam Nielsen [2009-09-13 16:17]: Hi, > +static void > +xmms_modplug_config_changed (xmms_object_t *obj, xmmsv_t *_value, gpointer > udata) > +{ > + xmms_modplug_data_t *data = udata; > + const gchar *name; > + const gchar *value; > + gint intvalue; > + > + name = xmms_config_

Re: [PATCH] Add ModPlug config options

2009-09-14 Thread Tilman Sauerbeck
Adam Nielsen [2009-09-13 19:16]: > >> + if (!g_ascii_strcasecmp (name, "modplug.freq")) { > >> + data->settings.mFrequency = atoi(value); > > > > Please use xmms_config_property_get_int() instead of _get_string > > and converting it yourself. > > Oh sorry, I just copied it from the repl

Re: RFC: IPC method renaming

2009-09-14 Thread Tilman Sauerbeck
s really well. However, in other languages these sometimes feel odd. I was trying to find names that fit both C and OOP languages well. > Tilman Sauerbeck wrote: > >* do we prefer xmmsc_playlist_set_next() over xmmsc_playlist_set_pos()? > > Leaning towards "next&q

Re: RFC: IPC method renaming

2009-09-14 Thread Tilman Sauerbeck
Tilman Sauerbeck [2009-09-14 14:08]: > Anders Waldenborg [2009-09-14 12:35]: > > Maybe I could be a good idea to: > > > > xmmsc_playback_seek_ms (conn, amount, whence) > > xmmsc_playback_seek_samples (conn, amount, whence) > > Let's do it like this, /me l

Re: Interesting trees week 38

2009-09-22 Thread Tilman Sauerbeck
Anders Waldenborg [2009-09-21 21:34]: > Thomas Frauendorfer wrote: > >To get it into waf it might be necessary to license it under the BSD > >license waf uses. To do that, the authors of that code would have to > >agree. > >According to 'git blame' nano wrote that tool, but looking at the > >commi

Re: Ruby bindings documentation

2009-09-28 Thread Tilman Sauerbeck
Tenno Seremel [2009-09-28 11:48]: > Is there any documentation on Ruby bindings for 0.6DrMattDestruction? > I've found only http://doxygen.xmms2.xmms.se/clientlib/stable/xmmsclient-ruby/ > and it appears to me there was some changes since then. > Last update is stated as Wed May 14 16:54:30 -0400 2

Re: Ruby bindings documentation

2009-09-30 Thread Tilman Sauerbeck
Anders Waldenborg [2009-09-28 18:48]: > Could we add a script to doc/tools for generating them, and maybe it > would be easier to automate it? I wanted to do something like that and wondered how to realize it. The first thought I had involved waf, so I went shopping instead :) > It would be nic

Re: GenIPC comments

2009-09-30 Thread Tilman Sauerbeck
Tobias Rundström [2009-09-29 07:20]: > As a experiment I have started to port the Qt4 bindings to GenIPC. > First of all, awesome. This really removes all the sucky part of doing > bindings! I think Tilman have done a great job with GenIPC so far, the > API is very simple to work with and most fun

Re: Interesting trees week 42

2009-10-13 Thread Tilman Sauerbeck
Anders Waldenborg [2009-10-12 22:55]: > New/updated: i can has review/comments, too? I have stuff in master I want merged. Afterwards I believe the larger part of commits in my genipc branch can go in (server side). Regards, Tilman -- A: Because it messes up the order in which people normally

Re: GenIPC comments

2009-10-17 Thread Tilman Sauerbeck
Henrik Gustafsson [2009-10-15 23:55]: > > On Oct 15, 2009, at 11:45 PM, Henrik Gustafsson wrote: > > >I think the most backwards compatible solution to do it like with > >the signal/broadcast commands, adding -tags to the methods > >and objects. Of course it's more to maintain for each > >object/

Re: GenIPC comments

2009-10-17 Thread Tilman Sauerbeck
Henrik Gustafsson [2009-10-15 23:45]: Hi Henrik, > [...] > I read Tobias' suggestion on using a hash, which is interesting, but > considering that you're only able to use 32+32 bits (for H(object) > || H(method)) or 64 bits (for H(object || method)) I think the extra > code to deal with potentia

Re: GenIPC comments

2009-10-18 Thread Tilman Sauerbeck
Henrik Gustafsson [2009-10-17 12:16]: > > On Oct 17, 2009, at 9:16 AM, Tilman Sauerbeck wrote: > > >Henrik Gustafsson [2009-10-15 23:45]: > > > >>the signal/broadcast commands, adding -tags to the methods and > >>objects. Of course it's more to maint

Re: GenIPC comments

2009-10-18 Thread Tilman Sauerbeck
Henrik Gustafsson [2009-10-17 11:29]: > > On Oct 17, 2009, at 9:04 AM, Tilman Sauerbeck wrote: > > >Henrik Gustafsson [2009-10-15 23:55]: > >> > >>On Oct 15, 2009, at 11:45 PM, Henrik Gustafsson wrote: > >> > >>>I think the most backwards

Re: Interesting trees week 43

2009-10-20 Thread Tilman Sauerbeck
Anders Waldenborg [2009-10-19 23:00]: Hi, > * tilman/master >Not really like that seek rename breaks stuff. >I'll see if I can whip up a intermediate step >you could rebase onto. I might just have got rafl to fix the Perl part. Fingers crossed. >As for the list plugins thing, ca

Re: Interesting trees week 43

2009-10-20 Thread Tilman Sauerbeck
Anders Waldenborg [2009-10-20 21:20]: > Tilman Sauerbeck wrote: > >>* tilman/master > >> Not really like that seek rename breaks stuff. > >> I'll see if I can whip up a intermediate step > >> you could rebase onto. > > > >I might

Re: Interesting trees week 43

2009-10-25 Thread Tilman Sauerbeck
Anders Waldenborg [2009-10-21 09:33]: > Tilman Sauerbeck wrote: > >I don't get it. You want me to not break the API of Python/Ruby/C++? > [...] > >That can be done without that intermediate step, too. What do we gain by > >this change? > > The idea was that wi

Re: Interesting trees week 43

2009-10-25 Thread Tilman Sauerbeck
Anders Waldenborg [2009-10-20 21:20]: > Tilman Sauerbeck wrote: > >> As for the list plugins thing, can't remember what we > >> said about the "main" object, we have "xmmsc_main_stats" > >> > >> ACTION: HAS-UNANSWERED-QUOSTIONS

Re: Interesting trees week 44

2009-10-27 Thread Tilman Sauerbeck
Anders Waldenborg [2009-10-27 13:34]: > New/Updated: > * tilman/master > collparser thing: >comment in bt says it still fails? >can we add the testcase to the testsuite? > >ACTION: HAS-UNANSWERED-QUOSTIONS Sebastien's comment in mantis is outdated. He told me on IRC that he was link

Re: Song change notify

2009-11-08 Thread Tilman Sauerbeck
Dan Chokola [2009-11-08 23:37]: > Tenno Seremel wrote: > >> Don't you want res.value? > > > > It says "undefined method `value' for 2:Fixnum (NoMethodError)" then. > > Maybe bindings took care of that. > > I haven't actually checked (lazy), but it sounds like our Ruby tutorial > is behind xmms2-d

Re: Song change notify

2009-11-09 Thread Tilman Sauerbeck
Tenno Seremel [2009-11-09 09:48]: > Thanks, guys :} FYI, I updated xmms2-tutorial accordingly. Only about 11 months late! ;] Regards, Tilman -- A: Because it messes up the order in which people normally read text. Q: Why is top-posting such a bad thing? A: Top-posting. Q: What is the most annoy

Re: Interesting trees week 46

2009-11-12 Thread Tilman Sauerbeck
Anders Waldenborg [2009-11-12 14:09]: > ** -Wwrite-strings (from tilman/master) > Ok, gives LOOOTS of warnings in pyrex generated code, > maybe we should disable that warning there. Welcome to my world ;) I'll look into kicking it off the CFLAGS in python/. Regards, Tilman -- A: Because

Re: Interesting trees week 46

2009-11-12 Thread Tilman Sauerbeck
Anders Waldenborg [2009-11-12 14:28]: > Anders Waldenborg wrote: > >* New/Updated > > Forgot: > > ** tilman/master > "Please review: All IPC method call arguments >are tagged (XMMSV_TYPE_*) now." > >I think this is great! Looks ok at a quick glance, \o/ >but havn't tested it or l

Re: Interesting trees week 46

2009-11-13 Thread Tilman Sauerbeck
Anders Waldenborg [2009-11-13 11:31]: > Tilman Sauerbeck wrote: > >I'd appreciate if anyone who's running xmms2 from devel.git could give > >that patch a try and report any new errors. I'm pretty sure all > >supported arguments are properly serialized (incl col

Re: Interesting trees week 46

2009-11-15 Thread Tilman Sauerbeck
Tilman Sauerbeck [2009-11-12 22:06]: > Anders Waldenborg [2009-11-12 14:09]: > > ** -Wwrite-strings (from tilman/master) > > Ok, gives LOOOTS of warnings in pyrex generated code, > > maybe we should disable that warning there. > > Welcome to my world ;) > I&#

Re: Interesting trees week 46

2009-11-16 Thread Tilman Sauerbeck
Anders Waldenborg [2009-11-16 13:12]: > Daniel Svensson wrote: > >> def build(bld): > >>+bld.env["CCFLAGS"].remove('-Wwrite-strings') > >>obj = bld.new_task_gen('cc', 'shlib', 'pyext') > >> > >>but then later compile runs wouldn't use -Wwrite-strings either. > >>Does anyone know whether we

Re: Interesting trees week 46

2009-11-16 Thread Tilman Sauerbeck
Anders Waldenborg [2009-11-12 14:09]: > * Merged Can you push to xmms2-devel.git, too? Thanks, Tilman -- A: Because it messes up the order in which people normally read text. Q: Why is top-posting such a bad thing? A: Top-posting. Q: What is the most annoying thing on usenet and in e-mail?

Re: Interesting trees week 46

2009-11-16 Thread Tilman Sauerbeck
Anders Waldenborg [2009-11-16 21:48]: > Tilman Sauerbeck wrote: > >Thought about using -Wno-write-strings, too. > >Can we assume that if -Wwrite-strings is accepted by our compiler that > >also -Wno-write-strings will be accepted? I'm not so sure. > > At le

Re: Interesting trees week 46

2009-11-17 Thread Tilman Sauerbeck
Tilman Sauerbeck [2009-11-17 07:31]: > Anders Waldenborg [2009-11-16 21:48]: > > Tilman Sauerbeck wrote: > > > >It seems it's a bug in pyrex. E.g. on my system, > > >/usr/lib/python2.6/site-packages/Pyrex/Compilers/Nodes.py contains the > > >definiti

Re: Interesting trees week 46

2009-11-22 Thread Tilman Sauerbeck
Tilman Sauerbeck [2009-11-12 22:09]: > Anders Waldenborg [2009-11-12 14:28]: > > Anders Waldenborg wrote: > > >* New/Updated > > > > Forgot: > > > > ** tilman/master > > "Please review: All IPC method call arguments > >are ta

Re: Interesting trees week 46

2009-11-23 Thread Tilman Sauerbeck
Tilman Sauerbeck [2009-11-22 12:39]: > Tilman Sauerbeck [2009-11-12 22:09]: > > Anders Waldenborg [2009-11-12 14:28]: > > > Anders Waldenborg wrote: > > > >* New/Updated > > > > > > Forgot: > > > > > > ** tilman/master > &g

[ANN] XMMS2-Scrobbler 0.3.9 available

2009-12-23 Thread Tilman Sauerbeck
Hi, version 0.3.9 of XMMS2-Scrobbler is available now. This pre-release finally supports "multi-scrobbling", i.e. submitting your tracks to more than one AudioScrobbler server. Feel free to think of this as support for libre.fm. This new feature requires you to modify your XMMS2-Scrobbler config f

Re: selfcontained xmmsv serialization (was: Re: XMMS2Con 2010)

2009-12-30 Thread Tilman Sauerbeck
Anders Waldenborg [2009-11-12 14:23]: > Tilman Sauerbeck wrote: > >>* selfcontained xmmsv serialization > > > >What's that? > > Basically: > > binval = xmmsv_serialize(val); > xmmsv_get_bin(binval, &data, &len); > write(fd, data, len); &

[ANN] XMMS2-Scrobbler 0.4.0 released

2009-12-30 Thread Tilman Sauerbeck
Hi, after last week's pre-release, here's XMMS2-Scrobbler 0.4.0 final. The tarball is available at ftp://ftp.code-monkey.de/pub/xmms2-scrobbler/xmms2-scrobbler-0.4.0.tar.gz Regards, Tilman -- A: Because it messes up the order in which people normally read text. Q: Why is top-posting such a bad

Re: Disabling the nulstripper xform

2009-12-31 Thread Tilman Sauerbeck
Adam Nielsen [2009-12-31 15:10]: > >Is there a way the nulstripper plugin can be disabled for certain file > >types? > > I just discovered plugin priorities and tried changing the priority > of my own so that it comes before the nulstripper plugin, but this > doesn't seem to work. I was about to

Re: Disabling the nulstripper xform

2009-12-31 Thread Tilman Sauerbeck
Juho Vähä-Herttua [2009-12-31 12:58]: > On 31.12.2009, at 12.51, Adam Nielsen wrote: > >>> DEBUG: ../src/xmms/xform.c:1277: Plugin 'adplug' matched (priority 20) > >> > >> Can you post the magic specs you're using in the adplug plugin? > >> ie all the xmms_magic_add() calls. Maybe your magic specs

Re: Disabling the nulstripper xform

2009-12-31 Thread Tilman Sauerbeck
Adam Nielsen [2009-12-31 21:07]: > >>No magic specs per say: > >> > >>It's done this way because AdPlug can only supply a list of supported > >>file extensions (and there's at least 20 of them.) > > > >I don't think anyone has thought about having an extension only plugin > >using files with null b

Re: [ruby] Getting metadata / external playstate changes

2010-01-05 Thread Tilman Sauerbeck
Tenno Seremel [2010-01-04 13:08]: Hi, > Now I want to get some metadata for a currently playing song (for now). > I'm reading tutorial 3 and there are the following lines there: > > info = xmms.medialib_get_info(id).wait.value > info.each_pair { |src, key, val| puts "[#{src}] #{key} = #{val}" }

Re: Some cppcheck patches for xmms2-devel tree (fixes various resource leaks)

2010-01-12 Thread Tilman Sauerbeck
Sergei Trofimovich [2010-01-12 00:44]: Hi, > OTHED: sid: cppcheck: [./src/plugins/sid/sidplay_wrapper.cpp:184]: > (possible error) Memory leak: rs > > Fixed ReSIDBuilder object leak in error paths. > Thanks to cppcheck. I think OTHER: Fixed ReSIDBuilder object leak in error pat

Re: XMMS2-Con 2010 - Program

2010-01-12 Thread Tilman Sauerbeck
Daniel Svensson [2010-01-12 12:17]: > 2010/1/12 Tobias Rundström : > > Sorry for being quiet about the Con lately. But I have some news. > > > > I have put up a suggestion to a schedule here: > > http://wiki.xmms2.xmms.se/wiki/XMMS2Con2010#Proposed_schedule please > > check it and give me comments.

Re: Interesting trees week 3

2010-01-21 Thread Tilman Sauerbeck
Anders Waldenborg [2010-01-21 14:45]: Hi, > First, I really want to get a release out really soon. Anyone know > about any showstopping bugs? I don't know of any. Haven't done much testing lately though ;) > Updated/new: > > caotic/master: > [...] >The seek things are good. There was som

Re: Interesting trees week 3

2010-01-21 Thread Tilman Sauerbeck
Anders Waldenborg [2010-01-21 21:22]: > Tilman Sauerbeck wrote: > >> The seek things are good. There was some discussion > >> about seek changes (nano!) that I'm not sure that > >> they are resolved. > > > >They aren't resolved

Re: Interesting trees week 3

2010-01-24 Thread Tilman Sauerbeck
Adam Nielsen [2010-01-24 23:07]: > >>First, I really want to get a release out really soon. Anyone know > >>about any showstopping bugs? > > > >Any chance to get the patch for daap password support in? > > > >http://bugs.xmms2.xmms.se/view.php?id=1065 > > I wouldn't mind getting my ModPlug patch f

Re: Interesting trees week 3

2010-01-24 Thread Tilman Sauerbeck
Michael Sperber [2010-01-24 11:24]: > > Anders Waldenborg writes: > > > First, I really want to get a release out really soon. Anyone know > > about any showstopping bugs? > > > Any chance to get the patch for daap password support in? > > http://bugs.xmms2.xmms.se/view.php?id=1065 I was hop

Re: Missing events, mainloop and tutorial

2010-02-03 Thread Tilman Sauerbeck
Tenno Seremel [2010-02-03 01:02]: > >You have to return true from the callback if you want it to be called > >again. > > This is it! That why I had weird behavoir sometimes before (ruby returns > the last executed command's result). I didn't thought of it... Would you like to explain this behavio

Re: Missing events, mainloop and tutorial

2010-02-03 Thread Tilman Sauerbeck
Tenno Seremel [2010-02-03 21:03]: > >Would you like to explain this behaviour in the tutorials and submit a > >patch? > > I've written separate tutorial (attached) based on tutorial 5. > I think it's better to have both so it's easier to understand. > > I can try to merge them together if you don

Re: Missing events, mainloop and tutorial

2010-02-06 Thread Tilman Sauerbeck
Tenno Seremel [2010-02-03 21:49]: > >Your attachment didn't get through. Can you upload it somewhere? > >Attaching it with MIME type text/plain might also help. > > Is pastebin ok? http://pastebin.ca/1786116 > > >The notifier's return value is only ignored for plain results. > > They are returne

Re: Missing events, mainloop and tutorial

2010-02-06 Thread Tilman Sauerbeck
Tenno Seremel [2010-02-06 20:36]: > >I don't understand the question. The caller ignores the return value. > > Here is an example: > [...] > > Try to run it. You'll get > > test.rb:29:in `run': can't convert Array into Integer (TypeError) > from test.rb:29 > > error message. > > That is

Re: XMMS2-Con 2010 - Program

2010-02-16 Thread Tilman Sauerbeck
Peter Stuge [2010-02-16 12:57]: > Sebastian Noack wrote: > > sightseeing in the area of Copenhagen and Malmö on Thursday > > Maybe a small road trip? Will anyone else have arrived by then? I'll arrive at CPH at ~14:00 on Friday so I should be in Malmo some time before 15:00. Regards, Tilman --

Re: Getting DrN ready for Ubuntu Lucid

2010-02-22 Thread Tilman Sauerbeck
Daniel Svensson [2010-02-22 10:42]: > After the release last friday there are some clients that need to be > updated before DrNo can enter Ubuntu Lucid. > > [...] > - xmms2-scrobbler > [..] > Some of these clients might already work with DrN, and I might have > missed some clients, so if you're a

Re: Interesting trees week 3

2010-02-27 Thread Tilman Sauerbeck
Michael Sperber [2010-02-27 11:59]: > > Michael Sperber writes: > > > Tilman Sauerbeck writes: > > > >> Michael Sperber [2010-01-24 11:24]: > >>> > >>> Anders Waldenborg writes: > >>> > >>> > First, I really

Re: [ruby] config values - key type inconsistency

2010-03-31 Thread Tilman Sauerbeck
Sebastien Cevey [2010-03-31 18:30]: > On 30 Mar 2010, at 00:19, Tenno Seremel wrote: > > >Me again. It's not that something is not working this time :) > > > >It's just (for ruby bindings at least) broadcast_config_value_changed > >returns key of class Symbol, while config_get_value / config_set_v

Re: [ruby] config values - key type inconsistency

2010-03-31 Thread Tilman Sauerbeck
Tenno Seremel [2010-04-01 00:23]: > >It's lines 431 to 445 in rb_result.c: > > Umm... well, should I file a bug now as Sebastien suggested > so it's not forgotten or not*? > > * as in 'too late already fixed' :) > > // I'm not terribly good with C (studied in university but char * still > drive

Re: Interesting trees week 13

2010-04-26 Thread Tilman Sauerbeck
Anders Waldenborg [2010-03-29 13:13]: > tilman/master has 8 changes not in devel. All are real! > > [...] > OTHER: Switched IPC from IDs to strings. > OTHER: Removed IDs from IPC classes since they aren't used anymore. > >This is done and works fine, right? Probably. Didn't test it in we

Re: Could somebody apply the patch for DAAP password support?

2010-05-08 Thread Tilman Sauerbeck
Michael Sperber [2010-05-08 12:04]: Hi, > ... any chance that this could be applied in the foreseeable future? > > http://bugs.xmms2.xmms.se/print_bug_page.php?bug_id=1065 > > It's gone through numerous rounds of review (by a very patient Adam > Nielsen), and the patch attached to the above bug

Re: Problem with Xmms::MainLoop

2010-05-26 Thread Tilman Sauerbeck
Justin Browne [2010-05-26 23:34]: Hi, > I realized that in Xmms::MainLoop::waitForData() the listener was not being > removed from the listener list after it was handled because my program was > hanging at line 96 of mainloop.cpp. > > I applied the first patch (attached), and it solved my probl

Re: Removing result callbacks

2010-06-24 Thread Tilman Sauerbeck
Uli Franke [2010-06-22 20:56]: Hi, > given the case a caller sets up an asychronous xmms command with a certain > object as user data. While the xmms tries to generate a result, the user data > becomes invalid, because an urgent operation needs to free the memory or the > object and the result of

Re: sample rates of wave files

2010-10-27 Thread Tilman Sauerbeck
Daniel Svensson [2010-10-26 13:41]: > On Mon, Oct 25, 2010 at 3:48 PM, Samuel Gaehwiler > wrote: > > XMMS2 only accepts *.wav files with sample rates 8000, 11025, 22050 and > > 44100. Is there a reason why other (especially higher) sample rates are not > > allowed? > > - The only limit from the