platform/upstream/freerdp.git
11 years agoFixed invalid package size allocation and calculation in cliprdr_process_format_list_...
Armin Novak [Fri, 9 Aug 2013 14:23:00 +0000 (16:23 +0200)]
Fixed invalid package size allocation and calculation in cliprdr_process_format_list_event
Enabled and fixed error handling in cliprdr_process_format_list_response

11 years agoMerge branch 'master' of https://github.com/FreeRDP/FreeRDP
Armin Novak [Fri, 9 Aug 2013 14:17:22 +0000 (16:17 +0200)]
Merge branch 'master' of https://github.com/FreeRDP/FreeRDP

11 years agoMerge pull request #1409 from alexpilotti/master
Marc-André Moreau [Thu, 8 Aug 2013 23:53:12 +0000 (16:53 -0700)]
Merge pull request #1409 from alexpilotti/master

Fixes libwinpr build issue on Windows

11 years agoFixes libwinpr build issue on Windows
Alessandro Pilotti [Thu, 8 Aug 2013 23:45:31 +0000 (02:45 +0300)]
Fixes libwinpr build issue on Windows

Adds conditional statements in file.c to solve a Posix portability
issue on Windows introduced with the following commit:

913d532e0d3456945236567af00e8119564307ff

11 years agoMerge pull request #1406 from bmiklautz/android_toolchain
Norbert Federa [Thu, 8 Aug 2013 16:59:12 +0000 (09:59 -0700)]
Merge pull request #1406 from bmiklautz/android_toolchain

android: updated toolchain file

11 years agoandroid: updated toolchain file
Bernhard Miklautz [Thu, 8 Aug 2013 14:23:11 +0000 (16:23 +0200)]
android: updated toolchain file

* support for ndk version r8d+
* improved x86_64 host machine support
* support non-release NDK layouts

11 years agoMerge branch 'master' of https://github.com/FreeRDP/FreeRDP
Armin Novak [Thu, 8 Aug 2013 12:43:42 +0000 (14:43 +0200)]
Merge branch 'master' of https://github.com/FreeRDP/FreeRDP

11 years agoFixed typo
Bernhard Miklautz [Thu, 8 Aug 2013 10:41:04 +0000 (12:41 +0200)]
Fixed typo

11 years agoMerge branch 'master' of https://github.com/FreeRDP/FreeRDP
Armin Novak [Thu, 8 Aug 2013 06:41:13 +0000 (08:41 +0200)]
Merge branch 'master' of https://github.com/FreeRDP/FreeRDP

11 years agoMerge pull request #1390 from awakecoding/master
Marc-André Moreau [Wed, 7 Aug 2013 20:39:29 +0000 (13:39 -0700)]
Merge pull request #1390 from awakecoding/master

Server-side core fixes, WinPR waitable timers & named pipes, Multitouch fixes

11 years agolibwinpr-pipe: add missing link dependency
Marc-André Moreau [Wed, 7 Aug 2013 20:00:21 +0000 (16:00 -0400)]
libwinpr-pipe: add missing link dependency

11 years agolibwinpr-pipe: add missing link dependencies for test code
Marc-André Moreau [Wed, 7 Aug 2013 19:56:05 +0000 (15:56 -0400)]
libwinpr-pipe: add missing link dependencies for test code

11 years agofreerdp: merge with master
Marc-André Moreau [Wed, 7 Aug 2013 19:48:57 +0000 (15:48 -0400)]
freerdp: merge with master

11 years agoMerge pull request #1402 from nfedera/fix-2013-08-07-03
Marc-André Moreau [Wed, 7 Aug 2013 19:36:19 +0000 (12:36 -0700)]
Merge pull request #1402 from nfedera/fix-2013-08-07-03

codec/rfx: added multithreaded encoder

11 years agoMerge pull request #1401 from nfedera/fix-2013-08-07-02
Marc-André Moreau [Wed, 7 Aug 2013 19:35:46 +0000 (12:35 -0700)]
Merge pull request #1401 from nfedera/fix-2013-08-07-02

libwinpr-utils: Use criticalsection with spincount

11 years agoMerge pull request #1397 from nfedera/fix-2013-08-07-01
Marc-André Moreau [Wed, 7 Aug 2013 19:35:06 +0000 (12:35 -0700)]
Merge pull request #1397 from nfedera/fix-2013-08-07-01

