Skip to content

Commit

Permalink
GFX: add config which to prefer H264 vs RFX
Browse files Browse the repository at this point in the history
  • Loading branch information
metalefty committed Aug 23, 2024
1 parent 294a756 commit 22f1349
Show file tree
Hide file tree
Showing 8 changed files with 111 additions and 1 deletion.
7 changes: 6 additions & 1 deletion tests/xrdp/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,12 @@ EXTRA_DIST = \
test_not4_8bit.bmp \
test_not4_24bit.bmp \
test1.jpg \
test_alpha_blend.png
test_alpha_blend.png \
gfx/gfx.toml\
gfx/gfx_codec_order_undefined.toml \
gfx/gfx_codec_h264_preferred.toml \
gfx/gfx_codec_rfx_preferred.toml


TESTS = test_xrdp
check_PROGRAMS = test_xrdp
Expand Down
3 changes: 3 additions & 0 deletions tests/xrdp/gfx/gfx_codec_h264_preferred.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[codec]

order = [ "H264", "RFX" ]
3 changes: 3 additions & 0 deletions tests/xrdp/gfx/gfx_codec_order_undefined.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[codec]

order = [ ]
3 changes: 3 additions & 0 deletions tests/xrdp/gfx/gfx_codec_rfx_preferred.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[codec]

order = [ "RFX", "H264" ]
19 changes: 19 additions & 0 deletions tests/xrdp/test_tconfig.c
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,24 @@ START_TEST(test_tconfig_gfx_x264_load_basic)
}
END_TEST

START_TEST(test_tconfig_gfx_codec_order)
{
struct xrdp_tconfig_gfx gfxconfig;

/* H264 earlier */
tconfig_load_gfx("./gfx/gfx_codec_h264_preferred.toml", &gfxconfig);
ck_assert_int_lt(gfxconfig.codec.h264_idx, gfxconfig.codec.rfx_idx);

/* RFX earlier */
tconfig_load_gfx("./gfx/gfx_codec_rfx_preferred.toml", &gfxconfig);
ck_assert_int_lt(gfxconfig.codec.rfx_idx, gfxconfig.codec.h264_idx);

/* RFX is preferred if order undefined */
tconfig_load_gfx("./gfx/gfx_codec_order_undefined.toml", &gfxconfig);
ck_assert_int_lt(gfxconfig.codec.h264_idx, gfxconfig.codec.rfx_idx);
}
END_TEST

/******************************************************************************/
Suite *
make_suite_tconfig_load_gfx(void)
Expand All @@ -43,6 +61,7 @@ make_suite_tconfig_load_gfx(void)
tc_tconfig_load_gfx = tcase_create("xrdp_tconfig_load_gfx");
tcase_add_test(tc_tconfig_load_gfx, test_tconfig_gfx_always_success);
tcase_add_test(tc_tconfig_load_gfx, test_tconfig_gfx_x264_load_basic);
tcase_add_test(tc_tconfig_load_gfx, test_tconfig_gfx_codec_order);

suite_add_tcase(s, tc_tconfig_load_gfx);

Expand Down
3 changes: 3 additions & 0 deletions xrdp/gfx.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
[codec]
order = [ "H264", "RFX" ]

[x264.default]
preset = "ultrafast"
tune = "zerolatency"
Expand Down
67 changes: 67 additions & 0 deletions xrdp/xrdp_tconfig.c
Original file line number Diff line number Diff line change
Expand Up @@ -199,6 +199,70 @@ tconfig_load_gfx_x264_ct(toml_table_t *tfile, const int connection_type,
return 0;
}

static int tconfig_load_gfx_order(toml_table_t *tfile, struct xrdp_tconfig_gfx *config)
{
TCLOG(LOG_LEVEL_DEBUG, "tconfig_load_gfx_order:");

int h264_found = 0;
int rfx_found = 0;

toml_table_t *codec = toml_table_in(tfile, "codec");
if (!codec)
{
goto return_default_codec_order;
}

toml_array_t *order = toml_array_in(codec, "order");
if (!order)
{
goto return_default_codec_order;
}

for (int i = 0; ; i++)
{
toml_datum_t datum = toml_string_at(order, i);

if (datum.ok)
{
if (g_strcasecmp(datum.u.s, "h264") == 0 ||
g_strcasecmp(datum.u.s, "h.264") == 0)
{
h264_found = 1;
config->codec.h264_idx = i;
}
if (g_strcasecmp(datum.u.s, "rfx") == 0)
{
rfx_found = 1;
config->codec.rfx_idx = i;
}
free(datum.u.s);
}
else
{
break;
}
}

if (h264_found == 0 && rfx_found == 0)
{
goto return_default_codec_order;
}

TCLOG(LOG_LEVEL_DEBUG, "codec_order: h264_idx=%d, rfx_idx=%d",
config->codec.h264_idx, config->codec.rfx_idx);
return 0;

return_default_codec_order:
config->codec.h264_idx = 0;
config->codec.rfx_idx = 1;

TCLOG(LOG_LEVEL_ERROR, "coder_order: could not get codec order, using default order"
"h264_idx=%d, rfx_idx=%d",
config->codec.h264_idx, config->codec.rfx_idx);

return 1;
}

int
tconfig_load_gfx(const char *filename, struct xrdp_tconfig_gfx *config)
{
Expand All @@ -225,6 +289,9 @@ tconfig_load_gfx(const char *filename, struct xrdp_tconfig_gfx *config)

memset(config, 0, sizeof(struct xrdp_tconfig_gfx));

/* Load GFX order */
tconfig_load_gfx_order(tfile, config);

/* First of all, read the default params and override later */
tconfig_load_gfx_x264_ct(tfile, 0, config->x264_param);

Expand Down
7 changes: 7 additions & 0 deletions xrdp/xrdp_tconfig.h
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,15 @@ struct xrdp_tconfig_gfx_x264_param
int fps_den;
};

struct xrdp_tconfig_gfx_codec_order
{
int h264_idx;
int rfx_idx;
};

struct xrdp_tconfig_gfx
{
struct xrdp_tconfig_gfx_codec_order codec;
/* store x264 parameters for each connection type */
struct xrdp_tconfig_gfx_x264_param x264_param[NUM_CONNECTION_TYPES];
};
Expand Down

0 comments on commit 22f1349

Please sign in to comment.