Changeset 6123 for pjproject/trunk/pjsip-apps/src/pjsua/pjsua_app_legacy.c
- Timestamp:
- Dec 23, 2019 3:27:09 AM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/pjsip-apps/src/pjsua/pjsua_app_legacy.c
r6028 r6123 297 297 puts("| vid win move ID X Y Move window ID to position X,Y |"); 298 298 puts("| vid win resize ID w h Resize window ID to the specified width, height |"); 299 puts("| vid win full on|off ID Set fullscreen on/off for window ID |"); 299 300 puts("| vid conf list List all video ports in video conference bridge |"); 300 301 puts("| vid conf cc P Q Connect port P to Q in the video conf bridge |"); … … 500 501 } else if (argc==3 && strcmp(argv[2], "arrange")==0) { 501 502 arrange_window(PJSUA_INVALID_ID); 503 } else if (argc==5 && (strcmp(argv[2], "full")==0)) 504 { 505 pjsua_vid_win_id wid = atoi(argv[4]); 506 pj_bool_t fullscreen = (strcmp(argv[3], "on")==0); 507 status = pjsua_vid_win_set_fullscreen(wid, fullscreen); 502 508 } else 503 509 goto on_error;
Note: See TracChangeset
for help on using the changeset viewer.