libwinpr-sync: New complete critical section code

11 years agocodec/rfx: added multithreaded encoder
Norbert Federa [Sun, 4 Aug 2013 10:07:53 +0000 (12:07 +0200)]
codec/rfx: added multithreaded encoder

11 years agolibwinpr-utils: Use criticalsection with spincount
Norbert Federa [Wed, 7 Aug 2013 15:10:43 +0000 (17:10 +0200)]
libwinpr-utils: Use criticalsection with spincount

Use InitializeCriticalSectionAndSpinCount instead of IntializeCriticalSection.
Using spin counts for critical sections of short duration enables the calling
thread to avoid the wait operation in most situations which can dramatically
improve the overall performance on multiprocessor systems.

On Linux this change has no effect because the new winpr critical section
implementation does not use the SpinCount field under Linux because the NPTL
synchronization primitives are implemented using the extremely performant
futex system calls which have this magic already built in.

However, on Mac OS X this change improved the overall performance of the
multithreaded RemoteFX decoder by 25 percent.

I've used a SpinCount of 4000 which avoided 99 percent of the wait calls.
This value is also used by Microsoft's heap manager for its per-heap
critical sections.

Note: This change requires pull request #1397 to be merged.

11 years agolibwinpr-sync: New complete critical section code
Norbert Federa [Wed, 7 Aug 2013 08:20:04 +0000 (10:20 +0200)]
libwinpr-sync: New complete critical section code

- Complete implementation including recursion support
- Added an intensive ctest (TestSynchCritical)
- Struct members are used exactly as Windows does it internally:
  LockCount starts at -1, RecursionCount at 0
- Same performance optimizations as internally on Windows:
    - Fast lock acquisition path using CAS -> SpinCount -> wait
    - SpinCount automatically disabled on uniprocessor systems
- On Linux SpinCount is disabled because it provided no advantage over NPTL/futex in all tests

Support for CRITICAL_SECTION's DebugInfo is not yet included (but trivial to add).

11 years agoMerge remote-tracking branch 'upstream/master'
Armin Novak [Tue, 6 Aug 2013 09:58:21 +0000 (11:58 +0200)]
Merge remote-tracking branch 'upstream/master'

11 years agocmake: add FindPixman.cmake
Marc-André Moreau [Tue, 6 Aug 2013 00:50:23 +0000 (20:50 -0400)]
cmake: add FindPixman.cmake

11 years agolibwinpr-utils: implement doubly-linked list
Marc-André Moreau [Mon, 5 Aug 2013 21:29:14 +0000 (17:29 -0400)]
libwinpr-utils: implement doubly-linked list

11 years agolibfreerdp-core/fastpath: fix memory leak when sending large packet.
Vic Lee [Sun, 4 Aug 2013 09:23:32 +0000 (17:23 +0800)]
libfreerdp-core/fastpath: fix memory leak when sending large packet.

11 years agolibwinpr-synch: add detection of timerfd support
Marc-André Moreau [Sat, 3 Aug 2013 23:50:17 +0000 (19:50 -0400)]
libwinpr-synch: add detection of timerfd support

11 years agochannels/rdpei: make use of critical section
Marc-André Moreau [Sat, 3 Aug 2013 20:45:53 +0000 (16:45 -0400)]
channels/rdpei: make use of critical section

11 years agoMerge branch 'master' of github.com:FreeRDP/FreeRDP into multitouch
Marc-André Moreau [Sat, 3 Aug 2013 20:22:09 +0000 (16:22 -0400)]
Merge branch 'master' of github.com:FreeRDP/FreeRDP into multitouch

11 years agoMerge pull request #1379 from nfedera/fix-2013-07-30-01
Marc-André Moreau [Sat, 3 Aug 2013 20:20:17 +0000 (13:20 -0700)]
Merge pull request #1379 from nfedera/fix-2013-07-30-01

codec/rfx: removed unnecessary WaitForSingleObject

11 years agoMerge pull request #1386 from akallabeth/master
Marc-André Moreau [Sat, 3 Aug 2013 20:18:27 +0000 (13:18 -0700)]
Merge pull request #1386 from akallabeth/master

Added proper find_feature check for JPEG library.

