Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/neutrinolabs/xorgxrdp.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authora1346054 <36859588+a1346054@users.noreply.github.com>2022-09-03 01:54:07 +0300
committera1346054 <36859588+a1346054@users.noreply.github.com>2022-09-03 02:28:28 +0300
commit211fc48fec552841bf3762c302076650088a4ee9 (patch)
treec10f4b990e30f1414e8674fd815317df97282e2b
parent5a067390e062cb29c35895055dbf9abca6a80337 (diff)
trim trailing whitespace
-rw-r--r--module/rdpClientCon.c2
-rw-r--r--module/rdpImageText8.c2
-rw-r--r--tests/yuv2rgb/yuv2rgb_speed.c4
3 files changed, 4 insertions, 4 deletions
diff --git a/module/rdpClientCon.c b/module/rdpClientCon.c
index cd1d2f9..e4e0317 100644
--- a/module/rdpClientCon.c
+++ b/module/rdpClientCon.c
@@ -693,7 +693,7 @@ rdpClientConAllocateSharedMemory(rdpClientCon *clientCon, int bytes)
clientCon->shmemid));
return;
}
-
+
if (clientCon->shmemptr != 0)
{
shmdt(clientCon->shmemptr);
diff --git a/module/rdpImageText8.c b/module/rdpImageText8.c
index efaa430..121824b 100644
--- a/module/rdpImageText8.c
+++ b/module/rdpImageText8.c
@@ -30,7 +30,7 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
/* this should be before all X11 .h files */
#include <xorg-server.h>
#include <xorgVersion.h>
-
+
/* all driver need this */
#include <xf86.h>
#include <xf86_OSproc.h>
diff --git a/tests/yuv2rgb/yuv2rgb_speed.c b/tests/yuv2rgb/yuv2rgb_speed.c
index b4d484f..0298630 100644
--- a/tests/yuv2rgb/yuv2rgb_speed.c
+++ b/tests/yuv2rgb/yuv2rgb_speed.c
@@ -80,7 +80,7 @@ yuv to rgb speed testing
_Y = ( ((1053 * ((_R) << 4)) >> 16) + ((2064 * ((_G) << 4)) >> 16) + (( 401 * ((_B) << 4)) >> 16)) + 16; \
_U = ( ((1798 * ((_B) << 4)) >> 16) - (( 606 * ((_R) << 4)) >> 16) - ((1192 * ((_G) << 4)) >> 16)) + 128; \
_V = ( ((1798 * ((_R) << 4)) >> 16) - ((1507 * ((_G) << 4)) >> 16) - (( 291 * ((_B) << 4)) >> 16)) + 128;
-
+
/******************************************************************************/
static int
a8r8g8b8_to_nv12_box(char *s8, int src_stride,
@@ -173,7 +173,7 @@ a8r8g8b8_to_nv12_box(char *s8, int src_stride,
}
}
- return 0;
+ return 0;
}
int output_params(void)