aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
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
2013-06-15Only allow prev-next chapter jumps outside of active playlistVoyager1
2013-06-15Revert "Merge pull request #2809 from jmarshallnz/no_skip_for_you"Voyager1
This reverts commit c5a85f72b6f685be832d4e3a43328de49baabf03, reversing changes made to e9aed1d645158647aa2006ac4b2d2d18a3d1ecbf.
2013-06-14Added CFileItem::FillInMimeType() and make GetMimeType() respect const ↵Garrett Brown
qualifiers. Before, the MIME type would only be resolved if GetMimeType(true) was called, which is potentially blocking. Now MIME types will be resolved from the file's extension without possibly blocking the thread. See doxy of CFileItem::FillInMimeType() for more info.
2013-06-14Merge pull request #2881 from popcornmix/avoid_resample_initpopcornmix
[rbp/omxplayer] do not reopen the resample context for each frame.
2013-06-14[rbp/omxplayer] do not reopen the resample context for each frame.popcornmix
I think this doesn't tend to happen on Pi now, as AV_SAMPLE_FMT_S16 and AV_SAMPLE_FMT_FLTP bypass the resampler, but best to fix it if some obscure codec returns something else. See #2873
2013-06-14[cosmetic] Fix variable name to match name declared in header and parent ↵Garrett Brown
constructor
2013-06-14oops... forgot to bump the version in addons/xbmc.pvr/addon.xmlLars Op den Kamp
2013-06-14Merge pull request #2870 from popcornmix/pts_dts_adjustpopcornmix
[DVDDemux] Allow for larger difference in dts and pts of packet
2013-06-13Merge pull request #2874 from aballier/vdpau_checkJoakim Plate
configure, external ffmpeg: do not check if libavcodec contains vdpau fu...
2013-06-13Merge pull request #2873 from aballier/resampler_fixJoakim Plate
[Fix] DVDAudioCodecFFmpeg: do not reopen the resample context for each frame.
2013-06-13[jenkins] - disable the need of signing for ios/atv2 on jenkinsMemphiz
2013-06-13Merge pull request #2871 from Tolriq/faster_fix_filetypeSascha Montellese
jsonrpc: faster and better way to fix "filetype" property than e0ec520d00
2013-06-13[FIX] Faster and clever way to fix e0ec520d00Tolriq
As title say faster way to correct the filetype field behavior. (A lot since std::set use key as index while CFileItemList.Get on filename needs locks and tons of overhead, not talking about the size of parameters compared to a large directory).
2013-06-13configure, external ffmpeg: do not check if libavcodec contains vdpau functions.Alexis Ballier
it will fall back to other methods if not present and we have no guarantee that the libavcodec version we build against will be the same we run with (except it has the same ABI but ff_vdpau symbols are not part of the ABI).
2013-06-13DVDAudioCodecFFmpeg: do not reopen the resample context for each frame.Anton Khirnov
There is no point in doing this and opening an already opened context leaks memory in lavr.
2013-06-13fixed, when compiling for native, tarball was saved in wrong placedavilla
2013-06-13[osx] fixed, stray touch under xcode3davilla
2013-06-12[DVDDemux] Allow for larger difference in dts and pts of packetpopcornmix
If video does not start on an I frame, you can get a significant difference in pts and dts values for the first frame. I've got two videos where they differ by more than 0.1s. In this case, we end up setting pts=0 and leaving dts alone (which may be minutes away). This gets through to GPU on Pi, and it tends to stall waiting for this difference to elapse. I'm not sure what the largest difference can be, but 0.5s feels completely safe. I'm not sure of any problems increasing this will cause.
2013-06-12Merge pull request #2828 from Tolriq/fix_remoteaccessSascha Montellese
allow more paths in CFileUtils::RemoteAccessAllowed (fixes some addons and JSON-RPC clients)
2013-06-12jsonrpc: fix "filetype" property being (unexpectedly) returned for ↵montellese
Player.GetItem et al.
2013-06-12cosmetics in CFileOperationsmontellese
2013-06-12jsonrpc: use "song" as default value for "type" propertymontellese
2013-06-12jsonrpc: fix property values returned by Player.GetItemmontellese
2013-06-12Merge pull request #2864 from Memphiz/mdnsMemphiz
[mdnsembedded] - fix zeroconfbrowser
2013-06-12[mdns] - enable zeroconfbrowser via mdnsembedded - as the ↵Memphis
browsing/service-resolveing issue is solved now
2013-06-12[mdns] - fix service resolving when using mdns-embeddedMemphis
- don't call our dnsresolver in the callback but try it in the zeroconf thread instead - if that fails (as it does in some networks/platforms where gethostbyname doesn't resolve .local. domains) - fallback to the mdns resolver
2013-06-12[zeroconf] - add new hostname field to the service class - its needed by mdnsMemphis
2013-06-12[depends] - bump mdnsresponder to 379.37Memphis
2013-06-12Merge pull request #2868 from Montellese/win32_msbuildMemphiz
[win32] make BuildSetup.bat et. al. more robust for jenkins builds
2013-06-11Retain type safety by using const_cast instead of C-style castGarrett Brown