Changeset 4012:28bea7336add in roaraudio


Ignore:
Timestamp:
07/01/10 19:03:41 (14 years ago)
Author:
phi
Branch:
default
Phase:
public
Message:

typos

Files:
13 edited

Legend:

Unmodified
Added
Removed
  • doc/man1/roarbaseclients.1

    r1624 r4012  
    2424.TP 
    2525\fBroarmon\fR 
    26 Gets a copy of the audio data the server sends to the soundcard. This is usefull for streaming 
     26Gets a copy of the audio data the server sends to the soundcard. This is useful for streaming 
    2727to a server like \fBicecast2\fR(1). 
    2828 
  • doc/man1/roarctl.1

    r1204 r4012  
    8686\fBflag ID FLAGS\fR, \fBunflag ID FLAGS\fR 
    8787Sets or removes flags from a stream. ID is the stream id. 
    88 FLAGS is a comma seperated list of flags. 
     88FLAGS is a comma separated list of flags. 
    8989 
    9090It is not possible to set all kinds of flags at runtime. 
     
    105105.TP 
    106106\fBserveroinfo\fR 
    107 Gets Informations about server output. 
     107Gets Information about server output. 
    108108 
    109109.TP 
    110110\fBlistclients\fR 
    111 Gets Informations about clients. 
     111Gets Information about clients. 
    112112 
    113113.TP 
    114114\fBliststreams\fR 
    115 Gets Informations about streams. 
     115Gets Information about streams. 
    116116 
    117117.TP 
  • doc/man1/roard.1

    r1525 r4012  
    155155.TP 
    156156\fB--no-listen\fR 
    157 Do not listen for new clients (only usefull for relaing, impleys --terminate). 
     157Do not listen for new clients (only useful for relaing, impleys --terminate). 
    158158 
    159159.TP 
  • doc/man1/roarify.1

    r3084 r4012  
    1212 
    1313.SH "DESCRIPTION" 
    14 This command sets up a enviroment that enables all RoarAudio compatibility librarys. 
    15 Audio data from applications should automaticly be redirected to roard.  
     14This command sets up a environment that enables all RoarAudio compatibility librarys. 
     15Audio data from applications should automatically be redirected to roard.  
    1616 
    1717.SH "SEE ALSO" 
  • doc/man1/roartestclients.1

    r732 r4012  
    1818 
    1919.SH "DESCRIPTION" 
    20 This clients are primary for test perpose but may be usefull for someone 
     20This clients are primary for test perpose but may be useful for someone 
    2121or can be used as examples. 
    2222 
     
    3434\fBroarsin\fR 
    3535This is the complete version of the sinus generator from \fBroartut\fR(7). 
    36 It plays a 5 secund middle C (523.2Hz) sine. 
     36It plays a 5 second middle C (523.2Hz) sine. 
    3737 
    3838.TP 
  • doc/man3/roar_simple_connect.3

    r159 r4012  
    1313 
    1414.SH "DESCRIPTION" 
    15 This call opens a connection to the RoarAudio's sound server. This is usefull for controlling the server or 
     15This call opens a connection to the RoarAudio's sound server. This is useful for controlling the server or 
    1616update meta data of any kind. For simple playback see \fBroar_simple_play\fR(3). 
    1717To disconnect use \fBroar_disconnect\fR(3). 
  • doc/man3/roar_simple_new_stream.3

    r159 r4012  
    1616 
    1717.SH "DESCRIPTION" 
    18 Opens a new stream to the sound server as a independet file handle (not an execed one). This is usefull if you still want 
     18Opens a new stream to the sound server as a independet file handle (not an execed one). This is useful if you still want 
    1919some meta data or the volume to be updated after the stream is open. 
    2020 
     
    2727.TP 
    2828\fBs\fR 
    29 The stream object to be updated to corresponde to the new stream. This is usefull if use want to update some meta data 
     29The stream object to be updated to corresponde to the new stream. This is useful if use want to update some meta data 
    3030after the stream has be opened as you can use all controll commands on this object. 
    3131 
  • doc/man7/libroar.7

    r842 r4012  
    6161The default port is 22. 
    6262Note that you may need to use publickey based auth or ssh-agent because the application 
    63 may start SSH in a non interactive enviroment and SSH can not ask you for a password. 
     63may start SSH in a non interactive environment and SSH can not ask you for a password. 
    6464 
    6565 
  • doc/man7/roartips.7

    r546 r4012  
    2525 
    2626The later one will show you all information current available of the server it self, 
    27 the clients and the streams. This may include a lot of informations. 
     27the clients and the streams. This may include a lot of information. 
    2828 
    2929.SH "SERVER ADDRESS" 
    30 There a serverel types of server addresses based on the protocoll used to communicate. 
     30There a serverel types of server addresses based on the protocol used to communicate. 
    3131This lists the corrently implemented types in order of importance: 
    3232 
  • doc/man7/roartut.7

    r417 r4012  
    4949 } 
    5050 
    51 Now we want to loop for \fBlength\fR secunds: 
     51Now we want to loop for \fBlength\fR seconds: 
    5252 while (t < 2*M_PI*freq*length) { 
    5353 } 
  • roarclients/roarctl.c

    r3961 r4012  
    9494        "\n" 
    9595        "  flag   ID FLAGS         - Sets flags FLAGS on stream ID. FLAGS may be a comma\n" 
    96         "                            seperated list of flags.\n" 
     96        "                            separated list of flags.\n" 
    9797        "  unflag ID FLAGS         - Unsets flags on a stream. See flag.\n" 
    9898        "\n" 
     
    110110        "  metaload ID FILE        - Loads meta data from file FILE and set it on stream ID\n" 
    111111        "\n" 
    112         "  serveroinfo             - Gets Informations about server output\n" 
    113         "  listclients             - Gets Informations about clients\n" 
    114         "  liststreams             - Gets Informations about streams\n" 
     112        "  serveroinfo             - Gets Information about server output\n" 
     113        "  listclients             - Gets Information about clients\n" 
     114        "  liststreams             - Gets Information about streams\n" 
    115115        "  allinfo                 - Get all infos\n" 
    116116       ); 
  • roarclients/roarradio.c

    r3811 r4012  
    149149 
    150150      if ( fscanf(http, "%79s %i %79s\n", buf0, &port, buf1) != 3 ) { 
    151        ROAR_ERR("HTTP protocoll error!, no initial HTTP/1.x-line!"); 
     151       ROAR_ERR("HTTP protocol error!, no initial HTTP/1.x-line!"); 
    152152       return 1; 
    153153      } 
  • roard/roard.c

    r3992 r4012  
    8787 printf( 
    8888        " --stream-flags D=F    - Set default flags for stream directions\n" 
    89         "                         D is the stream direction and F is a comma seperated\n" 
     89        "                         D is the stream direction and F is a comma separated\n" 
    9090        "                         list of flags in form +flag or -flag to set or unset\n" 
    9191        "                         a flag as default or remove it from the default\n" 
     
    171171#ifdef IPV6_ADDRFORM 
    172172        " -64                   - Try to downgrade sockets from IPv6 into IPv4,\n" 
    173         "                         this is normaly not usefull.\n" 
     173        "                         this is normaly not useful.\n" 
    174174#endif 
    175175        " -p  --port            - TCP Port to bind to\n" 
     
    181181        "     --proto-bits BITS - Set bits per sample parameter for protocol\n" 
    182182        "     --proto-codec E   - Set codec parameter for protocol\n" 
    183         "     --proto-chans C   - Set number of channels paramter for protocol\n" 
     183        "     --proto-chans C   - Set number of channels parameter for protocol\n" 
    184184        "     --proto-aiprofile PROFILE\n" 
    185185        "                       - Sets the audio profile for socket\n"  
     
    200200        "                         You need the permissions to change the UID (normaly only root has)\n" 
    201201        " --no-listen           - Do not listen for new clients\n" 
    202         "                         (only usefull for relaing, impleys --terminate)\n" 
     202        "                         (only useful for relaing, impleys --terminate)\n" 
    203203        " --client-fh           - Comunicate with a client over this handle\n" 
    204         "                         (only usefull for relaing)\n" 
     204        "                         (only useful for relaing)\n" 
    205205        " --close-fh            - Closes the given fh\n" 
    206206        " --standby             - Start in standby state\n" 
     
    15861586 
    15871587  } else if ( strcmp(k, "-p") == 0 || strcmp(k, "--port") == 0 ) { 
    1588    // This is only usefull in INET not UNIX mode. 
     1588   // This is only useful in INET not UNIX mode. 
    15891589#ifdef ROAR_SUPPORT_LISTEN 
    15901590   if ( *sock_addr == '/' ) 
Note: See TracChangeset for help on using the changeset viewer.