summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--waltham-receiver/README.md2
-rw-r--r--waltham-transmitter/README.md4
-rw-r--r--waltham-transmitter/transmitter-plugin/plugin.c2
-rw-r--r--waltham-transmitter/transmitter-plugin/weston.ini.transmitter4
4 files changed, 6 insertions, 6 deletions
diff --git a/waltham-receiver/README.md b/waltham-receiver/README.md
index d0f63cb..93de6d8 100644
--- a/waltham-receiver/README.md
+++ b/waltham-receiver/README.md
@@ -84,7 +84,7 @@ Rename file as "pipeline_receiver.cfg" and put in correct place when you use the
$ping 192.168.2.52 (you can also ping vice versa)
-3. Make sure that IP address specified in the weston.ini under [remote-output] matches the Waltham-Receiver IP.
+3. Make sure that IP address specified in the weston.ini under [transmitter-output] matches the Waltham-Receiver IP.
4. Make sure that IP address in pipeline.cfg on the transmitter side match the Waltham-Receiver IP.
diff --git a/waltham-transmitter/README.md b/waltham-transmitter/README.md
index b358cfd..15cafe4 100644
--- a/waltham-transmitter/README.md
+++ b/waltham-transmitter/README.md
@@ -72,7 +72,7 @@ Waltham Transmitter is divide in to two component:
The destination of remoting is configured in weston.ini.
Add output name, server address, port number, output's width and height key
- under '[remote-output]'. You can speficy multiple [remote-output].
+ under '[transmitter-output]'. You can speficy multiple [transmitter-output].
In details, see 'weston.ini.transmitter'.
@@ -99,7 +99,7 @@ Waltham Transmitter is divide in to two component:
$ping 192.168.2.52 (you can also ping vice versa)
-3. Make sure that IP address specified in the weston.ini under [remote-output] matches the Waltham-Receiver IP.
+3. Make sure that IP address specified in the weston.ini under [transmitter-output] matches the Waltham-Receiver IP.
4. Make sure that IP address in pipeline.cfg on the transmitter side match the Waltham-Receiver IP.
diff --git a/waltham-transmitter/transmitter-plugin/plugin.c b/waltham-transmitter/transmitter-plugin/plugin.c
index 66c115f..65ebdf6 100644
--- a/waltham-transmitter/transmitter-plugin/plugin.c
+++ b/waltham-transmitter/transmitter-plugin/plugin.c
@@ -861,7 +861,7 @@ transmitter_get_server_config(struct weston_transmitter *txr)
section = weston_config_get_section(config, "remote", NULL, NULL);
while (weston_config_next_section(config, &section, &name)) {
- if (0 == strcmp(name, "remote-output")) {
+ if (0 == strcmp(name, "transmitter-output")) {
if (0 != weston_config_section_get_string(section, "output-name",
&model, 0))
continue;
diff --git a/waltham-transmitter/transmitter-plugin/weston.ini.transmitter b/waltham-transmitter/transmitter-plugin/weston.ini.transmitter
index 1aff0b2..0c31258 100644
--- a/waltham-transmitter/transmitter-plugin/weston.ini.transmitter
+++ b/waltham-transmitter/transmitter-plugin/weston.ini.transmitter
@@ -6,14 +6,14 @@ modules=transmitter.so
ivi-module=ivi-controller.so
ivi-input-module=ivi-input-controller.so
-[remote-output]
+[transmitter-output]
output-name=transmitter_1
server-address=192.168.2.11
port=34400
width=1920
height=1080
-[remote-output]
+[transmitter-output]
output-name=transmitter_2
server-address=192.168.2.12
port=34400
ref='#n278'>278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504