11 years agoMerge pull request #1389 from akallabeth/urbdrc_cmake_fixes
Marc-André Moreau [Sat, 3 Aug 2013 20:18:04 +0000 (13:18 -0700)]
Merge pull request #1389 from akallabeth/urbdrc_cmake_fixes

Urbdrc cmake fixes

11 years agoMerge pull request #1388 from nfedera/fix-2013-08-02-01
Marc-André Moreau [Sat, 3 Aug 2013 20:16:51 +0000 (13:16 -0700)]
Merge pull request #1388 from nfedera/fix-2013-08-02-01

winpr: improve and fix locking for data structures

11 years agoxfreerdp: fix cursor hidding/showing with multitouch
Marc-André Moreau [Sat, 3 Aug 2013 20:13:39 +0000 (16:13 -0400)]
xfreerdp: fix cursor hidding/showing with multitouch

11 years agoAdded libusb detection CMake script.
Armin Novak [Fri, 2 Aug 2013 13:41:49 +0000 (15:41 +0200)]
Added libusb detection CMake script.

11 years agoFixed linking with libusb, now linking against correct library.
Armin Novak [Fri, 2 Aug 2013 13:12:38 +0000 (15:12 +0200)]
Fixed linking with libusb, now linking against correct library.

11 years agoNow using libraries detected by CMake for linking against libusb.
Armin Novak [Fri, 2 Aug 2013 12:45:06 +0000 (14:45 +0200)]
Now using libraries detected by CMake for linking against libusb.

11 years agoAdded proper CMake checks for libraries linked with urbdrc
Armin Novak [Fri, 2 Aug 2013 12:02:21 +0000 (14:02 +0200)]
Added proper CMake checks for libraries linked with urbdrc

11 years agoAdded proper CMake checks for libraries linked with urbdrc
Armin Novak [Fri, 2 Aug 2013 12:02:21 +0000 (14:02 +0200)]
Added proper CMake checks for libraries linked with urbdrc

11 years agowinpr: improve and fix locking for data structures
Norbert Federa [Fri, 2 Aug 2013 10:07:05 +0000 (12:07 +0200)]
winpr: improve and fix locking for data structures

- Improved/completed(almost) winpr's critical section implementation
- Replaced WaitForSingleObject locking with critical sections

Note:
WaitForSingleObject should _never_ be used for granular low-contention
locks as it _always_ enters the kernel.

Just replacing WaitForSingleObject locking in Bufferpool with
EnterCriticalSection boosts the multithreaded rfx decoder
performance by almost 400% on win32.

11 years agoAdded proper find_feature check for JPEG library.
Armin Novak [Fri, 2 Aug 2013 08:04:58 +0000 (10:04 +0200)]
Added proper find_feature check for JPEG library.

11 years agowinpr: fix build on Linux
Marc-André Moreau [Tue, 30 Jul 2013 14:57:54 +0000 (10:57 -0400)]
winpr: fix build on Linux

11 years agocareful with passwd in compatibility.c
Daryl Poe [Mon, 29 Jul 2013 22:50:38 +0000 (16:50 -0600)]
careful with passwd in compatibility.c
(cherry picked from commit a4a5baf0da7c77c1d29a485f26abae6fac03a4a4)

11 years agocodec/rfx: removed unnecessary WaitForSingleObject
Norbert Federa [Tue, 30 Jul 2013 11:02:43 +0000 (13:02 +0200)]
codec/rfx: removed unnecessary WaitForSingleObject

The WaitForSingleObject call on TilePool's event is called with a zero time-out
interval and the event is a manual reset event ... thus no locking or waiting
is involved anyways and Queue_Dequeue may very well return NULL independently
of calling WaitForSingleObject which is already correctly handled.

11 years agolibwinpr-synch: add unit tests, initial waitable timer support
Marc-André Moreau [Mon, 29 Jul 2013 17:07:39 +0000 (13:07 -0400)]
libwinpr-synch: add unit tests, initial waitable timer support

11 years agofix segfault due to pulse input race condition
Daryl Poe [Fri, 26 Jul 2013 19:54:20 +0000 (13:54 -0600)]
fix segfault due to pulse input race condition
(cherry picked from commit be5167654153cad02f821decc39ad35cd239a6ed)

