Re: [E-devel] [Patch] Urgent review needed: sound support for Eina_List

2011-11-04 Thread Hugo Camboulive
*Modular output architecture (ALSA and OSS right now, though ALSA is a little hacky) I haven't read (could not, like everyone :P) the patch, but aren't you reinventing portaudio for that part? It already supports ALSA, OSS, OSX and Windows. Both synchronous (ie write audio to fd) and

Re: [E-devel] [Patch] Urgent review needed: sound support for Eina_List

2011-11-04 Thread Hugo Camboulive
lalala can't hear you lalala On Fri, Nov 4, 2011 at 4:50 PM, Vincent Torri vto...@univ-evry.fr wrote: On Fri, 4 Nov 2011, Hugo Camboulive wrote: *Modular output architecture (ALSA and OSS right now, though ALSA is a little hacky) I haven't read (could not, like everyone :P) the patch

Re: [E-devel] header size...

2011-07-28 Thread Hugo Camboulive
Really you're worried about the approaching 20k lines of a header? Please have a look at the 37k lines of the default.edc... that baby is 1.1MB of raw text, and contains every possible elementary widget. (there's a little difference with the header though : this one is made of very few comments)

Re: [E-devel] Edje Text in box with dynamic hints

2011-07-23 Thread Hugo Camboulive
Well, how can you center two pieces of text as one then? It does not sound like a very extravagant request to me ^^ Could you force recalculating on a specific demand? On Sat, Jul 23, 2011 at 6:16 AM, Carsten Haitzler ras...@rasterman.comwrote: On Thu, 21 Jul 2011 14:58:53 +0200 Hugo Camboulive

Re: [E-devel] [PATCH] Emotion - crop video

2010-11-18 Thread Hugo Camboulive
the destination size. The advantage of this method is being generic (will work for any engine) On 11/18/10, Carsten Haitzler ras...@rasterman.com wrote: On Wed, 17 Nov 2010 13:22:39 -0200 Gustavo Sverzut Barbieri barbi...@profusion.mobi said: On Wed, Oct 6, 2010 at 9:18 AM, Hugo Camboulive hugo.camboul

Re: [E-devel] Problem with Edje signals order

2010-11-18 Thread Hugo Camboulive
Sverzut Barbieri barbi...@profusion.mobi wrote: Hi Hugo, Did you fix or solved this problem somehow? On Tue, Aug 10, 2010 at 5:37 AM, Hugo Camboulive hugo.camboul...@gmail.com wrote: Hi, I noticed a serious problem with Edje execution queue. I use signals to send messages down to subgroups

Re: [E-devel] [PATCH] Emotion - crop video

2010-11-18 Thread Hugo Camboulive
implementing a completely object agnostic way of cropping, enjoy yourself, it definitely see how it would be better. I just won't have time to do that ^^ On 11/18/10, Carsten Haitzler ras...@rasterman.com wrote: On Thu, 18 Nov 2010 10:28:29 +0100 Hugo Camboulive hugo.camboul...@gmail.com said

Re: [E-devel] libvlc is GPL

2010-10-19 Thread Hugo Camboulive
Hi, We use emotion with vlc here, and since libvlc is GPL we had to develop our own library (it basically forks a vlc process with shmem vout, and communicates with it through the command line interface (with a pipe)... no linking with vlc at all). We also modified the emotion plugin to use it

[E-devel] [PATCH] Emotion - crop video

2010-10-06 Thread Hugo Camboulive
even with our low power machines. Regards Hugo Camboulive commit bc58e3bfc736cd6f84144457d6726a6029d602d8 Author: Hugo Camboulive hugo.camboul...@zodiacaerospace.com Date: Tue May 11 09:11:24 2010 +0200 Add support for crop into emotion. (bug 750) diff --git a/src/lib/Emotion.h b/src/lib

Re: [E-devel] emotion smart callbacks

2010-09-14 Thread Hugo Camboulive
Evas callbacks for emotion : http://trac.enlightenment.org/e/browser/trunk/emotion/src/lib/emotion_smart.c 97 static const char SIG_FRAME_DECODE[] = frame_decode; 98 static const char SIG_POSITION_UPDATE[] = position_update; 99 static const char SIG_LENGTH_CHANGE[] =

Re: [E-devel] Improving commits and their messages

2010-09-10 Thread Hugo Camboulive
much more momentum (look at all the other big projects using git) Seriously, SVN is a pain, the workflow is prehistoric. A github mirror would be a blessing. (And I know it's not what you wanted to talk about, really sorry about it) Regards Hugo Camboulive On Thu, Sep 9, 2010 at 10:59 PM, Eduardo

Re: [E-devel] How can i display html text on Evas?

2010-08-05 Thread Hugo Camboulive
See here : http://trac.webkit.org/wiki/EFLWebKit On Tue, Aug 3, 2010 at 12:44 PM, Tom Hacohen tom.haco...@partner.samsung.com wrote: EWebkit or whatever it's name is, is what you are looking for. -- The Palm PDK

Re: [E-devel] [Patch] Edje - Sending signals to a box's item

2010-06-10 Thread Hugo Camboulive
at 5:49 PM, Hugo Camboulive hugo.camboul...@gmail.com wrote: I couldn't get this to work, and by looking at the code it did not seem to be implemented, so here's a patch that allows sending signals to a box's items. It's quite useful when you populate a box in edje through items

[E-devel] [Patch] Edje - Sending signals to a box's item

2010-05-18 Thread Hugo Camboulive
to work as far as I've tested. Regards Hugo Camboulive diff --git a/src/lib/edje_program.c b/src/lib/edje_program.c index 4004ad3..72cbf08 100644 --- a/src/lib/edje_program.c +++ b/src/lib/edje_program.c @@ -1035,8 +1035,8 @@ _edje_emit(Edje *ed, const char *sig, const char *src) for (i

[E-devel] [E-Devel] [Patch] Edje Message - add the callback recursively

2010-05-06 Thread Hugo Camboulive
Hi, When you send a message from an edje subgroup (part { type: GROUP ...}), the message callback isn't called because it tries to reach ed-message.func, which is only defined for the top edje part. This patches adds the callback and data to all the subgroups recursively. Regards Hugo

[E-devel] [PATCH] Evas/Edje : get a table element with its coordinates

2010-04-13 Thread Hugo Camboulive
Hi everyone Here are (my first!) two patches that add a function I use to access a table's child using the coordinates it was inserted with. evas_object_table_child_get(obj, col, row); and its edje counterpart edje_object_part_table_child_get(obj, part, col, row); Hugo Camboulive diff --git

Re: [E-devel] Evas opengl_x11 engine performance

2010-01-06 Thread Hugo Camboulive
for the help! Hugo On Wed, Jan 6, 2010 at 2:15 AM, Carsten Haitzler ras...@rasterman.com wrote: On Tue, 5 Jan 2010 19:10:11 +0100 Hugo Camboulive hugo.camboul...@gmail.com said: Hi, I'm having some serious performance problem with evas' opengl engine and an intel 945GM integrated chipset

[E-devel] Evas opengl_x11 engine performance

2010-01-05 Thread Hugo Camboulive
Hi, I'm having some serious performance problem with evas' opengl engine and an intel 945GM integrated chipset. Expedite takes about a minute to launch, and then runs at less than 1fps. It also throws Mesa errors (bad source-Index - the driver expects a value 14 and gets values of 14 and 15