Age | Commit message (Collapse) | Author | |
---|---|---|---|
2013-04-05 | Added: [Confluence] Extended subtitle menu for Confluence OSD for easy ↵ | Jezz_X | |
access to common used features | |||
2013-04-05 | allow fullscreen actions such as next subtitle, audio stream, audio/subs ↵ | Jonathan Marshall | |
delay etc. to be handled in other places | |||
2013-04-05 | Enhanced builtin func SlideShow() support pause and set beginslide path | ulion | |
2013-04-05 | Change CUtil::SplitParams to support escape name="value" style param. | ulion | |
So we can use this style of param with builtin functions. | |||
2013-04-05 | [Cleanup] remove backslashs not needed. | ulion | |
2013-04-04 | Merge pull request #2524 from Montellese/touch_input_win32 | Sascha Montellese | |
[win32] improved touch input/gesture handling | |||
2013-04-04 | Merge pull request #2533 from petriposio/master | jmarshallnz | |
[mouse] reworks the order of the mouse event handling (issue #2315) | |||
2013-04-04 | [win32] use generic touch input (adds swipe, rotate and zoom gestures) | montellese | |
2013-04-04 | [win32] add defines for GID_ROTATE_ANGLE_TO_ARGUMENT and ↵ | montellese | |
GID_ROTATE_ANGLE_FROM_ARGUMENT | |||
2013-04-04 | [win32] implement CWinEventsWin32::MessagePush | montellese | |
2013-04-04 | Merge pull request #2531 from Montellese/settings_cleanup_4 | Sascha Montellese | |
more settings cleanup (introducing CDisplaySettings and CProfilesManager) | |||
2013-04-04 | [osx/ios/atv2] - sync xcode projects | Memphiz | |
2013-04-04 | [win32] update VS project files | montellese | |
2013-04-04 | cosmetics: cleanup unused Settings.h includes | montellese | |
2013-04-04 | settings: remove unused method ToWatchContent | montellese | |
2013-04-04 | settings: move profile settings to CProfilesManager | montellese | |
2013-04-04 | move profile related files into new "profiles" directory | montellese | |
2013-04-04 | settings: move replaygain settings from CGUISettings to CAudioDecoder | montellese | |
2013-04-04 | settings: move SetLanguage from CGUISettings to CApplication | montellese | |
2013-04-04 | settings: move current resolution settings to CDisplaySettings | montellese | |
2013-04-05 | [fix] deactivate mouse if mouse event is mapped to a non-mouse action | pete | |
2013-04-04 | Merge pull request #2540 from wsoltys/14245 | wsoltys | |
fixed memory leak on minimized due to missing deletion of unused textures (fixes #14245) | |||
2013-04-04 | fixed memory leak on minimized due to missing deletion of unused textures ↵ | wsoltys | |
(fixes parts of #14245) | |||
2013-04-04 | fix building of python26-native dep | montellese | |
2013-04-04 | Merge pull request #2529 from Tolriq/update_resume | Sascha Montellese | |
jsonrpc: add support for resume in VideoLibrary.SetFooDetails | |||
2013-04-04 | Merge pull request #2528 from ulion/fix_vfs_exists_for_dir_13789 | ulion | |
[Fix] xbmcvfs.exists to support check dir existence. fix #13789 | |||
2013-04-04 | Add support for resume in VideoLibrary.SetFooDetails | Tolriq | |
2013-04-03 | upnp: not all internal upnp paths were /'d at the end | Alasdair Campbell | |
2013-04-04 | [Fix] Generic touch now can unfocus gui control correctly. | ulion | |
2013-04-04 | Longpress event does not need mouse motion for it. | ulion | |
2013-04-03 | Merge pull request #2538 from Fice/music_player_exist | Memphiz | |
FIX: "musicplayer.exist" could not be negated | |||
2013-04-03 | Merge pull request #2459 from FernetMenta/hasav | Arne Morten Kvarving | |
dvdplayer: reevaluate HasVideo/Audio after a stream change | |||
2013-04-03 | Fixed - remove early returns in favour of proper setting of bReturn in ↵ | Fice | |
CGUIInfoManager::GetMultiInfoBool | |||
2013-04-03 | [rbp] Avoid coming out of stalled state due to uninitialised variable | popcornmix | |
m_endtime is only initialised when we underrun. Use m_av_clock->OMXAudioBuffer() to protect access to uninitialised variable. | |||
2013-04-03 | [rbp] The stillframe logic doesn't work on Pi and causes stuttering | popcornmix | |
2013-04-03 | [rbp] Cosmetics | popcornmix | |
2013-04-03 | [rbp] Always acquire lock when using OMXMediaTime | popcornmix | |
I don't believe the lock=false call should ever be done unless caller already has lock | |||
2013-04-03 | [rbp] Use correct size when determining fifo has space in it | popcornmix | |
This can cause player to get a decode error from audio_decode component closing stream when packet doesn't actually fit. | |||
2013-04-03 | [rbp] Use CurrentHostCounter consistently | popcornmix | |
2013-04-03 | [rbp] Add more debug logging | popcornmix | |
2013-04-03 | [rbp] Add OMXLateCount to query if packets have arrived late | popcornmix | |
Could be useful for detecting underrun conditions | |||
2013-04-03 | [rbp] Expose GetAudioRenderingLatency | popcornmix | |
This could be useful for detecting underrun conditions | |||
2013-04-03 | [rbp] Move m_messenger.Init from constructor to OnStartup | popcornmix | |
This makes omxplayer constistent with dvdplayer. It avoids an initial stray message to immediately try and go normal speed when it should be buffering. | |||
2013-04-03 | [rbp] Add reporting of fifo fullness for use with hdmi_status_show in debug ↵ | popcornmix | |
builds | |||
2013-04-03 | upnp: container updates weren't propagating to GUI for current path | Alasdair Campbell | |
2013-04-03 | Merge pull request #2537 from popcornmix/mediatime | huceke | |
[rbp] Set mediatime on GPU after a seek. | |||
2013-04-03 | [rbp] Set mediatime on GPU after a seek. | popcornmix | |
Currently after a seek, the mediatime doesn't update until an audio and video packet have been fetched from demuxer, and been decoded. For HD content this can take a second or two. This has a couple of undesirable effects: The seek time that pops up after a seek initially shows the before seek time, and the file progress bar is laggy. If you seek a second time, before the time has updated, it will use the before seek time, and the second seek has no effect. This limits a sequence of seeks to a maximum of about 1 every second or two. The fix udpates the GPU mediatime immediately after the seek, so the mediatime is correct immediately which fixes the undesirable behaviour. | |||
2013-04-03 | Merge pull request #2372 from huceke/raspberrypi | huceke | |
[rbp/omxplayer] sync up with dvdplayer master changes | |||
2013-04-03 | fix typo in ccdba4e | Alasdair Campbell | |
2013-04-03 | [Fix] Send out correct mouse motion event in generic touch action handler. | ulion | |