11 years agolibwinpr-synch: start implementing waitable timers
Marc-André Moreau [Mon, 29 Jul 2013 15:57:29 +0000 (11:57 -0400)]
libwinpr-synch: start implementing waitable timers

11 years agolibfreerdp-core: reduce usage of update_force_flush in server-side update code
Marc-André Moreau [Mon, 29 Jul 2013 14:21:32 +0000 (10:21 -0400)]
libfreerdp-core: reduce usage of update_force_flush in server-side update code

11 years agolibfreerdp-codec: added RDP6 bitmap compression test data
Marc-André Moreau [Mon, 29 Jul 2013 01:07:28 +0000 (21:07 -0400)]
libfreerdp-codec: added RDP6 bitmap compression test data

11 years agolibfreerdp-core: fix server-side secondary drawing orders encoding bugs
Marc-André Moreau [Mon, 29 Jul 2013 00:21:43 +0000 (20:21 -0400)]
libfreerdp-core: fix server-side secondary drawing orders encoding bugs

11 years agolibfreerdp-core: improve server-side capabilities parsing
Marc-André Moreau [Sun, 28 Jul 2013 23:11:41 +0000 (19:11 -0400)]
libfreerdp-core: improve server-side capabilities parsing

11 years agolibfreerdp-core: fix server-side update encoding edge case
Marc-André Moreau [Sun, 28 Jul 2013 20:31:38 +0000 (16:31 -0400)]
libfreerdp-core: fix server-side update encoding edge case

11 years agowfreerdp: fix build warnings
Marc-André Moreau [Fri, 26 Jul 2013 19:43:55 +0000 (15:43 -0400)]
wfreerdp: fix build warnings

11 years agofreerdp: fix build warnings with MSVC
Marc-André Moreau [Fri, 26 Jul 2013 19:21:19 +0000 (15:21 -0400)]
freerdp: fix build warnings with MSVC

11 years agocover the case of servers asking for cached bitmaps they have never defined
Daryl Poe [Thu, 25 Jul 2013 21:01:56 +0000 (15:01 -0600)]
cover the case of servers asking for cached bitmaps they have never defined
(cherry picked from commit 46a691db029912e5814b0c6fb36002a41e597825)

11 years agoCMakelists:
Benoît LeBlanc [Fri, 26 Jul 2013 01:59:21 +0000 (21:59 -0400)]
CMakelists:

disabled installation of headers and libraries for the wayk client.

11 years agoMerge branch 'master' of https://github.com/awakecoding/FreeRDP
Benoît LeBlanc [Thu, 25 Jul 2013 19:53:12 +0000 (15:53 -0400)]
Merge branch 'master' of https://github.com/awakecoding/FreeRDP

11 years agoFreeRDP: fixed access violation crash that occurred on Windows, because the malloc...
Benoît LeBlanc [Thu, 25 Jul 2013 14:22:57 +0000 (10:22 -0400)]
FreeRDP: fixed access violation crash that occurred on Windows, because the malloc and the free were performed in different libraries.

11 years agoAdded PDB debug information for windows builds
Benoît LeBlanc [Wed, 24 Jul 2013 19:36:15 +0000 (15:36 -0400)]
Added PDB debug information for windows builds

11 years agoMerge branch 'master' of github.com:FreeRDP/FreeRDP
Marc-André Moreau [Tue, 23 Jul 2013 23:21:39 +0000 (19:21 -0400)]
Merge branch 'master' of github.com:FreeRDP/FreeRDP

11 years agoMerge pull request #1356 from nfedera/fix-2013-07-17-01
Marc-André Moreau [Tue, 23 Jul 2013 23:21:29 +0000 (16:21 -0700)]
Merge pull request #1356 from nfedera/fix-2013-07-17-01

codec/rfx: removed unused queue TileQueue

11 years agoQt compiling errors on Windows.
Benoît LeBlanc [Tue, 23 Jul 2013 20:27:02 +0000 (16:27 -0400)]
Qt compiling errors on Windows.

11 years agolibwinpr-pipe: added overlapped io tests for named pipes
Marc-André Moreau [Tue, 23 Jul 2013 19:03:08 +0000 (15:03 -0400)]
libwinpr-pipe: added overlapped io tests for named pipes

