aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2013-06-30jni: consmetic refactor to consistent appearancedavilla
2013-06-29keymap: fix sixaxis gamepad keymappingJoakim Plate
Values below starting at 256 are reserved for KEY_BUTTON_*, use some other unused key id for the GUIDE button. This button is only virtual since it's mapped from a CEC event
2013-06-29[cosmetic] suppresses gcc parenthesis warning. Thx @vdrfanVoyager1
2013-06-29[fix] check active window before delegating player action handling - fixes ↵Voyager1
problem introduced in 8768ec8a7260b7dd46c28e601a398d493808edeb
2013-06-27Fix memory leak and a failed ASSERT under win32 Debug build. A string was ↵Garrett Brown
being double-strdup'ed, causing delete[] to fail when deleting the copy from the different heap instead of the local one. Tracking down the assert to dbgheap.c gives the following message: > a bad pointer has been passed in. It may be totally bogus, or it may have been allocated from another heap. The pointer MUST come from the 'local' heap.
2013-06-27Merge pull request #2910 from popcornmix/fix_volume_fixpopcornmix
[rbp/omxplayer] Fix build error from #2909
2013-06-27[rbp/omxplayer] Fix build error from #2909popcornmix
(sorry should have spotted this)
2013-06-27Merge pull request #2909 from sgebbie/masterpopcornmix
[rbp/omxplayer] Volume Jump Fix
2013-06-27Improve resilience of volume change.Stewart Gebbie
Building on the previous fix for the audio volume jumps experienced when switching tracks, this adds a double check that the underlying audio layer has actually set the volume to the new value. This may fail because the COMXAudio object it not yet initialised. If there is a failure, then the volume change is retried in the next iteration of COMXPlayer::Process().
2013-06-26Merge pull request #2906 from arnova/music_db_fixesarnova
Music info/db (regression) fixes
2013-06-25Merge pull request #2903 from davilla/change-rss-urlsjmarshallnz
fixed, update of rss feed URLS
2013-06-25Don't clobber path history when running a searchGarrett Brown
2013-06-25fixed: Locally found music album art was not stored in the db ((partially?) ↵arnova
fixes #14345)
2013-06-25fixed: artist was being added as genre to music album tablearnova
2013-06-25fixed: Formatting (cosmetics)arnova
2013-06-25fixed: SQL query was wrongarnova
2013-06-25changed: Make more obvious we're passing a CFileItemarnova
2013-06-25fixed, update of rss feed URLSdavilla
2013-06-24Merge pull request #2908 from popcornmix/update_pts_resynchuceke
[rbp/omxplayer] Update pts on resync message
2013-06-24[WIN32] fixed: guess void is meant here.wsoltys
2013-06-24fixed: Music album info gets stuck on failure (fixes #14435)arnova
2013-06-24changed: It's nicer to close the music db on failurearnova
2013-06-24Merge pull request #2907 from fritsch/ae-remove-warningMemphiz
AE: OSS is nearly not used on most platforms - remove error in log
2013-06-24[rbp/omxplayer] Update pts on resync messagepopcornmix
This was remove in #2853 and is still required for avi streams with all frames having pts=DVD_NOPTS_VALUE
2013-06-24AE: OSS is nearly not used on most platforms - don't make vdrfan afraidfritsch
2013-06-23fixed: Crash when scanning music without any scraper setarnova
2013-06-22fixed, do not expand the EXEEXT env vardavilla
2013-06-22[lang] add langinfo.xml files for new languages in masteralanwww1
2013-06-21[lang] update of skin.confluence language filesalanwww1
2013-06-21[lang] update of core language filesalanwww1
2013-06-21[lang] update of internal addon language filesalanwww1
2013-06-20changed, add XBMCROOT env var so we know where <xbmc root> is via an ↵davilla
absolute path
2013-06-20add xbmc-addon-bindings to dependsdavilla
2013-06-19Merge pull request #2897 from ronie/confluence-cosmeticsronie
[Confluence] Cosmetics: ditch duplicate brackets
2013-06-20[Confluence] Cosmetics: ditch duplicate bracketsronie
2013-06-19Merge pull request #2891 from amet/fix_mavericksMemphiz
[osx] fix app start on 10.9
2013-06-19[osx] fix app start on 10.9amet
2013-06-18Merge pull request #2888 from popcornmix/version_overflowpopcornmix
[rbp] Avoid overflow in version string
2013-06-18[rbp] Avoid overflow in version stringpopcornmix
gedit complains about invalid characters when opening xbmc.log file produced by pi Since the change from perforce revision number to git hash, the version string has increased in size. Fortunately we don't overrun the "response" buffer. Unfortunately when buffer doesn't fit, it is not null terminated, so logging message pulls in garbage. Version string looks like: Jun 17 2013 20:49:11 Copyright (c) 2012 Broadcom version d380dde43fe729f043befb5cf775f99e54586cde (clean) (release) So, 80 characters is not enough (it is about 115 plus newlines). 160 seems more than enough, but truncate the string just in case.
2013-06-17gui: list settings didn't display indentation properlyJoakim Plate
2013-06-17[ffmpeg] - backport fix for crashing when using vaapi (found on libav ↵Memphiz
mailing list) - this was signed off by elupus
2013-06-17Revert "ffmpeg: add patch file for vaapi fix"Memphiz
This reverts commit 4f47cfc9726c46ee69c72bdc4a28c15f1caea342.
2013-06-17Revert "vaapi: don't unmap non-existing buffer"Memphiz
This reverts commit c1597430e6d2dfd6b644be0345e0df9e0fe44336.
2013-06-17Revert "ffmpeg: fixup compile error in patch"Memphiz
This reverts commit fcbc5e9a2a320c0b3bb6d6555143e863f1db3158.
2013-06-17[mingw] added pkg-config to fix configure finding not all available libswsoltys
2013-06-17[FreeBSD] ping use -t for timeout like OSXFneufneu
2013-06-16Merge pull request #2887 from t4-ravenbird/ios-pingMemphiz
[fix][ios] ping ; timeout option not supported
2013-06-16[fix][ios] ping ; timeout option not supportedt4.ravenbird
2013-06-15Merge pull request #2855 from Voyager1/skip-chapters-withoutplaylistVoyager1
Re-enable skip previous/next as chapter jumps, when outside of playlist context
2013-06-15Move player action handling out of GUIDialogVideoOSD and GUIWindowFullScreen ↵Voyager1
into Application