summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* release: Update NEWS and bump version for 1.12.0 releasev1.12.0emotion_generic_players-1.12efl-1.12Stefan Schmidt2014-11-101-1/+1
|
* release: Update NEWS and bump version for 1.12.0-beta2 releasev1.12.0-beta2Stefan Schmidt2014-11-031-1/+1
|
* release: Update NEWS and bump version for 1.12.0-beta1 releasev1.12.0-beta1Stefan Schmidt2014-10-271-1/+1
|
* release: Update NEWS and bump version for 1.12.0-alpha1 releasev1.12.0-alpha1Stefan Schmidt2014-10-212-5/+10
|
* configure: Switch to dev mode again and set version to .99Stefan Schmidt2014-08-201-2/+2
| | | | Merge window for 1.12 is open.
* release: Update NEWS and bump version for 1.11.0 releasev1.11.0emotion_generic_players-1.11Stefan Schmidt2014-08-201-1/+1
|
* NEWS: Manually add fix for T1530Stefan Schmidt2014-08-151-1/+2
| | | | | Not tagged with @fix so our tooling would not pick it up. As this is the only relevant change here in 1.11 add it by hand.
* README: Update version for upcoming 1.11 releaseStefan Schmidt2014-08-151-2/+2
|
* emotion generic players - work around vlc bug that segvsCarsten Haitzler (Rasterman)2014-08-151-2/+5
| | | | this should fix T1530
* release: Update NEWS and bump version for 1.11.0-beta2 releasev1.11.0-beta2Stefan Schmidt2014-08-111-1/+1
|
* release: Update NEWS and bump version for 1.11.0-beta1 releasev1.11.0-beta1Stefan Schmidt2014-08-041-1/+1
|
* NEWS: Remove wrong entry for 1.11 changesStefan Schmidt2014-08-011-7/+0
|
* release: Update NEWS and bump version for 1.11.0-alpha1 releasev1.11.0-alpha1Stefan Schmidt2014-08-012-5/+17
|
* Revert "Add autogen.sh to EXTRA_DIST."Tom Hacohen2014-06-051-1/+0
| | | | This reverts commit d500d92653b9ec0de2ae111d454f86747930d3fb.
* Add autogen.sh to EXTRA_DIST.Tom Hacohen2014-06-051-0/+1
| | | | | | Thanks to Jef91 for pointing this out. @fix
* build: Add fake doc targetStefan Schmidt2014-05-281-0/+5
| | | | Needed to have it run on the nightly jenkins builds.
* release: Switch back to development modeStefan Schmidt2014-05-261-2/+2
| | | | Open for 1.11 changes now.
* release: v1.10.0v1.10.0Stefan Schmidt2014-05-261-1/+1
|
* autotools: Add xz as additional tarball formatStefan Schmidt2014-05-261-1/+1
| | | | If this turns out well we will remove bz2 in 1.12
* release: v1.10.0 beta3v1.10.0-beta3Stefan Schmidt2014-05-191-1/+1
|
* release: v1.10.0 beta2v1.10.0-beta2Stefan Schmidt2014-05-121-1/+1
|
* vlc: fix ogv support in emotion_generic.Cedric Bail2014-05-091-0/+2
| | | | | | T1192 Thanks for the help from Luca Barbato.
* release: v1.10.0 beta1v1.10.0-beta1Stefan Schmidt2014-05-051-1/+1
|
* release: Fix alpha release tarball nameStefan Schmidt2014-04-281-1/+1
|
* release: v1.10.0 alpha1v1.10.0-alpha1Stefan Schmidt2014-04-282-4/+9
|
* configure: Bump version to 1.9.99 to indicate development cycleStefan Schmidt2014-02-261-1/+1
| | | | | 1.9 is released and the master branch is now in development mode again. Make sure the version indicates that.
* Release version 1.9.0v1.9.0emotion_generic_players-1.9Stefan Schmidt2014-02-242-2/+8
|
* Emotion VLC: fix the random-player-stop bug !!davemds2014-02-231-15/+76
| | | | | | | | | | | | | | | | | | Bug explanation: VLC has 2 different async mechanism that we use, one is the event callback system that report player status changes and one is the display func that is called at every frame. They run independently and can occur "at the same time". We use ecore_pipe_write() in both and the result is that occasionally we send to the pipe 2 commands mixed togheter (the FRAME_NEW and the LENGTH_CHANGED). So emotion (on the other side of the pipe) receive a wrong command and stop the player. The fix: Use a mutex (Eina_Lock) while sending commands to the pipe so that we can send 2 commands "at the same time". The SPANK credits: BIG BIG SPANK goes to cedric (of course) that removed the command lock mechanism in revision 10ebda80419
* unify the usage of my namedavemds2014-02-221-1/+1
|
* Emotion VLC: fix send position_change while paused.davemds2014-02-221-5/+10
| | | | | | | VLC does not emit the TimeChanged event while the video is paused, so if the user change position while paused emotion is not aware of the change. This commit force the event to emotion if the video is paused
* Emotion VLC: use Eina_Bool instead of int for bools.davemds2014-02-221-18/+18
| | | | And reorder members in the App struct.
* Emotion VLC: defer the resource free until the video is actually stopped.davemds2014-02-221-12/+17
| | | | Fix vlc complainig on shutdown.
* Emotion VLC: we have a typedef for 'struct _App'. Use it.davemds2014-02-221-8/+8
|
* Emotion VLC: recreate the player when end reached.davemds2014-02-221-19/+29
| | | | Fix the restart-play-when-end-reached bug.
* Emotion VLC: fix the volume/mute bug.davemds2014-02-211-5/+7
| | | | | Set again the volume and the mute state every time the video start to play, this fix the setting of the volume/mute before the complete loading of the file.
* release: Bump version to 1.9.0-beta2v1.9.0-beta2Stefan Schmidt2014-02-212-2/+5
| | | | | Second and most likely last beta release before the 1.9 final. Give it a good testing over the weekend.
* Emotion VLC: no more need to send the size twice.davemds2014-02-201-3/+0
|
* Emotion VLC: remove quite all the old hacks.davemds2014-02-201-170/+73
| | | | | | | | | | | | This commit remove all the hacks that was there on the loading stage. Instead of using the tmp format callback system now simply connect to the MediaPlayerPlaying event on first startup and pause the video as soon as it start. No more need for the tmp buffer allocation and the delayed stop using idler. All this fix the first outstanding bug: audio was audible on start (before the real play command from emotion)
* AUTHORS: Fill in authors from git logStefan Schmidt2014-02-201-1/+12
|
* release: Update NEWS file and add out of date notice to ChangeLogStefan Schmidt2014-02-193-1/+26
| | | | | | | | Might not be the final NEWS file but a start which includes all noteworthy changes since 1.8.0. Adding a note to the ChangeLog so people know it will no longer get updated. Also clarify README that libvlc >= 2.0 is needed.
* release: Bump version to 1.9.0-beta1v1.9.0-beta1Stefan Schmidt2014-02-181-2/+2
| | | | Prepare tarballs for a first beta release.
* Emotion VLC player: debug++davemds2014-02-161-7/+25
|
* Emotion VLC: cleanup: only changed function order in file.davemds2014-02-161-78/+84
|
* Emotion VLC backend: fix pause/stop to work again.davemds2014-02-161-3/+4
| | | | | The EM_CMD_STOP command do not have any parameter so it must be handled in the first call of the pipe.
* update copying datesCarsten Haitzler (Rasterman)2014-02-121-1/+1
|
* update README versionCarsten Haitzler (Rasterman)2014-02-121-1/+1
|
* simplify player version dir fallback to match efl 1.9 simplification changesCarsten Haitzler (Rasterman)2014-02-121-3/+3
|
* 1.9.0 alpha1v1.9.0-alpha1Mike Blumenkrantz2014-02-111-4/+4
|
* emotion_generic_players - commented out unused func.ChunEon Park2014-01-181-0/+2
|
* configure: fix typos.Cedric BAIL2014-01-091-1/+1
|