11 years agoMerge pull request #1367 from C-o-r-E/master
Marc-André Moreau [Tue, 23 Jul 2013 18:53:16 +0000 (11:53 -0700)]
Merge pull request #1367 from C-o-r-E/master

xfreerdp: Scaling and Panning support, Touch gestures, navigation keyboard shortcuts

11 years agoxfreerdp: comment cleanup
C-o-r-E [Tue, 23 Jul 2013 18:47:40 +0000 (14:47 -0400)]
xfreerdp: comment cleanup

11 years agolibwinpr-pipe: initial basic named pipe support
Marc-André Moreau [Tue, 23 Jul 2013 03:17:08 +0000 (23:17 -0400)]
libwinpr-pipe: initial basic named pipe support

11 years agolibwinpr-pipe: implement of more named pipes
Marc-André Moreau [Tue, 23 Jul 2013 02:53:44 +0000 (22:53 -0400)]
libwinpr-pipe: implement of more named pipes

11 years agolibwinpr-pipe: start implementing named pipes
Marc-André Moreau [Mon, 22 Jul 2013 22:20:34 +0000 (18:20 -0400)]
libwinpr-pipe: start implementing named pipes

11 years agolibwinpr-pipe: added stubs for named pipes
Marc-André Moreau [Mon, 22 Jul 2013 20:30:25 +0000 (16:30 -0400)]
libwinpr-pipe: added stubs for named pipes

11 years agoMacFreeRDP cli fixes:
Benoît LeBlanc [Mon, 22 Jul 2013 19:33:30 +0000 (15:33 -0400)]
MacFreeRDP cli fixes:
- added ErrorInfo handling.
- Showing alert message on main thread.
- Autorelease pool for background thread.

11 years agoMerge branch 'master' of git://github.com/awakecoding/FreeRDP
Benoît LeBlanc [Mon, 22 Jul 2013 18:58:50 +0000 (14:58 -0400)]
Merge branch 'master' of git://github.com/awakecoding/FreeRDP

# By Marc-André Moreau
# Via Marc-André Moreau
* 'master' of git://github.com/awakecoding/FreeRDP:
  libfreerdp-core: export function to retrieve error info from static entry table

11 years agolibfreerdp-core: export function to retrieve error info from static entry table
Marc-André Moreau [Mon, 22 Jul 2013 17:23:56 +0000 (13:23 -0400)]
libfreerdp-core: export function to retrieve error info from static entry table

11 years agoMerge branch 'master' of git://github.com/awakecoding/FreeRDP
Benoît LeBlanc [Mon, 22 Jul 2013 16:38:32 +0000 (12:38 -0400)]
Merge branch 'master' of git://github.com/awakecoding/FreeRDP

# By Marc-André Moreau
# Via Marc-André Moreau
* 'master' of git://github.com/awakecoding/FreeRDP:
  libfreerdp-core: add event handle support to listener
  libfreerdp-core: properly attach tcp event handle for peers
  libfreerdp-core: improvements to the server-side activation/reactivation code
  libfreerdp-core: modify server-side confirm active pdu receiving logic

11 years agoMacFreeRDP: Fixed deployment paths, deploying missing winpr folder to framework struc...
Benoît LeBlanc [Mon, 22 Jul 2013 16:38:15 +0000 (12:38 -0400)]
MacFreeRDP: Fixed deployment paths, deploying missing winpr folder to framework structure.

#####################

IMPORTANT:

To compile an Mac application using the MacFreeRDP framework, the developer MUST specifically add the framework's Headers folder to the Headers Search Path in the application's Build Settings.

e.g. /Users/Username/Documents//FreeRDP/build/client/Mac/Debug/MacFreeRDP.framework/Headers

11 years agolibfreerdp-core: add event handle support to listener
Marc-André Moreau [Sun, 21 Jul 2013 20:21:46 +0000 (16:21 -0400)]
libfreerdp-core: add event handle support to listener

11 years agolibfreerdp-core: properly attach tcp event handle for peers
Marc-André Moreau [Sun, 21 Jul 2013 02:34:05 +0000 (22:34 -0400)]
libfreerdp-core: properly attach tcp event handle for peers

