**** BEGIN LOGGING AT Fri May 24 02:59:58 2013 May 24 04:57:48 morphis: ping May 24 05:01:58 pabs3: pong May 24 05:46:07 morphis: how is libsamsung-ipc going? May 24 05:46:37 pabs3: didn't had time for it yet May 24 05:46:56 ok. perhaps I should package a git snapshot May 24 09:54:15 . May 24 19:52:33 I met problem, I use gstreamer sdk to do a program which play raw h264 from network, but it works very slowly, althought there is much cpu reasource May 24 19:53:05 I hear that it cause by java and c switch, is there some method to solve it? May 24 20:16:34 ayaka, which resolution does the video have? May 24 20:18:13 heyho! May 24 20:18:13 ayaka, I used ffmpeg to decode h264 and it goes quite well, you may want to use it if gst gives you bad performance May 24 20:18:17 slyon, hi :) May 24 20:19:14 JaMa, do you know what disabled the g_ether.service (from systemd) in the current shr images? May 24 20:24:01 pespin, I think gst will use ffmpeg to decode May 24 20:24:45 in my resolution, I send raw h264 frame(encoded by DSP hardware), then I want to decode it in android May 24 20:25:27 could you give me your code which using ffmpeg May 24 20:29:30 slyon: current as latest staging from dylan? Don't know yet, because it works in my images May 24 20:30:38 JaMa, yes. It's the current staging image. May 24 20:31:36 JaMa, i guess i found the root cause: systemd moved from meta-systemd to oe-core. and your patch to have systemd-machine-units isn't included anymore, so we cant override this recipe in meta-smartphone May 24 20:33:13 ayaka, sorry I can't give you the code (not of my property), but I'm sure you'll find plenty of h264 decoding examples using ffmpeg using google. May 24 20:34:04 ayaka, actually you don't need much stuff, only 1 func to open the codec and configure it, and 1 func to decode a frame. May 24 20:34:26 it's done using libavcodec May 24 20:35:05 slyon: they should be installed by shr.conf:VIRTUAL-RUNTIME_init_manager = "systemd systemd-compat-units systemd-machine-units" May 24 20:35:56 hmm... well actually they are installed May 24 20:36:26 but on my gta04 i had to run "systemctl enable g_ether" to make usb-networking work on the next boot May 24 20:36:50 so they are installed, but not disabled May 24 20:36:54 s/disabled/enabled May 24 20:37:05 pespin, thank you May 24 20:37:24 slyon: can you check postinst of systemd-machine-units? May 24 20:38:22 could you recommand some project May 24 20:38:54 ayaka, np. Btw, you can use ffmpeg in android, it's not much of a trouble to compile it. May 24 20:39:36 ayaka, but if you can, compile it against different arch (ie, one with neon optimizations) and load one lib or the other depending on runtime arch May 24 20:40:03 I know that, but I don't have much experence using ffmpeg, I don't know its function May 24 20:40:19 JaMa, I can't find any postinst file in OE for systemd-machine-units... probably there isn't any May 24 20:41:00 maybe that's the problem? May 24 20:41:01 ayaka, easy example -> http://www.mail-archive.com/libav-user@mplayerhq.hu/msg03652.html May 24 20:41:13 there you have most of what you need May 24 20:43:00 I will that code to take part in a competition in 3 days. May 24 20:43:45 I am not sure how to combine it with android interface, I will refer gst example May 24 20:47:09 one thing I am not sure, shall I do network in C or java pespin ? May 24 20:47:53 I heard that if I do network in C, it will cause problem, I shall do it in java and java handle nal to C May 24 20:49:55 ayaka, I'd do it in C May 24 20:50:01 ayaka, no problem at all May 24 20:50:22 slyon: it should be generated by systemd.bbclass and that's probably the cause for it, thanks a lot for reporting it May 24 20:50:22 slyon: now I can reproduce it so I'll fix it shortly May 24 20:50:35 ayaka, just remember that if you create a thread from out of VM context (ie sing pthreads) you have to register the thread to the virtual machine or you'll have problems. May 24 20:50:45 slyon: btw have you seen any segfaults as dos reported? May 24 20:51:17 maybe they are armv4t specific, but I've tried with newer efl again and don't see them on either om-gta0[24] May 24 20:51:33 pespin, android part is not doing by me, I will tell him that. May 24 20:51:59 do you mean that the decode part should create a thread from out of VM context (ie sing pthreads) May 24 20:52:47 ayaka, no need to, but if you do create the thread once in your C code, remember you need to attach the thread to the VM May 24 20:54:56 sorry, I don't know that, I don't have android program experence May 24 20:56:52 JaMa, this could already be the fix for the systemd-machine-units: http://pastebin.com/g0NLb7xq (But I can't test it currenty.) May 24 20:57:27 JaMa, and yes. E17 crashes after bootup May 24 20:58:42 maybe you can try, and eventually include the patch May 24 21:12:51 slyon: systemd.bbclass was changed, I need to adapt systemd-machine-units.bb to generate .postinst (which does the same as your change) properly May 24 21:13:26 slyon: I'll merge my efl upgrade to shr/dylan and start another staging feed with it May 24 21:13:40 JaMa, ahh, this sounds good. thanks a lot! May 24 21:14:14 sorry I hadn't much time to test SHR on device lately May 24 21:14:39 I'm using images built from shr branches which are already a lot ahead of dylan May 24 21:15:10 and because I need to test changes in newest I don't reboot often to staging images :/ May 24 21:15:42 JaMa, no problem. i didn't have a lot of time to test either. May 24 21:16:10 It just annoyed me while i was preparing a SHR image for the LinuxTag, which takes place in Berlin currently. May 24 21:17:37 ah you should use 2012.07 for that May 24 21:20:03 you're right. 2012.07 is probably the better choice May 24 21:27:38 JaMa: thanks, that evas patch fixed segfaults May 24 21:28:56 dos1, ahh very nice :) usb-networking should be fixed soon as well, too May 24 21:34:34 usb networking works after opkg upgrade from 2012.07 :) May 24 21:34:55 but segfaulting enlightenment was making using phone a bit hard... ;) May 24 21:35:53 what's the name of new e17 theme? May 24 21:38:36 or, is there a matching elementary theme? May 24 21:39:07 it looks cool May 24 22:02:06 bye! May 24 22:20:19 Hi, where i can get kernel sources , patches and config used for latest build? May 24 23:36:19 JaMa: i've set up clean shr build tree, did only "bitbake evas" before, and now "bitbake fsogsmd" May 24 23:36:26 and it failed on do_configure with | No package 'mobile-broadband-provider-info' found May 25 01:54:44 morphis: btw, you might want to use this tool to make sure that you bump the libsamsung-ipc SONAME when the ABI changes: http://ispras.linuxbase.org/index.php/ABI_compliance_checker **** ENDING LOGGING AT Sat May 25 02:59:57 2013