Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

unify the code styles using the style_unify script #246

Merged
merged 2 commits into from
Sep 30, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
230 changes: 115 additions & 115 deletions common/loadsurface.h

Large diffs are not rendered by default.

57,608 changes: 28,804 additions & 28,804 deletions common/loadsurface_yuv.h

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions common/va_display.c
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@
* distribute, sub license, and/or sell copies of the Software, and to
* permit persons to whom the Software is furnished to do so, subject to
* the following conditions:
*
*
* The above copyright notice and this permission notice (including the
* next paragraph) shall be included in all copies or substantial portions
* of the Software.
*
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
* OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.
Expand Down
14 changes: 7 additions & 7 deletions common/va_display.h
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@
* distribute, sub license, and/or sell copies of the Software, and to
* permit persons to whom the Software is furnished to do so, subject to
* the following conditions:
*
*
* The above copyright notice and this permission notice (including the
* next paragraph) shall be included in all copies or substantial portions
* of the Software.
*
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
* OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.
Expand All @@ -34,11 +34,11 @@ extern "C" {

typedef struct {
const char *name;
VADisplay (*open_display) (void);
void (*close_display) (VADisplay va_dpy);
VAStatus (*put_surface) (VADisplay va_dpy, VASurfaceID surface,
const VARectangle *src_rect,
const VARectangle *dst_rect);
VADisplay(*open_display)(void);
void (*close_display)(VADisplay va_dpy);
VAStatus(*put_surface)(VADisplay va_dpy, VASurfaceID surface,
const VARectangle *src_rect,
const VARectangle *dst_rect);
} VADisplayHooks;

void
Expand Down
4 changes: 2 additions & 2 deletions common/va_display_android.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@
* distribute, sub license, and/or sell copies of the Software, and to
* permit persons to whom the Software is furnished to do so, subject to
* the following conditions:
*
*
* The above copyright notice and this permission notice (including the
* next paragraph) shall be included in all copies or substantial portions
* of the Software.
*
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
* OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.
Expand Down
13 changes: 6 additions & 7 deletions common/va_display_wayland.c
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@
* distribute, sub license, and/or sell copies of the Software, and to
* permit persons to whom the Software is furnished to do so, subject to
* the following conditions:
*
*
* The above copyright notice and this permission notice (including the
* next paragraph) shall be included in all copies or substantial portions
* of the Software.
*
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
* OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.
Expand Down Expand Up @@ -75,8 +75,7 @@ va_open_display_wayland(void)
if (g_display) {
d = g_display;
d->ref_count++;
}
else {
} else {
d = calloc(1, sizeof(*d));
if (!d)
return NULL;
Expand Down Expand Up @@ -181,9 +180,9 @@ va_put_surface_wayland(

wl_surface_attach(d->surface, buffer, 0, 0);
wl_surface_damage(
d->surface,
dst_rect->x, dst_rect->y, dst_rect->width, dst_rect->height
);
d->surface,
dst_rect->x, dst_rect->y, dst_rect->width, dst_rect->height
);

wl_surface_commit(d->surface);
wl_display_flush(d->display);
Expand Down
14 changes: 7 additions & 7 deletions common/va_display_x11.c
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@
* distribute, sub license, and/or sell copies of the Software, and to
* permit persons to whom the Software is furnished to do so, subject to
* the following conditions:
*
*
* The above copyright notice and this permission notice (including the
* next paragraph) shall be included in all copies or substantial portions
* of the Software.
*
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
* OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.
Expand Down Expand Up @@ -77,11 +77,11 @@ ensure_window(unsigned int width, unsigned int height)
white_pixel = WhitePixel(x11_display, screen);

win = XCreateSimpleWindow(
x11_display,
rootwin,
0, 0, width, height,
1, black_pixel, white_pixel
);
x11_display,
rootwin,
0, 0, width, height,
1, black_pixel, white_pixel
);
if (!win)
return 0;
x11_window = win;
Expand Down
130 changes: 65 additions & 65 deletions decode/loadjpeg.c
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
* All rights reserved.
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
*
* - Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
*
Expand All @@ -17,7 +17,7 @@
* - Neither the name of the author nor the names of its contributors may be
* used to endorse or promote products derived from this software without
* specific prior written permission.
*
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
Expand All @@ -42,65 +42,65 @@
static void exitmessage(const char *message) __attribute__((noreturn));
static void exitmessage(const char *message)
{
printf("%s\n", message);
exit(0);
printf("%s\n", message);
exit(0);
}

static int filesize(FILE *fp)
{
long pos;
fseek(fp, 0, SEEK_END);
pos = ftell(fp);
fseek(fp, 0, SEEK_SET);
return pos;
long pos;
fseek(fp, 0, SEEK_END);
pos = ftell(fp);
fseek(fp, 0, SEEK_SET);
return pos;
}

/**
* Load one jpeg image, and decompress it, and save the result.
*/
int convert_one_image(const char *infilename)
{
FILE *fp;
unsigned int length_of_file;
unsigned int width, height;
unsigned char *buf;
struct jdec_private *jdec;
size_t n_items;

/* Load the Jpeg into memory */
fp = fopen(infilename, "rb");
if (fp == NULL)
exitmessage("Cannot open filename\n");
length_of_file = filesize(fp);
buf = (unsigned char *)malloc(length_of_file + 4);
if (buf == NULL)
exitmessage("Not enough memory for loading file\n");
n_items = fread(buf, length_of_file, 1, fp);
fclose(fp);
if (n_items != 1) {
free(buf);
exitmessage("Reading file fail\n");
}

/* Decompress it */
jdec = tinyjpeg_init();
if (jdec == NULL)
exitmessage("Not enough memory to alloc the structure need for decompressing\n");

if (tinyjpeg_parse_header(jdec, buf, length_of_file)<0)
exitmessage(tinyjpeg_get_errorstring(jdec));

/* Get the size of the image */
tinyjpeg_get_size(jdec, &width, &height);

printf("Decoding JPEG image %dx%d...\n", width, height);
if (tinyjpeg_decode(jdec) < 0)
exitmessage(tinyjpeg_get_errorstring(jdec));

tinyjpeg_free(jdec);

free(buf);
return 0;
FILE *fp;
unsigned int length_of_file;
unsigned int width, height;
unsigned char *buf;
struct jdec_private *jdec;
size_t n_items;

/* Load the Jpeg into memory */
fp = fopen(infilename, "rb");
if (fp == NULL)
exitmessage("Cannot open filename\n");
length_of_file = filesize(fp);
buf = (unsigned char *)malloc(length_of_file + 4);
if (buf == NULL)
exitmessage("Not enough memory for loading file\n");
n_items = fread(buf, length_of_file, 1, fp);
fclose(fp);
if (n_items != 1) {
free(buf);
exitmessage("Reading file fail\n");
}

/* Decompress it */
jdec = tinyjpeg_init();
if (jdec == NULL)
exitmessage("Not enough memory to alloc the structure need for decompressing\n");

if (tinyjpeg_parse_header(jdec, buf, length_of_file) < 0)
exitmessage(tinyjpeg_get_errorstring(jdec));

/* Get the size of the image */
tinyjpeg_get_size(jdec, &width, &height);

printf("Decoding JPEG image %dx%d...\n", width, height);
if (tinyjpeg_decode(jdec) < 0)
exitmessage(tinyjpeg_get_errorstring(jdec));

tinyjpeg_free(jdec);

free(buf);
return 0;
}

static void usage(void)
Expand All @@ -115,26 +115,26 @@ static void usage(void)
*/
int main(int argc, char *argv[])
{
char *input_filename;
clock_t start_time, finish_time;
unsigned int duration;
int current_argument;
char *input_filename;
clock_t start_time, finish_time;
unsigned int duration;
int current_argument;

va_init_display_args(&argc, argv);
va_init_display_args(&argc, argv);

if (argc < 2)
usage();
if (argc < 2)
usage();

current_argument = 1;
input_filename = argv[current_argument];
current_argument = 1;
input_filename = argv[current_argument];

start_time = clock();
convert_one_image(input_filename);
finish_time = clock();
duration = finish_time - start_time;
printf("Decoding finished in %u ticks\n", duration);
start_time = clock();
convert_one_image(input_filename);
finish_time = clock();
duration = finish_time - start_time;
printf("Decoding finished in %u ticks\n", duration);

return 0;
return 0;
}


Expand Down
Loading