11 years agolibfreerdp-core: improvements to the server-side activation/reactivation code
Marc-André Moreau [Sat, 20 Jul 2013 01:52:28 +0000 (21:52 -0400)]
libfreerdp-core: improvements to the server-side activation/reactivation code

11 years agolibfreerdp-core: modify server-side confirm active pdu receiving logic
Marc-André Moreau [Fri, 19 Jul 2013 22:24:56 +0000 (18:24 -0400)]
libfreerdp-core: modify server-side confirm active pdu receiving logic

11 years ago- MRDPView: rdpConnectError moved outside of the Framework, to the native App (in...
Benoît LeBlanc [Fri, 19 Jul 2013 20:33:20 +0000 (16:33 -0400)]
- MRDPView: rdpConnectError moved outside of the Framework, to the native App (in AppDelegate) This is now handled on the client side.
- freerdp_connect: all code paths now trigger a ConnectionResult event.

11 years agoFreeRDP client: turned on setting to only write modified values to RDP file.
Benoît LeBlanc [Fri, 19 Jul 2013 14:18:33 +0000 (10:18 -0400)]
FreeRDP client: turned on setting to only write modified values to RDP file.

11 years agoMerge branch 'master' of git://github.com/awakecoding/FreeRDP
Benoît LeBlanc [Fri, 19 Jul 2013 01:22:59 +0000 (21:22 -0400)]
Merge branch 'master' of git://github.com/awakecoding/FreeRDP

# By Marc-André Moreau
# Via Marc-André Moreau
* 'master' of git://github.com/awakecoding/FreeRDP:
  libfreerdp-core: wrap state transition actions

11 years agoFixed deadlock when closing session window.
Benoît LeBlanc [Fri, 19 Jul 2013 01:22:41 +0000 (21:22 -0400)]
Fixed deadlock when closing session window.

11 years agolibfreerdp-core: wrap state transition actions
Marc-André Moreau [Thu, 18 Jul 2013 21:15:10 +0000 (17:15 -0400)]
libfreerdp-core: wrap state transition actions

11 years agoMerge branch 'master' of git://github.com/awakecoding/FreeRDP
Benoît LeBlanc [Thu, 18 Jul 2013 19:49:46 +0000 (15:49 -0400)]
Merge branch 'master' of git://github.com/awakecoding/FreeRDP

# By Marc-André Moreau
# Via Marc-André Moreau
* 'master' of git://github.com/awakecoding/FreeRDP:
  libfreerdp-core: expand comments for connection sequence, split in more steps server-side connection code

11 years agoMacFreeRDP: connection now starts asynchronously.
Benoît LeBlanc [Thu, 18 Jul 2013 19:41:28 +0000 (15:41 -0400)]
MacFreeRDP: connection now starts asynchronously.
Replaced RunLoop implementation with standard pthreads.

11 years agolibfreerdp-core: expand comments for connection sequence, split in more steps server...
Marc-André Moreau [Thu, 18 Jul 2013 19:18:59 +0000 (15:18 -0400)]
libfreerdp-core: expand comments for connection sequence, split in more steps server-side connection code

11 years agoMerge branch 'master' of git://github.com/awakecoding/FreeRDP
Benoît LeBlanc [Thu, 18 Jul 2013 15:26:41 +0000 (11:26 -0400)]
Merge branch 'master' of git://github.com/awakecoding/FreeRDP

# By Marc-André Moreau
# Via Marc-André Moreau
* 'master' of git://github.com/awakecoding/FreeRDP:
  libfreerdp-core: split licensing/capability steps in server-side RDP state machine

11 years agolibfreerdp-core: split licensing/capability steps in server-side RDP state machine
Marc-André Moreau [Wed, 17 Jul 2013 21:46:58 +0000 (17:46 -0400)]
libfreerdp-core: split licensing/capability steps in server-side RDP state machine

11 years agofixed build
C-o-r-E [Wed, 17 Jul 2013 21:02:38 +0000 (17:02 -0400)]
fixed build

11 years agomerged from upstream
C-o-r-E [Wed, 17 Jul 2013 20:44:27 +0000 (16:44 -0400)]
merged from upstream

11 years agoMacFreeRDP: non-blocking connect
Benoît LeBlanc [Wed, 17 Jul 2013 20:04:55 +0000 (16:04 -0400)]
MacFreeRDP: non-blocking connect

11 years agoMacFreeRDP: async rdpStart.
Benoît LeBlanc [Wed, 17 Jul 2013 19:58:39 +0000 (15:58 -0400)]
MacFreeRDP: async rdpStart.

Merge branch 'master' of git://github.com/awakecoding/FreeRDP

# By Marc-André Moreau
# Via Marc-André Moreau
* 'master' of git://github.com/awakecoding/FreeRDP:
  libfreerdp-core: initialize queue objects earlier
  mfreerdp: fix cursor rendering

Conflicts:
client/Mac/MRDPView.m

11 years agolibfreerdp-core: initialize queue objects earlier
Marc-André Moreau [Wed, 17 Jul 2013 19:27:55 +0000 (15:27 -0400)]
libfreerdp-core: initialize queue objects earlier

11 years agoMacFreeRDP: cleanup
Benoît LeBlanc [Wed, 17 Jul 2013 15:06:41 +0000 (11:06 -0400)]
MacFreeRDP: cleanup

11 years agocodec/rfx: removed unused queue TileQueue
Norbert Federa [Wed, 17 Jul 2013 08:01:56 +0000 (10:01 +0200)]
codec/rfx: removed unused queue TileQueue

Declared, created, deleted but not used:

    git grep TileQueue
    libfreerdp/codec/rfx_types.h: wQueue* TileQueue;
    libfreerdp/codec/rfx.c:       context->priv->TileQueue = Queue_New(TRUE, -1, -1);
    libfreerdp/codec/rfx.c:       Queue_Free(context->priv->TileQueue);

11 years agoMerge pull request #1354 from awakecoding/master
Marc-André Moreau [Tue, 16 Jul 2013 18:57:34 +0000 (11:57 -0700)]
Merge pull request #1354 from awakecoding/master

Multitouch, MacFreeRDP, PubSub

11 years agomfreerdp: fix cursor rendering
Marc-André Moreau [Tue, 16 Jul 2013 18:44:49 +0000 (14:44 -0400)]
mfreerdp: fix cursor rendering

11 years agoCustom cursor now visible on mac version. Cursor is now associated with NSView for...
Benoît LeBlanc [Tue, 16 Jul 2013 16:16:44 +0000 (12:16 -0400)]
Custom cursor now visible on mac version. Cursor is now associated with NSView for automatic tracking area handling.
Makefile: updated post-build  NIB file generation events to apply to all generators for Mac Client.

11 years agoMerge branch 'master' of git://github.com/awakecoding/FreeRDP
Benoît LeBlanc [Tue, 16 Jul 2013 14:51:37 +0000 (10:51 -0400)]
Merge branch 'master' of git://github.com/awakecoding/FreeRDP

# By Norbert Federa (3) and others
# Via Bernhard Miklautz (4) and Marc-André Moreau (4)
* 'master' of git://github.com/awakecoding/FreeRDP:
  freerdp: merge with master
  channels/disp: initial MS-RDPEDISP support (8.1 Preview build)
  libfreerdp-gdi: added gdi_surface_frame_marker
  Fix for Issue #1349
  codec/rfx: use function pointer for rlgr codec
  fixed error on compilation WITH_DEBUG_RDP ON that was raising due to wrong variable in debug statement
  codec/rfx: Fixed bufferpool size used for RemoteFX

11 years agofreerdp: merge with master
Marc-André Moreau [Mon, 15 Jul 2013 21:37:46 +0000 (17:37 -0400)]
freerdp: merge with master

11 years agoMerge branch 'master' of github.com:FreeRDP/FreeRDP
Marc-André Moreau [Mon, 15 Jul 2013 21:14:40 +0000 (17:14 -0400)]
Merge branch 'master' of github.com:FreeRDP/FreeRDP

11 years agoMerge branch 'master' of github.com:mrthebunny/FreeRDP
Marc-André Moreau [Mon, 15 Jul 2013 21:14:20 +0000 (17:14 -0400)]
Merge branch 'master' of github.com:mrthebunny/FreeRDP

11 years agochannels/disp: initial MS-RDPEDISP support (8.1 Preview build)
Marc-André Moreau [Mon, 15 Jul 2013 14:43:38 +0000 (10:43 -0400)]
channels/disp: initial MS-RDPEDISP support (8.1 Preview build)