summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2013-12-20Implement setting of audio/video channelgst-1.0Sebastian Dröge1-12/+16
2013-12-20Implement initial support for GstNavigation interfaceSebastian Dröge1-3/+91
2013-12-20Header cleanupSebastian Dröge6-91/+23
2013-12-20Remove some unused definesSebastian Dröge2-4/+0
2013-12-20Use GstAudioInfo to store the audio format informationSebastian Dröge6-5/+7
2013-12-20Store video format information in GstVideoInfo for the different video streamsSebastian Dröge3-29/+21
2013-12-20Add support for pixel-aspect-ratioSebastian Dröge1-0/+1
2013-12-20Use GstVideoInfo to store the format details inside the sinkSebastian Dröge2-22/+19
2013-12-19Remove unused GSignal from the sinkSebastian Dröge1-12/+0
2013-12-19Return GST_FLOW_FLUSHING when the sink is unlockedSebastian Dröge1-1/+1
2013-12-19Initial port of emotion to GStreamer 1.0Sebastian Dröge9-739/+237
Samsung hardware specific code is removed. This has to be implemented properly for GStreamer 1.0 later. 1.0 has features that allow to implement this without the application knowing anything about the specific hardware.
2013-12-19Add copy of the GStreamer 0.10 Emotion module to be ported to 1.0Sebastian Dröge6-0/+4201
2013-12-19Port ecore example to GStreamer 1.0Sebastian Dröge3-5/+26
Still falls back to GStreamer 0.10 automatically if 1.0 is not available
2013-12-18pkgbuild: avahi is now a dependency of EFL.HEADmasterCedric BAIL1-2/+2
2013-12-17getopt: add positional argument handling.Gustavo Sverzut Barbieri3-10/+376
positional arguments must appear at the end of the description array (after the last option) and should have a metavar set and not have shortname or longname. Simple, elegant and fit :-) There is a new function to parse the positional arguments, ecore_getopt_parse_positional() because we may want to not try to parse them in the case of a quit-option such as --help, --license, --copyright, --version or some user-defined action. This avoids us producing errors of missing positional arguments when printing help and adds some flexibility as well. This should make Tasn happy :-)
2013-12-17add great ecore_getopt example.Gustavo Sverzut Barbieri4-3/+349
should cover and explain getopt usage and serve as base for applications that want to use it (all efl should!)
2013-12-17getopt: fix line wrapping issues in help strings.Gustavo Sverzut Barbieri1-1/+13
2013-12-17ecore/ecore_x - show the window if the window should be visible.ChunEon Park1-2/+4
when the window alpha mode is changed, the x window is re-created. but if the window is going on the show state(not visible yet but waiting for visible from xserver) this window never be visible. so here it make the window visible also if the window is going on the visible state.
2013-12-17Ecore_Avahi: initial commit.Cedric BAIL13-0/+671
TODO: - Add tests, how ? - Integrate with Eo, needed ?
2013-12-16One ) too many.Iván Briano1-1/+1
2013-12-16Evas textblock: Fixed range_deletion bug with multiple visible formats.Tom Hacohen1-5/+0
This makes the tests added in 8bee8853ae1e38823ee0dbcac1643d23c3e34379 pass. Thanks to Youngbok Shin for reporting.
2013-12-16Evas test textblock: Added a test for a broken range_delete case.Youngbok Shin1-2/+2
This fixes bad integration by me (Tom) of Youngbok's patch in 42a06f24d8de13953fdceea02c51ad534bccd626.
2013-12-16emotion: fix Windows compilation.Cedric BAIL1-13/+16
2013-12-16emotion: revert to fast sed to use the right eina log domain.Cedric BAIL1-1/+1
2013-12-15bugfix: eldbus code generator struct members named "proxy" should not be ↵discomfitor1-1/+1
passed to eina_value_free. come on.
2013-12-15edje_edit - fix mem leak of src strbuf on print statusCarsten Haitzler (Rasterman)1-1/+3
though utterly minor - it's still a leak. fix CID 1039263
2013-12-15edje - edje_edit - don't access collection after it is freedCarsten Haitzler (Rasterman)1-1/+1
should fix CID 1137855
2013-12-15emotion - webcam - don't access after free and ensure it is not in listCarsten Haitzler (Rasterman)1-4/+1
this should fix CID 1137853 and CID 1137854
2013-12-15evas - fb engine - fix mem leak if ioctl fails on fb modeCarsten Haitzler (Rasterman)2-0/+2
this fixes CID 1137852
2013-12-15ecore-file - fix mem leak in ecore_file_app_exe_get() on restartCarsten Haitzler (Rasterman)1-7/+7
this actually fixes the issue. coverity did point it out but i fixed it incorrectly. since it was still there in the scan i now fixed it properly. fixes CID 1039279
2013-12-15evas - software-x11 - fill in unused struct members to avoid uninitializedCarsten Haitzler (Rasterman)1-0/+4
this shoudl fix CID 1039548 (missed other memmbers before) and if valgrind ever sees this now it won't complain either.
2013-12-14bugfix: make eldbus generated code not crash on every single generated eventdiscomfitor1-2/+2
this is pretty depressing to find after it's been in git for over a year
2013-12-14edje: adding Alias API into edje_edit moduleVorobiov Vitalii5-35/+209
Summary: This commit will add some API for working with aliases. There are four functions will be added: 1. edje_edit_group_aliases_get - this function will return the list of aliases of certain group. 2. edje_edit_group_is_alias - this function will check if the given group name is actually an alias. 3. edje_edit_group_aliased_get - return the main real group that is being aliased. 4. edje_edit_group_alias_add - add new alias name. Also the function "edje_edit_group_del" was modified because of wrong behaviour. Now if the given group is alias, it will successfully delete it, but if the given group is main group, it will also delete all it's aliases. This commit also modify EDJ file by adding new field for detecting if the group is alias or not. Reviewers: cedric, seoz, raster Reviewed By: raster CC: reutskiy.v.v, cedric Differential Revision: https://phab.enlightenment.org/D376
2013-12-14evas common - uninitialized use warning removeCarsten Haitzler (Rasterman)1-1/+1
2013-12-14edje: Fixing little misbehavior of edje_edit_state_rel_to_setVorobiov Vitalii1-1/+1
Summary: After making part relative to the whole interface (by giving NULL parameter) it was returning EINA_FALSE (not successfull). Reviewers: seoz, cedric, raster Reviewed By: raster CC: reutskiy.v.v, cedric Differential Revision: https://phab.enlightenment.org/D379
2013-12-13Evas textblock: Fixed deletion of ranges ending with visual formats.Tom Hacohen1-1/+1
This is a regression introduced in: 3f3ad67616d491c40e4c7c34d3927896f80b8caa
2013-12-13Evas textblock: Added more range_delete tests.Youngbok Shin1-0/+14
These tests check for a regression with deletion of ranges ending with visual formats. Thanks to Youngbok Shin for sending me the tests.
2013-12-13ecore_file - finding exe path - if HOME is not set a leak could happenCarsten Haitzler (Rasterman)1-2/+6
this fixes CID 1039279
2013-12-13eina - eina_file - fix leak of fd is fd is 0Carsten Haitzler (Rasterman)1-1/+1
this should fix CID 1039181
2013-12-13fix fd leak in emotion webcam where fd of value 0 never closedCarsten Haitzler (Rasterman)1-1/+1
fixes CID 1039175
2013-12-13edje - lib - remove useless memset as later memcpy overwritesCarsten Haitzler (Rasterman)1-1/+0
this removes a useless memset that does nothing usefule as a later memcpy (not far down from it) will overwrite it anyway.
2013-12-13ethumbd - fix possible out of bounds access to work tableCarsten Haitzler (Rasterman)1-0/+6
this should fix CID 1039314 in case an unsused table slot cannot be found. this should actualyl never happen because table expands/allocs zero out new entires so they are "unused".
2013-12-13edje - epp - fix possible array access by negativeCarsten Haitzler (Rasterman)1-1/+2
this should fix CID 1039357
2013-12-13ecore - utils - makekeys - fix uniitialized arraysCarsten Haitzler (Rasterman)1-3/+3
potential problem due to stak being filled or not. this fixes possible problems CID 1039547 and CID 1039546
2013-12-13evas - silence coverity in codeCarsten Haitzler (Rasterman)1-0/+2
fixes CID 1039549 and CID 1039548 - though it isn't a bug, but means it should not come back in coverity.
2013-12-13eeze - fix uninitialised sigation struct contentCarsten Haitzler (Rasterman)1-1/+1
should fix CID 1039552
2013-12-13edje_decc - fix possible use of uninitialized stringCarsten Haitzler (Rasterman)1-2/+3
this should fix CID 1039553
2013-12-13ethumb - ensure buf is nul terminatedCarsten Haitzler (Rasterman)1-3/+8
this SHOULD deal with CID 1039577 and CID 1039576
2013-12-13evas - common - remove useless new as next call allocs if NULLCarsten Haitzler (Rasterman)1-4/+0
2013-12-13ecore-con - fix possible unterminated buffersCarsten Haitzler (Rasterman)1-5/+12
this should fix CID 1039725 and CID 1039724