Changeset 241

Show
Ignore:
Timestamp:
06/02/06 03:57:02 (17 years ago)
Author:
pieterpalmers
Message:

* configure.ac: Version bump to 1.0.0

* Changed all FreeBob? to FreeBoB
* Removed all .cvsignore
* Added Pieter to AUTHORS
* Updated NEWS and README (release canditate date added)

by Daniel Wagner

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/libfreebob/.cvsignore

    r134 r241  
    1 .cvsignore 
    2 Makefile 
    3 Makefile.in 
    4 aclocal.m4 
    5 autom4te.cache 
    6 config.* 
    7 configure 
    8 libfreebob.pc 
    9 libtool 
    10 stamp* 
    11 libfreebob-*.tar.gz 
  • trunk/libfreebob/AUTHORS

    r125 r241  
     1Pieter Palmers  <pieterpalmers@users.sourceforge.net> 
    12Daniel Wagner <wagi@monom.org> 
  • trunk/libfreebob/ChangeLog

    r238 r241  
     12006-06-01  Daniel Wagner  <wagi@monom.org> 
     2 
     3        * configure.ac: Version bump to 1.0.0 
     4 
     5        * Changed all FreeBob to FreeBoB 
     6        * Removed all .cvsignore 
     7        * Added Pieter to AUTHORS 
     8        * Updated NEWS and README (release canditate date added) 
     9 
    1102006-05-31  Daniel Wagner  <wagi@monom.org> 
    211 
  • trunk/libfreebob/configure.ac

    r238 r241  
    1 # configure.ac - Configure script for FreeBob
     1# configure.ac - Configure script for FreeBoB
    22# Copyright (C) 2005,06 by Daniel Wagner. 
    33# Copyright (C) 2006    by Pieter Palmers. 
    44# 
    5 # This file is part of FreeBob
     5# This file is part of FreeBoB
    66# 
    7 # FreeBob is free software; you can redistribute it and/or modify 
     7# FreeBoB is free software; you can redistribute it and/or modify 
    88# it under the terms of the GNU General Public License as published by 
    99# the Free Software Foundation; either version 2 of the License, or 
    1010# (at your option) any later version. 
    11 # FreeBob is distributed in the hope that it will be useful, 
     11# FreeBoB is distributed in the hope that it will be useful, 
    1212# but WITHOUT ANY WARRANTY; without even the implied warranty of 
    1313# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
    1414# GNU General Public License for more details. 
    1515# You should have received a copy of the GNU General Public License 
    16 # along with FreeBob; if not, write to the Free Software 
     16# along with FreeBoB; if not, write to the Free Software 
    1717# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA 
    1818# 
     
    2222AC_PREREQ(2.57) 
    2323 
    24 m4_define(freebob_major_version, 0
    25 m4_define(freebob_minor_version, 9
    26 m4_define(freebob_micro_version, 5
     24m4_define(freebob_major_version, 1
     25m4_define(freebob_minor_version, 0
     26m4_define(freebob_micro_version, 0
    2727 
    2828m4_define(freebob_version, freebob_major_version.freebob_minor_version.freebob_micro_version) 
     
    244244AC_MSG_RESULT([ 
    245245 
    246 FreeBob $VERSION is now configured for $canonical_host_type 
     246FreeBoB $VERSION is now configured for $canonical_host_type 
    247247 
    248248  Source directory:     $srcdir 
  • trunk/libfreebob/libfreebob.pc.in

    r125 r241  
    55 
    66Name: libfreebob 
    7 Description: FreeBob 
     7Description: FreeBoB 
    88Version: @VERSION@ 
    99Libs: -L${libdir} -lfreebob 
  • trunk/libfreebob/libfreebob/.cvsignore

    r134 r241  
    1 .cvsignore 
    2 Makefile 
    3 Makefile.in 
  • trunk/libfreebob/libfreebob/freebob_streaming.h

    r224 r241  
    11/* 
    2  *   FreeBob Streaming API 
    3  *   FreeBob = Firewire (pro-)audio for linux 
     2 *   FreeBoB Streaming API 
     3 *   FreeBoB = Firewire (pro-)audio for linux 
    44 * 
    55 *   http://freebob.sf.net 
     
    2727/* freebob_streaming.h 
    2828 * 
    29  * Specification for the FreeBob Streaming API 
     29 * Specification for the FreeBoB Streaming API 
    3030 * 
    3131 */ 
     
    158158 
    159159/** 
    160  * Initializes the streaming from/to a FreeBob device. A FreeBob device 
     160 * Initializes the streaming from/to a FreeBoB device. A FreeBoB device 
    161161 * is a virtual device composed of several BeBoB or compatible devices, 
    162162 * linked together in one sync domain. 
     
    176176 
    177177/** 
    178  * Finishes the FreeBob streaming. Cleans up all internal data structures 
     178 * Finishes the FreeBoB streaming. Cleans up all internal data structures 
    179179 * and terminates connections. 
    180180 * 
     
    283283 
    284284/** 
    285  * Starts the streaming operation. This initiates the connections to the FreeBob devices and 
     285 * Starts the streaming operation. This initiates the connections to the FreeBoB devices and 
    286286 * starts the packet handling thread(s). This has to be called before any I/O can occur. 
    287287 * 
     
    293293 
    294294/** 
    295  * Stops the streaming operation. This closes the connections to the FreeBob devices and 
     295 * Stops the streaming operation. This closes the connections to the FreeBoB devices and 
    296296 * stops the packet handling thread(s).  
    297297 * 
  • trunk/libfreebob/libfreebob/Makefile.am

    r213 r241  
    22# Copyright (C) 2005 by Daniel Wagner. 
    33# 
    4 # This file is part of FreeBob
     4# This file is part of FreeBoB
    55# 
    6 # FreeBob is free software; you can redistribute it and/or modify 
     6# FreeBoB is free software; you can redistribute it and/or modify 
    77# it under the terms of the GNU General Public License as published by 
    88# the Free Software Foundation; either version 2 of the License, or 
    99# (at your option) any later version. 
    10 # FreeBob is distributed in the hope that it will be useful, 
     10# FreeBoB is distributed in the hope that it will be useful, 
    1111# but WITHOUT ANY WARRANTY; without even the implied warranty of 
    1212# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
    1313# GNU General Public License for more details. 
    1414# You should have received a copy of the GNU General Public License 
    15 # along with FreeBob; if not, write to the Free Software 
     15# along with FreeBoB; if not, write to the Free Software 
    1616# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA 
    1717 
  • trunk/libfreebob/Makefile.am

    r125 r241  
    22# Copyright (C) 2005 by Daniel Wagner. 
    33# 
    4 # This file is part of FreeBob
     4# This file is part of FreeBoB
    55# 
    6 # FreeBob is free software; you can redistribute it and/or modify 
     6# FreeBoB is free software; you can redistribute it and/or modify 
    77# it under the terms of the GNU General Public License as published by 
    88# the Free Software Foundation; either version 2 of the License, or 
    99# (at your option) any later version. 
    10 # FreeBob is distributed in the hope that it will be useful, 
     10# FreeBoB is distributed in the hope that it will be useful, 
    1111# but WITHOUT ANY WARRANTY; without even the implied warranty of 
    1212# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
    1313# GNU General Public License for more details. 
    1414# You should have received a copy of the GNU General Public License 
    15 # along with FreeBob; if not, write to the Free Software 
     15# along with FreeBoB; if not, write to the Free Software 
    1616# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA 
    1717 
  • trunk/libfreebob/NEWS

    r125 r241  
     101.06.2006: 1.0.0 release candidate of libfreebob called 'Take it away Genghis' release. 
    1226.12.2005: First beta release of libfreebob called 'late x-mass gift' release. 
  • trunk/libfreebob/README

    r215 r241  
    1 FreeBob version 0.9.0 (RC1) 
    2 =========================== 
     1FreeBoB version 1.0.0 
     2===================== 
    33 
    44This project aims to provide a free driver implemenation for the BeBoB 
    5 platform.  The BeBob is used in many available IEEE 1394 based break-out  
     5platform.  The BeBoB is used in many available IEEE 1394 based break-out  
    66boxes. 
    7  
    8 This is the release candidate of libfreebob. 
    97 
    108Dependencies 
    119------------ 
    1210 
    13 To build libfreebob you need several libraries. For all libraries a version 
    14 is provided which is a 'known good' version (all tested with a debian testing 
    15 installation).  The first few libraries it seems it is not necessary that  
    16 the version must match. The chances that it works also with an older versions  
    17 are good: 
     11To build libfreebob you need several libraries. For all libraries a 
     12version is provided which is a 'known good' version.  The first few 
     13libraries it seems it is not necessary that the version must 
     14match. The chances that it works also with an older versions are good: 
    1815 
    1916alsa        (>= 1.0.0) 
     
    2421 
    2522libraw1394  (>= 1.2.1),  http://www.linux1394.org 
    26 libiec61883 (>= 1.1.0),  http://www.linux1394.org 
     23libiec61883 (>= 1.0.0),  http://www.linux1394.org 
    2724libavc1394  (>= 0.5.3),  http://sourceforge.net/projects/libavc1394 
    2825 
     
    9491For the other aspects of jackd usage, consult the jackd documentation. 
    9592 
     93Here is a sample session (without realtime support enabled): 
     94 
     95[wagi@halo ~]$ jackd -d freebob 
     96jackd 0.102.9 
     97Copyright 2001-2005 Paul Davis and others. 
     98jackd comes with ABSOLUTELY NO WARRANTY 
     99This is free software, and you are welcome to redistribute it 
     100under certain conditions; see the file COPYING for details 
     101 
     102JACK compiled with System V SHM support. 
     103loading driver .. 
     104Freebob using Firewire port 0, node -1 
     105libiec61883 warning: Established connection on channel 0. 
     106You may need to manually set the channel on the receiving node. 
     107libiec61883 warning: Established connection on channel 1. 
     108You may need to manually set the channel on the transmitting node. 
     109 
    96110In case of problems 
    97111------------------- 
  • trunk/libfreebob/src/.cvsignore

    r134 r241  
    1 .cvsignore 
    2 Makefile 
    3 Makefile.in 
    4 .deps 
    5 .libs 
    6 *.lo 
    7 *.la 
  • trunk/libfreebob/src/bebob/bebob_avdevice.cpp

    r231 r241  
    22 * Copyright (C) 2005,06 by Daniel Wagner 
    33 * 
    4  * This file is part of FreeBob
     4 * This file is part of FreeBoB
    55 * 
    6  * FreeBob is free software; you can redistribute it and/or modify 
     6 * FreeBoB is free software; you can redistribute it and/or modify 
    77 * it under the terms of the GNU General Public License as published by 
    88 * the Free Software Foundation; either version 2 of the License, or 
    99 * (at your option) any later version. 
    10  * FreeBob is distributed in the hope that it will be useful, 
     10 * FreeBoB is distributed in the hope that it will be useful, 
    1111 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    1212 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     
    1414 * 
    1515 * You should have received a copy of the GNU General Public License 
    16  * along with FreeBob; if not, write to the Free Software 
     16 * along with FreeBoB; if not, write to the Free Software 
    1717 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, 
    1818 * MA 02111-1307 USA. 
     
    437437    subUnitInfoCmd.setCommandType( AVCCommand::eCT_Status ); 
    438438 
    439     // BeBob has always exactly one audio and one music subunit. This 
     439    // BeBoB has always exactly one audio and one music subunit. This 
    440440    // means is fits into the first page of the SubUnitInfo command. 
    441441    // So there is no need to do more than needed 
  • trunk/libfreebob/src/bebob/bebob_avdevice.h

    r231 r241  
    22 * Copyright (C) 2005,06 by Daniel Wagner 
    33 * 
    4  * This file is part of FreeBob
     4 * This file is part of FreeBoB
    55 * 
    6  * FreeBob is free software; you can redistribute it and/or modify 
     6 * FreeBoB is free software; you can redistribute it and/or modify 
    77 * it under the terms of the GNU General Public License as published by 
    88 * the Free Software Foundation; either version 2 of the License, or 
    99 * (at your option) any later version. 
    10  * FreeBob is distributed in the hope that it will be useful, 
     10 * FreeBoB is distributed in the hope that it will be useful, 
    1111 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    1212 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     
    1414 * 
    1515 * You should have received a copy of the GNU General Public License 
    16  * along with FreeBob; if not, write to the Free Software 
     16 * along with FreeBoB; if not, write to the Free Software 
    1717 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, 
    1818 * MA 02111-1307 USA. 
  • trunk/libfreebob/src/bebob/bebob_avdevice_subunit.cpp

    r187 r241  
    22 * Copyright (C) 2005,06 by Daniel Wagner 
    33 * 
    4  * This file is part of FreeBob
     4 * This file is part of FreeBoB
    55 * 
    6  * FreeBob is free software; you can redistribute it and/or modify 
     6 * FreeBoB is free software; you can redistribute it and/or modify 
    77 * it under the terms of the GNU General Public License as published by 
    88 * the Free Software Foundation; either version 2 of the License, or 
    99 * (at your option) any later version. 
    10  * FreeBob is distributed in the hope that it will be useful, 
     10 * FreeBoB is distributed in the hope that it will be useful, 
    1111 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    1212 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     
    1414 * 
    1515 * You should have received a copy of the GNU General Public License 
    16  * along with FreeBob; if not, write to the Free Software 
     16 * along with FreeBoB; if not, write to the Free Software 
    1717 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, 
    1818 * MA 02111-1307 USA. 
  • trunk/libfreebob/src/bebob/bebob_avdevice_subunit.h

    r187 r241  
    22 * Copyright (C) 2005,06 by Daniel Wagner 
    33 * 
    4  * This file is part of FreeBob
     4 * This file is part of FreeBoB
    55 * 
    6  * FreeBob is free software; you can redistribute it and/or modify 
     6 * FreeBoB is free software; you can redistribute it and/or modify 
    77 * it under the terms of the GNU General Public License as published by 
    88 * the Free Software Foundation; either version 2 of the License, or 
    99 * (at your option) any later version. 
    10  * FreeBob is distributed in the hope that it will be useful, 
     10 * FreeBoB is distributed in the hope that it will be useful, 
    1111 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    1212 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     
    1414 * 
    1515 * You should have received a copy of the GNU General Public License 
    16  * along with FreeBob; if not, write to the Free Software 
     16 * along with FreeBoB; if not, write to the Free Software 
    1717 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, 
    1818 * MA 02111-1307 USA. 
  • trunk/libfreebob/src/bebob/bebob_avdevice_xml.cpp

    r187 r241  
    22 * Copyright (C) 2006 by Daniel Wagner 
    33 * 
    4  * This file is part of FreeBob
     4 * This file is part of FreeBoB
    55 * 
    6  * FreeBob is free software; you can redistribute it and/or modify 
     6 * FreeBoB is free software; you can redistribute it and/or modify 
    77 * it under the terms of the GNU General Public License as published by 
    88 * the Free Software Foundation; either version 2 of the License, or 
    99 * (at your option) any later version. 
    10  * FreeBob is distributed in the hope that it will be useful, 
     10 * FreeBoB is distributed in the hope that it will be useful, 
    1111 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    1212 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     
    1414 * 
    1515 * You should have received a copy of the GNU General Public License 
    16  * along with FreeBob; if not, write to the Free Software 
     16 * along with FreeBoB; if not, write to the Free Software 
    1717 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, 
    1818 * MA 02111-1307 USA. 
  • trunk/libfreebob/src/bebob/bebob_avplug.cpp

    r187 r241  
    22 * Copyright (C) 2005,06 by Daniel Wagner 
    33 * 
    4  * This file is part of FreeBob
     4 * This file is part of FreeBoB
    55 * 
    6  * FreeBob is free software; you can redistribute it and/or modify 
     6 * FreeBoB is free software; you can redistribute it and/or modify 
    77 * it under the terms of the GNU General Public License as published by 
    88 * the Free Software Foundation; either version 2 of the License, or 
    99 * (at your option) any later version. 
    10  * FreeBob is distributed in the hope that it will be useful, 
     10 * FreeBoB is distributed in the hope that it will be useful, 
    1111 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    1212 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     
    1414 * 
    1515 * You should have received a copy of the GNU General Public License 
    16  * along with FreeBob; if not, write to the Free Software 
     16 * along with FreeBoB; if not, write to the Free Software 
    1717 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, 
    1818 * MA 02111-1307 USA. 
  • trunk/libfreebob/src/bebob/bebob_avplug.h

    r187 r241  
    22 * Copyright (C) 2005,06 by Daniel Wagner 
    33 * 
    4  * This file is part of FreeBob
     4 * This file is part of FreeBoB
    55 * 
    6  * FreeBob is free software; you can redistribute it and/or modify 
     6 * FreeBoB is free software; you can redistribute it and/or modify 
    77 * it under the terms of the GNU General Public License as published by 
    88 * the Free Software Foundation; either version 2 of the License, or 
    99 * (at your option) any later version. 
    10  * FreeBob is distributed in the hope that it will be useful, 
     10 * FreeBoB is distributed in the hope that it will be useful, 
    1111 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    1212 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     
    1414 * 
    1515 * You should have received a copy of the GNU General Public License 
    16  * along with FreeBob; if not, write to the Free Software 
     16 * along with FreeBoB; if not, write to the Free Software 
    1717 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, 
    1818 * MA 02111-1307 USA. 
  • trunk/libfreebob/src/bebob/bebob_avplug_xml.cpp

    r238 r241  
    22 * Copyright (C) 2006 by Daniel Wagner 
    33 * 
    4  * This file is part of FreeBob
     4 * This file is part of FreeBoB
    55 * 
    6  * FreeBob is free software; you can redistribute it and/or modify 
     6 * FreeBoB is free software; you can redistribute it and/or modify 
    77 * it under the terms of the GNU General Public License as published by 
    88 * the Free Software Foundation; either version 2 of the License, or 
    99 * (at your option) any later version. 
    10  * FreeBob is distributed in the hope that it will be useful, 
     10 * FreeBoB is distributed in the hope that it will be useful, 
    1111 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    1212 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     
    1414 * 
    1515 * You should have received a copy of the GNU General Public License 
    16  * along with FreeBob; if not, write to the Free Software 
     16 * along with FreeBoB; if not, write to the Free Software 
    1717 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, 
    1818 * MA 02111-1307 USA. 
  • trunk/libfreebob/src/bebob/bebob_functionblock.cpp

    r187 r241  
    22 * Copyright (C) 2006 by Daniel Wagner 
    33 * 
    4  * This file is part of FreeBob
     4 * This file is part of FreeBoB
    55 * 
    6  * FreeBob is free software; you can redistribute it and/or modify 
     6 * FreeBoB is free software; you can redistribute it and/or modify 
    77 * it under the terms of the GNU General Public License as published by 
    88 * the Free Software Foundation; either version 2 of the License, or 
    99 * (at your option) any later version. 
    10  * FreeBob is distributed in the hope that it will be useful, 
     10 * FreeBoB is distributed in the hope that it will be useful, 
    1111 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    1212 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     
    1414 * 
    1515 * You should have received a copy of the GNU General Public License 
    16  * along with FreeBob; if not, write to the Free Software 
     16 * along with FreeBoB; if not, write to the Free Software 
    1717 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, 
    1818 * MA 02111-1307 USA. 
  • trunk/libfreebob/src/bebob/bebob_functionblock.h

    r187 r241  
    22 * Copyright (C) 2006 by Daniel Wagner 
    33 * 
    4  * This file is part of FreeBob
     4 * This file is part of FreeBoB
    55 * 
    6  * FreeBob is free software; you can redistribute it and/or modify 
     6 * FreeBoB is free software; you can redistribute it and/or modify 
    77 * it under the terms of the GNU General Public License as published by 
    88 * the Free Software Foundation; either version 2 of the License, or 
    99 * (at your option) any later version. 
    10  * FreeBob is distributed in the hope that it will be useful, 
     10 * FreeBoB is distributed in the hope that it will be useful, 
    1111 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    1212 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     
    1414 * 
    1515 * You should have received a copy of the GNU General Public License 
    16  * along with FreeBob; if not, write to the Free Software 
     16 * along with FreeBoB; if not, write to the Free Software 
    1717 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, 
    1818 * MA 02111-1307 USA. 
  • trunk/libfreebob/src/bebob_light/bebob_light_avdevice.cpp

    r238 r241  
    22 * Copyright (C) 2006 by Daniel Wagner 
    33 * 
    4  * This file is part of FreeBob
     4 * This file is part of FreeBoB
    55 * 
    6  * FreeBob is free software; you can redistribute it and/or modify 
     6 * FreeBoB is free software; you can redistribute it and/or modify 
    77 * it under the terms of the GNU General Public License as published by 
    88 * the Free Software Foundation; either version 2 of the License, or 
    99 * (at your option) any later version. 
    10  * FreeBob is distributed in the hope that it will be useful, 
     10 * FreeBoB is distributed in the hope that it will be useful, 
    1111 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    1212 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     
    1414 * 
    1515 * You should have received a copy of the GNU General Public License 
    16  * along with FreeBob; if not, write to the Free Software 
     16 * along with FreeBoB; if not, write to the Free Software 
    1717 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, 
    1818 * MA 02111-1307 USA. 
  • trunk/libfreebob/src/bebob_light/bebob_light_avdevice.h

    r231 r241  
    22 * Copyright (C) 2006 by Daniel Wagner 
    33 * 
    4  * This file is part of FreeBob
     4 * This file is part of FreeBoB
    55 * 
    6  * FreeBob is free software; you can redistribute it and/or modify 
     6 * FreeBoB is free software; you can redistribute it and/or modify 
    77 * it under the terms of the GNU General Public License as published by 
    88 * the Free Software Foundation; either version 2 of the License, or 
    99 * (at your option) any later version. 
    10  * FreeBob is distributed in the hope that it will be useful, 
     10 * FreeBoB is distributed in the hope that it will be useful, 
    1111 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    1212 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     
    1414 * 
    1515 * You should have received a copy of the GNU General Public License 
    16  * along with FreeBob; if not, write to the Free Software 
     16 * along with FreeBoB; if not, write to the Free Software 
    1717 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, 
    1818 * MA 02111-1307 USA. 
  • trunk/libfreebob/src/bebob_light/bebob_light_avdevicesubunit.cpp

    r188 r241  
    22 * Copyright (C) 2006 by Daniel Wagner 
    33 * 
    4  * This file is part of FreeBob
     4 * This file is part of FreeBoB
    55 * 
    6  * FreeBob is free software; you can redistribute it and/or modify 
     6 * FreeBoB is free software; you can redistribute it and/or modify 
    77 * it under the terms of the GNU General Public License as published by 
    88 * the Free Software Foundation; either version 2 of the License, or 
    99 * (at your option) any later version. 
    10  * FreeBob is distributed in the hope that it will be useful, 
     10 * FreeBoB is distributed in the hope that it will be useful, 
    1111 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    1212 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     
    1414 * 
    1515 * You should have received a copy of the GNU General Public License 
    16  * along with FreeBob; if not, write to the Free Software 
     16 * along with FreeBoB; if not, write to the Free Software 
    1717 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, 
    1818 * MA 02111-1307 USA. 
  • trunk/libfreebob/src/bebob_light/bebob_light_avdevicesubunit.h

    r188 r241  
    22 * Copyright (C) 2006 by Daniel Wagner 
    33 * 
    4  * This file is part of FreeBob
     4 * This file is part of FreeBoB
    55 * 
    6  * FreeBob is free software; you can redistribute it and/or modify 
     6 * FreeBoB is free software; you can redistribute it and/or modify 
    77 * it under the terms of the GNU General Public License as published by 
    88 * the Free Software Foundation; either version 2 of the License, or 
    99 * (at your option) any later version. 
    10  * FreeBob is distributed in the hope that it will be useful, 
     10 * FreeBoB is distributed in the hope that it will be useful, 
    1111 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    1212 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     
    1414 * 
    1515 * You should have received a copy of the GNU General Public License 
    16  * along with FreeBob; if not, write to the Free Software 
     16 * along with FreeBoB; if not, write to the Free Software 
    1717 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, 
    1818 * MA 02111-1307 USA. 
  • trunk/libfreebob/src/bebob_light/bebob_light_avplug.cpp

    r238 r241  
    22 * Copyright (C) 2006 by Daniel Wagner 
    33 * 
    4  * This file is part of FreeBob
     4 * This file is part of FreeBoB
    55 * 
    6  * FreeBob is free software; you can redistribute it and/or modify 
     6 * FreeBoB is free software; you can redistribute it and/or modify 
    77 * it under the terms of the GNU General Public License as published by 
    88 * the Free Software Foundation; either version 2 of the License, or 
    99 * (at your option) any later version. 
    10  * FreeBob is distributed in the hope that it will be useful, 
     10 * FreeBoB is distributed in the hope that it will be useful, 
    1111 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    1212 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     
    1414 * 
    1515 * You should have received a copy of the GNU General Public License 
    16  * along with FreeBob; if not, write to the Free Software 
     16 * along with FreeBoB; if not, write to the Free Software 
    1717 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, 
    1818 * MA 02111-1307 USA. 
  • trunk/libfreebob/src/bebob_light/bebob_light_avplug.h

    r188 r241  
    22 * Copyright (C) 2006 by Daniel Wagner 
    33 * 
    4  * This file is part of FreeBob
     4 * This file is part of FreeBoB
    55 * 
    6  * FreeBob is free software; you can redistribute it and/or modify 
     6 * FreeBoB is free software; you can redistribute it and/or modify 
    77 * it under the terms of the GNU General Public License as published by 
    88 * the Free Software Foundation; either version 2 of the License, or 
    99 * (at your option) any later version. 
    10  * FreeBob is distributed in the hope that it will be useful, 
     10 * FreeBoB is distributed in the hope that it will be useful, 
    1111 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    1212 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     
    1414 * 
    1515 * You should have received a copy of the GNU General Public License 
    16  * along with FreeBob; if not, write to the Free Software 
     16 * along with FreeBoB; if not, write to the Free Software 
    1717 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, 
    1818 * MA 02111-1307 USA. 
  • trunk/libfreebob/src/bounce/bounce_avdevice.cpp

    r231 r241  
    33 * Copyright (C) 2006 by Daniel Wagner 
    44 * 
    5  * This file is part of FreeBob
     5 * This file is part of FreeBoB
    66 * 
    7  * FreeBob is free software; you can redistribute it and/or modify 
     7 * FreeBoB is free software; you can redistribute it and/or modify 
    88 * it under the terms of the GNU General Public License as published by 
    99 * the Free Software Foundation; either version 2 of the License, or 
    1010 * (at your option) any later version. 
    11  * FreeBob is distributed in the hope that it will be useful, 
     11 * FreeBoB is distributed in the hope that it will be useful, 
    1212 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    1313 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     
    1515 * 
    1616 * You should have received a copy of the GNU General Public License 
    17  * along with FreeBob; if not, write to the Free Software 
     17 * along with FreeBoB; if not, write to the Free Software 
    1818 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, 
    1919 * MA 02111-1307 USA. 
  • trunk/libfreebob/src/bounce/bounce_avdevice.h

    r231 r241  
    33 * Copyright (C) 2006 by Daniel Wagner 
    44 * 
    5  * This file is part of FreeBob
     5 * This file is part of FreeBoB
    66 * 
    7  * FreeBob is free software; you can redistribute it and/or modify 
     7 * FreeBoB is free software; you can redistribute it and/or modify 
    88 * it under the terms of the GNU General Public License as published by 
    99 * the Free Software Foundation; either version 2 of the License, or 
    1010 * (at your option) any later version. 
    11  * FreeBob is distributed in the hope that it will be useful, 
     11 * FreeBoB is distributed in the hope that it will be useful, 
    1212 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    1313 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     
    1515 * 
    1616 * You should have received a copy of the GNU General Public License 
    17  * along with FreeBob; if not, write to the Free Software 
     17 * along with FreeBoB; if not, write to the Free Software 
    1818 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, 
    1919 * MA 02111-1307 USA. 
  • trunk/libfreebob/src/configrom.cpp

    r231 r241  
    22 * Copyright (C) 2005 by Daniel Wagner 
    33 * 
    4  * This file is part of FreeBob
     4 * This file is part of FreeBoB
    55 * 
    6  * FreeBob is free software; you can redistribute it and/or modify 
     6 * FreeBoB is free software; you can redistribute it and/or modify 
    77 * it under the terms of the GNU General Public License as published by 
    88 * the Free Software Foundation; either version 2 of the License, or 
    99 * (at your option) any later version. 
    10  * FreeBob is distributed in the hope that it will be useful, 
     10 * FreeBoB is distributed in the hope that it will be useful, 
    1111 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    1212 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     
    1414 * 
    1515 * You should have received a copy of the GNU General Public License 
    16  * along with FreeBob; if not, write to the Free Software 
     16 * along with FreeBoB; if not, write to the Free Software 
    1717 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, 
    1818 * MA 02111-1307 USA. 
  • trunk/libfreebob/src/configrom.h

    r185 r241  
    22 * Copyright (C) 2005,06 by Daniel Wagner 
    33 * 
    4  * This file is part of FreeBob
     4 * This file is part of FreeBoB
    55 * 
    6  * FreeBob is free software; you can redistribute it and/or modify 
     6 * FreeBoB is free software; you can redistribute it and/or modify 
    77 * it under the terms of the GNU General Public License as published by 
    88 * the Free Software Foundation; either version 2 of the License, or 
    99 * (at your option) any later version. 
    10  * FreeBob is distributed in the hope that it will be useful, 
     10 * FreeBoB is distributed in the hope that it will be useful, 
    1111 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    1212 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     
    1414 * 
    1515 * You should have received a copy of the GNU General Public License 
    16  * along with FreeBob; if not, write to the Free Software 
     16 * along with FreeBoB; if not, write to the Free Software 
    1717 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, 
    1818 * MA 02111-1307 USA. 
  • trunk/libfreebob/src/debugmodule/.cvsignore

    r134 r241  
    1 .cvsignore 
    2 Makefile 
    3 Makefile.in 
    4 .deps 
    5 .libs 
    6 *.lo 
    7 *.la 
    8 test_debugmodule 
  • trunk/libfreebob/src/debugmodule/debugmodule.cpp

    r168 r241  
    22 * Copyright (C) 2005 by Daniel Wagner 
    33 * 
    4  * This file is part of FreeBob
     4 * This file is part of FreeBoB
    55 * 
    6  * FreeBob is free software; you can redistribute it and/or modify 
     6 * FreeBoB is free software; you can redistribute it and/or modify 
    77 * it under the terms of the GNU General Public License as published by 
    88 * the Free Software Foundation; either version 2 of the License, or 
    99 * (at your option) any later version. 
    10  * FreeBob is distributed in the hope that it will be useful, 
     10 * FreeBoB is distributed in the hope that it will be useful, 
    1111 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    1212 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     
    1414 * 
    1515 * You should have received a copy of the GNU General Public License 
    16  * along with FreeBob; if not, write to the Free Software 
     16 * along with FreeBoB; if not, write to the Free Software 
    1717 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, 
    1818 * MA 02111-1307 USA. 
  • trunk/libfreebob/src/debugmodule/debugmodule.h

    r168 r241  
    22 * Copyright (C) 2005 by Daniel Wagner 
    33 * 
    4  * This file is part of FreeBob
     4 * This file is part of FreeBoB
    55 * 
    6  * FreeBob is free software; you can redistribute it and/or modify 
     6 * FreeBoB is free software; you can redistribute it and/or modify 
    77 * it under the terms of the GNU General Public License as published by 
    88 * the Free Software Foundation; either version 2 of the License, or 
    99 * (at your option) any later version. 
    10  * FreeBob is distributed in the hope that it will be useful, 
     10 * FreeBoB is distributed in the hope that it will be useful, 
    1111 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    1212 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     
    1414 * 
    1515 * You should have received a copy of the GNU General Public License 
    16  * along with FreeBob; if not, write to the Free Software 
     16 * along with FreeBoB; if not, write to the Free Software 
    1717 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, 
    1818 * MA 02111-1307 USA. 
  • trunk/libfreebob/src/debugmodule/Makefile.am

    r125 r241  
    22# Copyright (C) 2005 by Daniel Wagner. 
    33# 
    4 # This file is part of FreeBob
     4# This file is part of FreeBoB
    55# 
    6 # FreeBob is free software; you can redistribute it and/or modify 
     6# FreeBoB is free software; you can redistribute it and/or modify 
    77# it under the terms of the GNU General Public License as published by 
    88# the Free Software Foundation; either version 2 of the License, or 
    99# (at your option) any later version. 
    10 # FreeBob is distributed in the hope that it will be useful, 
     10# FreeBoB is distributed in the hope that it will be useful, 
    1111# but WITHOUT ANY WARRANTY; without even the implied warranty of 
    1212# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
    1313# GNU General Public License for more details. 
    1414# You should have received a copy of the GNU General Public License 
    15 # along with FreeBob; if not, write to the Free Software 
     15# along with FreeBoB; if not, write to the Free Software 
    1616# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA 
    1717 
  • trunk/libfreebob/src/devicemanager.cpp

    r239 r241  
    22 * Copyright (C) 2005,06 by Daniel Wagner 
    33 * 
    4  * This file is part of FreeBob
     4 * This file is part of FreeBoB
    55 * 
    6  * FreeBob is free software; you can redistribute it and/or modify 
     6 * FreeBoB is free software; you can redistribute it and/or modify 
    77 * it under the terms of the GNU General Public License as published by 
    88 * the Free Software Foundation; either version 2 of the License, or 
    99 * (at your option) any later version. 
    10  * FreeBob is distributed in the hope that it will be useful, 
     10 * FreeBoB is distributed in the hope that it will be useful, 
    1111 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    1212 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     
    1414 * 
    1515 * You should have received a copy of the GNU General Public License 
    16  * along with FreeBob; if not, write to the Free Software 
     16 * along with FreeBoB; if not, write to the Free Software 
    1717 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, 
    1818 * MA 02111-1307 USA. 
     
    230230    } 
    231231 
    232     xmlNodePtr rootNode = xmlNewNode( 0,  BAD_CAST "FreeBobConnectionInfo" ); 
     232    xmlNodePtr rootNode = xmlNewNode( 0,  BAD_CAST "FreeBoBConnectionInfo" ); 
    233233    if ( !rootNode ) { 
    234234        debugError( "Couldn't create root node\n" ); 
  • trunk/libfreebob/src/devicemanager.h

    r185 r241  
    22 * Copyright (C) 2005 by Daniel Wagner 
    33 * 
    4  * This file is part of FreeBob
     4 * This file is part of FreeBoB
    55 * 
    6  * FreeBob is free software; you can redistribute it and/or modify 
     6 * FreeBoB is free software; you can redistribute it and/or modify 
    77 * it under the terms of the GNU General Public License as published by 
    88 * the Free Software Foundation; either version 2 of the License, or 
    99 * (at your option) any later version. 
    10  * FreeBob is distributed in the hope that it will be useful, 
     10 * FreeBoB is distributed in the hope that it will be useful, 
    1111 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    1212 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     
    1414 * 
    1515 * You should have received a copy of the GNU General Public License 
    16  * along with FreeBob; if not, write to the Free Software 
     16 * along with FreeBoB; if not, write to the Free Software 
    1717 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, 
    1818 * MA 02111-1307 USA. 
  • trunk/libfreebob/src/fbtypes.h

    r125 r241  
    22 * Copyright (C) 2005 by Daniel Wagner 
    33 * 
    4  * This file is part of FreeBob
     4 * This file is part of FreeBoB
    55 * 
    6  * FreeBob is free software; you can redistribute it and/or modify 
     6 * FreeBoB is free software; you can redistribute it and/or modify 
    77 * it under the terms of the GNU General Public License as published by 
    88 * the Free Software Foundation; either version 2 of the License, or 
    99 * (at your option) any later version. 
    10  * FreeBob is distributed in the hope that it will be useful, 
     10 * FreeBoB is distributed in the hope that it will be useful, 
    1111 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    1212 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     
    1414 * 
    1515 * You should have received a copy of the GNU General Public License 
    16  * along with FreeBob; if not, write to the Free Software 
     16 * along with FreeBoB; if not, write to the Free Software 
    1717 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, 
    1818 * MA 02111-1307 USA. 
  • trunk/libfreebob/src/freebob.cpp

    r186 r241  
    3939 
    4040DECLARE_GLOBAL_DEBUG_MODULE; 
    41 IMPL_GLOBAL_DEBUG_MODULE( FreeBob, DEBUG_LEVEL_VERBOSE ); 
     41IMPL_GLOBAL_DEBUG_MODULE( FreeBoB, DEBUG_LEVEL_VERBOSE ); 
    4242 
    4343const char* 
  • trunk/libfreebob/src/iavdevice.h

    r231 r241  
    22 * Copyright (C) 2006 by Daniel Wagner 
    33 * 
    4  * This file is part of FreeBob
     4 * This file is part of FreeBoB
    55 * 
    6  * FreeBob is free software; you can redistribute it and/or modify 
     6 * FreeBoB is free software; you can redistribute it and/or modify 
    77 * it under the terms of the GNU General Public License as published by 
    88 * the Free Software Foundation; either version 2 of the License, or 
    99 * (at your option) any later version. 
    10  * FreeBob is distributed in the hope that it will be useful, 
     10 * FreeBoB is distributed in the hope that it will be useful, 
    1111 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    1212 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     
    1414 * 
    1515 * You should have received a copy of the GNU General Public License 
    16  * along with FreeBob; if not, write to the Free Software 
     16 * along with FreeBoB; if not, write to the Free Software 
    1717 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, 
    1818 * MA 02111-1307 USA. 
  • trunk/libfreebob/src/libfreebobavc/.cvsignore

    r134 r241  
    1 .cvsignore 
    2 Makefile 
    3 Makefile.in 
    4 .deps 
    5 .libs 
    6 *.lo 
    7 *.la 
  • trunk/libfreebob/src/libfreebobavc/avc_connect.cpp

    r183 r241  
    22 * Copyright (C) 2005 by Daniel Wagner 
    33 * 
    4  * This file is part of FreeBob
     4 * This file is part of FreeBoB
    55 * 
    6  * FreeBob is free software; you can redistribute it and/or modify 
     6 * FreeBoB is free software; you can redistribute it and/or modify 
    77 * it under the terms of the GNU General Public License as published by 
    88 * the Free Software Foundation; either version 2 of the License, or 
    99 * (at your option) any later version. 
    10  * FreeBob is distributed in the hope that it will be useful, 
     10 * FreeBoB is distributed in the hope that it will be useful, 
    1111 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    1212 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     
    1414 * 
    1515 * You should have received a copy of the GNU General Public License 
    16  * along with FreeBob; if not, write to the Free Software 
     16 * along with FreeBoB; if not, write to the Free Software 
    1717 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, 
    1818 * MA 02111-1307 USA. 
  • trunk/libfreebob/src/libfreebobavc/avc_connect.h

    r183 r241  
    22 * Copyright (C) 2005 by Daniel Wagner 
    33 * 
    4  * This file is part of FreeBob
     4 * This file is part of FreeBoB
    55 * 
    6  * FreeBob is free software; you can redistribute it and/or modify 
     6 * FreeBoB is free software; you can redistribute it and/or modify 
    77 * it under the terms of the GNU General Public License as published by 
    88 * the Free Software Foundation; either version 2 of the License, or 
    99 * (at your option) any later version. 
    10  * FreeBob is distributed in the hope that it will be useful, 
     10 * FreeBoB is distributed in the hope that it will be useful, 
    1111 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    1212 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     
    1414 * 
    1515 * You should have received a copy of the GNU General Public License 
    16  * along with FreeBob; if not, write to the Free Software 
     16 * along with FreeBoB; if not, write to the Free Software 
    1717 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, 
    1818 * MA 02111-1307 USA. 
  • trunk/libfreebob/src/libfreebobavc/avc_definitions.cpp

    r151 r241  
    22 * Copyright (C) 2005 by Daniel Wagner 
    33 * 
    4  * This file is part of FreeBob
     4 * This file is part of FreeBoB
    55 * 
    6  * FreeBob is free software; you can redistribute it and/or modify 
     6 * FreeBoB is free software; you can redistribute it and/or modify 
    77 * it under the terms of the GNU General Public License as published by 
    88 * the Free Software Foundation; either version 2 of the License, or 
    99 * (at your option) any later version. 
    10  * FreeBob is distributed in the hope that it will be useful, 
     10 * FreeBoB is distributed in the hope that it will be useful, 
    1111 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    1212 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     
    1414 * 
    1515 * You should have received a copy of the GNU General Public License 
    16  * along with FreeBob; if not, write to the Free Software 
     16 * along with FreeBoB; if not, write to the Free Software 
    1717 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, 
    1818 * MA 02111-1307 USA. 
  • trunk/libfreebob/src/libfreebobavc/avc_definitions.h

    r183 r241  
    22 * Copyright (C) 2005 by Daniel Wagner 
    33 * 
    4  * This file is part of FreeBob
     4 * This file is part of FreeBoB
    55 * 
    6  * FreeBob is free software; you can redistribute it and/or modify 
     6 * FreeBoB is free software; you can redistribute it and/or modify 
    77 * it under the terms of the GNU General Public License as published by 
    88 * the Free Software Foundation; either version 2 of the License, or 
    99 * (at your option) any later version. 
    10  * FreeBob is distributed in the hope that it will be useful, 
     10 * FreeBoB is distributed in the hope that it will be useful, 
    1111 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    1212 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     
    1414 * 
    1515 * You should have received a copy of the GNU General Public License 
    16  * along with FreeBob; if not, write to the Free Software 
     16 * along with FreeBoB; if not, write to the Free Software 
    1717 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, 
    1818 * MA 02111-1307 USA. 
  • trunk/libfreebob/src/libfreebobavc/avc_extended_cmd_generic.cpp

    r172 r241  
    22 * Copyright (C) 2005 by Daniel Wagner 
    33 * 
    4  * This file is part of FreeBob
     4 * This file is part of FreeBoB
    55 * 
    6  * FreeBob is free software; you can redistribute it and/or modify 
     6 * FreeBoB is free software; you can redistribute it and/or modify 
    77 * it under the terms of the GNU General Public License as published by 
    88 * the Free Software Foundation; either version 2 of the License, or 
    99 * (at your option) any later version. 
    10  * FreeBob is distributed in the hope that it will be useful, 
     10 * FreeBoB is distributed in the hope that it will be useful, 
    1111 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    1212 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     
    1414 * 
    1515 * You should have received a copy of the GNU General Public License 
    16  * along with FreeBob; if not, write to the Free Software 
     16 * along with FreeBoB; if not, write to the Free Software 
    1717 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, 
    1818 * MA 02111-1307 USA. 
  • trunk/libfreebob/src/libfreebobavc/avc_extended_cmd_generic.h

    r172 r241  
    22 * Copyright (C) 2005 by Daniel Wagner 
    33 * 
    4  * This file is part of FreeBob
     4 * This file is part of FreeBoB
    55 * 
    6  * FreeBob is free software; you can redistribute it and/or modify 
     6 * FreeBoB is free software; you can redistribute it and/or modify 
    77 * it under the terms of the GNU General Public License as published by 
    88 * the Free Software Foundation; either version 2 of the License, or 
    99 * (at your option) any later version. 
    10  * FreeBob is distributed in the hope that it will be useful, 
     10 * FreeBoB is distributed in the hope that it will be useful, 
    1111 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    1212 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     
    1414 * 
    1515 * You should have received a copy of the GNU General Public License 
    16  * along with FreeBob; if not, write to the Free Software 
     16 * along with FreeBoB; if not, write to the Free Software 
    1717 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, 
    1818 * MA 02111-1307 USA. 
  • trunk/libfreebob/src/libfreebobavc/avc_extended_plug_info.cpp

    r237 r241  
    22 * Copyright (C) 2005 by Daniel Wagner 
    33 * 
    4  * This file is part of FreeBob
     4 * This file is part of FreeBoB
    55 * 
    6  * FreeBob is free software; you can redistribute it and/or modify 
     6 * FreeBoB is free software; you can redistribute it and/or modify 
    77 * it under the terms of the GNU General Public License as published by 
    88 * the Free Software Foundation; either version 2 of the License, or 
    99 * (at your option) any later version. 
    10  * FreeBob is distributed in the hope that it will be useful, 
     10 * FreeBoB is distributed in the hope that it will be useful, 
    1111 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    1212 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     
    1414 * 
    1515 * You should have received a copy of the GNU General Public License 
    16  * along with FreeBob; if not, write to the Free Software 
     16 * along with FreeBoB; if not, write to the Free Software 
    1717 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, 
    1818 * MA 02111-1307 USA. 
  • trunk/libfreebob/src/libfreebobavc/avc_extended_plug_info.h

    r183 r241  
    22 * Copyright (C) 2005 by Daniel Wagner 
    33 * 
    4  * This file is part of FreeBob
     4 * This file is part of FreeBoB
    55 * 
    6  * FreeBob is free software; you can redistribute it and/or modify 
     6 * FreeBoB is free software; you can redistribute it and/or modify 
    77 * it under the terms of the GNU General Public License as published by 
    88 * the Free Software Foundation; either version 2 of the License, or 
    99 * (at your option) any later version. 
    10  * FreeBob is distributed in the hope that it will be useful, 
     10 * FreeBoB is distributed in the hope that it will be useful, 
    1111 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    1212 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     
    1414 * 
    1515 * You should have received a copy of the GNU General Public License 
    16  * along with FreeBob; if not, write to the Free Software 
     16 * along with FreeBoB; if not, write to the Free Software 
    1717 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, 
    1818 * MA 02111-1307 USA. 
  • trunk/libfreebob/src/libfreebobavc/avc_extended_stream_format.cpp

    r183 r241  
    22 * Copyright (C) 2005 by Daniel Wagner 
    33 * 
    4  * This file is part of FreeBob
     4 * This file is part of FreeBoB
    55 * 
    6  * FreeBob is free software; you can redistribute it and/or modify 
     6 * FreeBoB is free software; you can redistribute it and/or modify 
    77 * it under the terms of the GNU General Public License as published by 
    88 * the Free Software Foundation; either version 2 of the License, or 
    99 * (at your option) any later version. 
    10  * FreeBob is distributed in the hope that it will be useful, 
     10 * FreeBoB is distributed in the hope that it will be useful, 
    1111 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    1212 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     
    1414 * 
    1515 * You should have received a copy of the GNU General Public License 
    16  * along with FreeBob; if not, write to the Free Software 
     16 * along with FreeBoB; if not, write to the Free Software 
    1717 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, 
    1818 * MA 02111-1307 USA. 
  • trunk/libfreebob/src/libfreebobavc/avc_extended_stream_format.h

    r183 r241  
    22 * Copyright (C) 2005 by Daniel Wagner 
    33 * 
    4  * This file is part of FreeBob
     4 * This file is part of FreeBoB
    55 * 
    6  * FreeBob is free software; you can redistribute it and/or modify 
     6 * FreeBoB is free software; you can redistribute it and/or modify 
    77 * it under the terms of the GNU General Public License as published by 
    88 * the Free Software Foundation; either version 2 of the License, or 
    99 * (at your option) any later version. 
    10  * FreeBob is distributed in the hope that it will be useful, 
     10 * FreeBoB is distributed in the hope that it will be useful, 
    1111 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    1212 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     
    1414 * 
    1515 * You should have received a copy of the GNU General Public License 
    16  * along with FreeBob; if not, write to the Free Software 
     16 * along with FreeBoB; if not, write to the Free Software 
    1717 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, 
    1818 * MA 02111-1307 USA. 
  • trunk/libfreebob/src/libfreebobavc/avc_extended_subunit_info.cpp

    r183 r241  
    22 * Copyright (C) 2006 by Daniel Wagner 
    33 * 
    4  * This file is part of FreeBob
     4 * This file is part of FreeBoB
    55 * 
    6  * FreeBob is free software; you can redistribute it and/or modify 
     6 * FreeBoB is free software; you can redistribute it and/or modify 
    77 * it under the terms of the GNU General Public License as published by 
    88 * the Free Software Foundation; either version 2 of the License, or 
    99 * (at your option) any later version. 
    10  * FreeBob is distributed in the hope that it will be useful, 
     10 * FreeBoB is distributed in the hope that it will be useful, 
    1111 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    1212 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     
    1414 * 
    1515 * You should have received a copy of the GNU General Public License 
    16  * along with FreeBob; if not, write to the Free Software 
     16 * along with FreeBoB; if not, write to the Free Software 
    1717 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, 
    1818 * MA 02111-1307 USA. 
  • trunk/libfreebob/src/libfreebobavc/avc_extended_subunit_info.h

    r183 r241  
    22 * Copyright (C) 2006 by Daniel Wagner 
    33 * 
    4  * This file is part of FreeBob
     4 * This file is part of FreeBoB
    55 * 
    6  * FreeBob is free software; you can redistribute it and/or modify 
     6 * FreeBoB is free software; you can redistribute it and/or modify 
    77 * it under the terms of the GNU General Public License as published by 
    88 * the Free Software Foundation; either version 2 of the License, or 
    99 * (at your option) any later version. 
    10  * FreeBob is distributed in the hope that it will be useful, 
     10 * FreeBoB is distributed in the hope that it will be useful, 
    1111 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    1212 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     
    1414 * 
    1515 * You should have received a copy of the GNU General Public License 
    16  * along with FreeBob; if not, write to the Free Software 
     16 * along with FreeBoB; if not, write to the Free Software 
    1717 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, 
    1818 * MA 02111-1307 USA. 
  • trunk/libfreebob/src/libfreebobavc/avc_generic.cpp

    r238 r241  
    22 * Copyright (C) 2005 by Daniel Wagner 
    33 * 
    4  * This file is part of FreeBob
     4 * This file is part of FreeBoB
    55 * 
    6  * FreeBob is free software; you can redistribute it and/or modify 
     6 * FreeBoB is free software; you can redistribute it and/or modify 
    77 * it under the terms of the GNU General Public License as published by 
    88 * the Free Software Foundation; either version 2 of the License, or 
    99 * (at your option) any later version. 
    10  * FreeBob is distributed in the hope that it will be useful, 
     10 * FreeBoB is distributed in the hope that it will be useful, 
    1111 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    1212 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     
    1414 * 
    1515 * You should have received a copy of the GNU General Public License 
    16  * along with FreeBob; if not, write to the Free Software 
     16 * along with FreeBoB; if not, write to the Free Software 
    1717 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, 
    1818 * MA 02111-1307 USA. 
  • trunk/libfreebob/src/libfreebobavc/avc_generic.h

    r183 r241  
    22 * Copyright (C) 2005 by Daniel Wagner 
    33 * 
    4  * This file is part of FreeBob
     4 * This file is part of FreeBoB
    55 * 
    6  * FreeBob is free software; you can redistribute it and/or modify 
     6 * FreeBoB is free software; you can redistribute it and/or modify 
    77 * it under the terms of the GNU General Public License as published by 
    88 * the Free Software Foundation; either version 2 of the License, or 
    99 * (at your option) any later version. 
    10  * FreeBob is distributed in the hope that it will be useful, 
     10 * FreeBoB is distributed in the hope that it will be useful, 
    1111 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    1212 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     
    1414 * 
    1515 * You should have received a copy of the GNU General Public License 
    16  * along with FreeBob; if not, write to the Free Software 
     16 * along with FreeBoB; if not, write to the Free Software 
    1717 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, 
    1818 * MA 02111-1307 USA. 
  • trunk/libfreebob/src/libfreebobavc/avc_plug_info.cpp

    r183 r241  
    22 * Copyright (C) 2005 by Daniel Wagner 
    33 * 
    4  * This file is part of FreeBob
     4 * This file is part of FreeBoB
    55 * 
    6  * FreeBob is free software; you can redistribute it and/or modify 
     6 * FreeBoB is free software; you can redistribute it and/or modify 
    77 * it under the terms of the GNU General Public License as published by 
    88 * the Free Software Foundation; either version 2 of the License, or 
    99 * (at your option) any later version. 
    10  * FreeBob is distributed in the hope that it will be useful, 
     10 * FreeBoB is distributed in the hope that it will be useful, 
    1111 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    1212 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     
    1414 * 
    1515 * You should have received a copy of the GNU General Public License 
    16  * along with FreeBob; if not, write to the Free Software 
     16 * along with FreeBoB; if not, write to the Free Software 
    1717 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, 
    1818 * MA 02111-1307 USA. 
  • trunk/libfreebob/src/libfreebobavc/avc_plug_info.h

    r183 r241  
    22 * Copyright (C) 2005 by Daniel Wagner 
    33 * 
    4  * This file is part of FreeBob
     4 * This file is part of FreeBoB
    55 * 
    6  * FreeBob is free software; you can redistribute it and/or modify 
     6 * FreeBoB is free software; you can redistribute it and/or modify 
    77 * it under the terms of the GNU General Public License as published by 
    88 * the Free Software Foundation; either version 2 of the License, or 
    99 * (at your option) any later version. 
    10  * FreeBob is distributed in the hope that it will be useful, 
     10 * FreeBoB is distributed in the hope that it will be useful, 
    1111 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    1212 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     
    1414 * 
    1515 * You should have received a copy of the GNU General Public License 
    16  * along with FreeBob; if not, write to the Free Software 
     16 * along with FreeBoB; if not, write to the Free Software 
    1717 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, 
    1818 * MA 02111-1307 USA. 
  • trunk/libfreebob/src/libfreebobavc/avc_signal_source.cpp

    r183 r241  
    22 * Copyright (C) 2005 by Daniel Wagner 
    33 * 
    4  * This file is part of FreeBob
     4 * This file is part of FreeBoB
    55 * 
    6  * FreeBob is free software; you can redistribute it and/or modify 
     6 * FreeBoB is free software; you can redistribute it and/or modify 
    77 * it under the terms of the GNU General Public License as published by 
    88 * the Free Software Foundation; either version 2 of the License, or 
    99 * (at your option) any later version. 
    10  * FreeBob is distributed in the hope that it will be useful, 
     10 * FreeBoB is distributed in the hope that it will be useful, 
    1111 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    1212 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     
    1414 * 
    1515 * You should have received a copy of the GNU General Public License 
    16  * along with FreeBob; if not, write to the Free Software 
     16 * along with FreeBoB; if not, write to the Free Software 
    1717 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, 
    1818 * MA 02111-1307 USA. 
  • trunk/libfreebob/src/libfreebobavc/avc_signal_source.h

    r183 r241  
    22 * Copyright (C) 2005 by Daniel Wagner 
    33 * 
    4  * This file is part of FreeBob
     4 * This file is part of FreeBoB
    55 * 
    6  * FreeBob is free software; you can redistribute it and/or modify 
     6 * FreeBoB is free software; you can redistribute it and/or modify 
    77 * it under the terms of the GNU General Public License as published by 
    88 * the Free Software Foundation; either version 2 of the License, or 
    99 * (at your option) any later version. 
    10  * FreeBob is distributed in the hope that it will be useful, 
     10 * FreeBoB is distributed in the hope that it will be useful, 
    1111 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    1212 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     
    1414 * 
    1515 * You should have received a copy of the GNU General Public License 
    16  * along with FreeBob; if not, write to the Free Software 
     16 * along with FreeBoB; if not, write to the Free Software 
    1717 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, 
    1818 * MA 02111-1307 USA. 
  • trunk/libfreebob/src/libfreebobavc/avc_subunit_info.cpp

    r183 r241  
    22 * Copyright (C) 2005 by Daniel Wagner 
    33 * 
    4  * This file is part of FreeBob
     4 * This file is part of FreeBoB
    55 * 
    6  * FreeBob is free software; you can redistribute it and/or modify 
     6 * FreeBoB is free software; you can redistribute it and/or modify 
    77 * it under the terms of the GNU General Public License as published by 
    88 * the Free Software Foundation; either version 2 of the License, or 
    99 * (at your option) any later version. 
    10  * FreeBob is distributed in the hope that it will be useful, 
     10 * FreeBoB is distributed in the hope that it will be useful, 
    1111 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    1212 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     
    1414 * 
    1515 * You should have received a copy of the GNU General Public License 
    16  * along with FreeBob; if not, write to the Free Software 
     16 * along with FreeBoB; if not, write to the Free Software 
    1717 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, 
    1818 * MA 02111-1307 USA. 
  • trunk/libfreebob/src/libfreebobavc/avc_subunit_info.h

    r183 r241  
    22 * Copyright (C) 2005 by Daniel Wagner 
    33 * 
    4  * This file is part of FreeBob
     4 * This file is part of FreeBoB
    55 * 
    6  * FreeBob is free software; you can redistribute it and/or modify 
     6 * FreeBoB is free software; you can redistribute it and/or modify 
    77 * it under the terms of the GNU General Public License as published by 
    88 * the Free Software Foundation; either version 2 of the License, or 
    99 * (at your option) any later version. 
    10  * FreeBob is distributed in the hope that it will be useful, 
     10 * FreeBoB is distributed in the hope that it will be useful, 
    1111 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    1212 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     
    1414 * 
    1515 * You should have received a copy of the GNU General Public License 
    16  * along with FreeBob; if not, write to the Free Software 
     16 * along with FreeBoB; if not, write to the Free Software 
    1717 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, 
    1818 * MA 02111-1307 USA. 
  • trunk/libfreebob/src/libfreebobavc/avc_unit_info.cpp

    r183 r241  
    22 * Copyright (C) 2005 by Daniel Wagner 
    33 * 
    4  * This file is part of FreeBob
     4 * This file is part of FreeBoB
    55 * 
    6  * FreeBob is free software; you can redistribute it and/or modify 
     6 * FreeBoB is free software; you can redistribute it and/or modify 
    77 * it under the terms of the GNU General Public License as published by 
    88 * the Free Software Foundation; either version 2 of the License, or 
    99 * (at your option) any later version. 
    10  * FreeBob is distributed in the hope that it will be useful, 
     10 * FreeBoB is distributed in the hope that it will be useful, 
    1111 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    1212 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     
    1414 * 
    1515 * You should have received a copy of the GNU General Public License 
    16  * along with FreeBob; if not, write to the Free Software 
     16 * along with FreeBoB; if not, write to the Free Software 
    1717 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, 
    1818 * MA 02111-1307 USA. 
  • trunk/libfreebob/src/libfreebobavc/avc_unit_info.h

    r183 r241  
    22 * Copyright (C) 2005 by Daniel Wagner 
    33 * 
    4  * This file is part of FreeBob
     4 * This file is part of FreeBoB
    55 * 
    6  * FreeBob is free software; you can redistribute it and/or modify 
     6 * FreeBoB is free software; you can redistribute it and/or modify 
    77 * it under the terms of the GNU General Public License as published by 
    88 * the Free Software Foundation; either version 2 of the License, or 
    99 * (at your option) any later version. 
    10  * FreeBob is distributed in the hope that it will be useful, 
     10 * FreeBoB is distributed in the hope that it will be useful, 
    1111 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    1212 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     
    1414 * 
    1515 * You should have received a copy of the GNU General Public License 
    16  * along with FreeBob; if not, write to the Free Software 
     16 * along with FreeBoB; if not, write to the Free Software 
    1717 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, 
    1818 * MA 02111-1307 USA. 
  • trunk/libfreebob/src/libfreebobavc/ieee1394service.cpp

    r236 r241  
    22 * Copyright (C) 2005 by Daniel Wagner 
    33 * 
    4  * This file is part of FreeBob
     4 * This file is part of FreeBoB
    55 * 
    6  * FreeBob is free software; you can redistribute it and/or modify 
     6 * FreeBoB is free software; you can redistribute it and/or modify 
    77 * it under the terms of the GNU General Public License as published by 
    88 * the Free Software Foundation; either version 2 of the License, or 
    99 * (at your option) any later version. 
    10  * FreeBob is distributed in the hope that it will be useful, 
     10 * FreeBoB is distributed in the hope that it will be useful, 
    1111 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    1212 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     
    1414 * 
    1515 * You should have received a copy of the GNU General Public License 
    16  * along with FreeBob; if not, write to the Free Software 
     16 * along with FreeBoB; if not, write to the Free Software 
    1717 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, 
    1818 * MA 02111-1307 USA. 
  • trunk/libfreebob/src/libfreebobavc/ieee1394service.h

    r185 r241  
    22 * Copyright (C) 2005 by Daniel Wagner 
    33 * 
    4  * This file is part of FreeBob
     4 * This file is part of FreeBoB
    55 * 
    6  * FreeBob is free software; you can redistribute it and/or modify 
     6 * FreeBoB is free software; you can redistribute it and/or modify 
    77 * it under the terms of the GNU General Public License as published by 
    88 * the Free Software Foundation; either version 2 of the License, or 
    99 * (at your option) any later version. 
    10  * FreeBob is distributed in the hope that it will be useful, 
     10 * FreeBoB is distributed in the hope that it will be useful, 
    1111 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    1212 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     
    1414 * 
    1515 * You should have received a copy of the GNU General Public License 
    16  * along with FreeBob; if not, write to the Free Software 
     16 * along with FreeBoB; if not, write to the Free Software 
    1717 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, 
    1818 * MA 02111-1307 USA. 
  • trunk/libfreebob/src/libfreebobavc/Makefile.am

    r172 r241  
    22# Copyright (C) 2005 by Daniel Wagner. 
    33# 
    4 # This file is part of FreeBob
     4# This file is part of FreeBoB
    55# 
    6 # FreeBob is free software; you can redistribute it and/or modify 
     6# FreeBoB is free software; you can redistribute it and/or modify 
    77# it under the terms of the GNU General Public License as published by 
    88# the Free Software Foundation; either version 2 of the License, or 
    99# (at your option) any later version. 
    10 # FreeBob is distributed in the hope that it will be useful, 
     10# FreeBoB is distributed in the hope that it will be useful, 
    1111# but WITHOUT ANY WARRANTY; without even the implied warranty of 
    1212# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
    1313# GNU General Public License for more details. 
    1414# You should have received a copy of the GNU General Public License 
    15 # along with FreeBob; if not, write to the Free Software 
     15# along with FreeBoB; if not, write to the Free Software 
    1616# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA 
    1717 
  • trunk/libfreebob/src/libfreebobavc/serialize.cpp

    r183 r241  
    22 * Copyright (C) 2005 by Daniel Wagner 
    33 * 
    4  * This file is part of FreeBob
     4 * This file is part of FreeBoB
    55 * 
    6  * FreeBob is free software; you can redistribute it and/or modify 
     6 * FreeBoB is free software; you can redistribute it and/or modify 
    77 * it under the terms of the GNU General Public License as published by 
    88 * the Free Software Foundation; either version 2 of the License, or 
    99 * (at your option) any later version. 
    10  * FreeBob is distributed in the hope that it will be useful, 
     10 * FreeBoB is distributed in the hope that it will be useful, 
    1111 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    1212 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     
    1414 * 
    1515 * You should have received a copy of the GNU General Public License 
    16  * along with FreeBob; if not, write to the Free Software 
     16 * along with FreeBoB; if not, write to the Free Software 
    1717 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, 
    1818 * MA 02111-1307 USA. 
  • trunk/libfreebob/src/libfreebobavc/serialize.h

    r183 r241  
    22 * Copyright (C) 2005 by Daniel Wagner 
    33 * 
    4  * This file is part of FreeBob
     4 * This file is part of FreeBoB
    55 * 
    6  * FreeBob is free software; you can redistribute it and/or modify 
     6 * FreeBoB is free software; you can redistribute it and/or modify 
    77 * it under the terms of the GNU General Public License as published by 
    88 * the Free Software Foundation; either version 2 of the License, or 
    99 * (at your option) any later version. 
    10  * FreeBob is distributed in the hope that it will be useful, 
     10 * FreeBoB is distributed in the hope that it will be useful, 
    1111 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    1212 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     
    1414 * 
    1515 * You should have received a copy of the GNU General Public License 
    16  * along with FreeBob; if not, write to the Free Software 
     16 * along with FreeBoB; if not, write to the Free Software 
    1717 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, 
    1818 * MA 02111-1307 USA. 
  • trunk/libfreebob/src/libfreebobstreaming/freebob_connections.c

    r194 r241  
    11/* 
    2  *   FreeBob Streaming API 
    3  *   FreeBob = Firewire (pro-)audio for linux 
     2 *   FreeBoB Streaming API 
     3 *   FreeBoB = Firewire (pro-)audio for linux 
    44 * 
    55 *   http://freebob.sf.net 
  • trunk/libfreebob/src/libfreebobstreaming/freebob_connections.h

    r194 r241  
    11/* 
    2  *   FreeBob Streaming API 
    3  *   FreeBob = Firewire (pro-)audio for linux 
     2 *   FreeBoB Streaming API 
     3 *   FreeBoB = Firewire (pro-)audio for linux 
    44 * 
    55 *   http://freebob.sf.net 
  • trunk/libfreebob/src/libfreebobstreaming/freebob_debug.h

    r237 r241  
    11/* 
    2  *   FreeBob Streaming API 
    3  *   FreeBob = Firewire (pro-)audio for linux 
     2 *   FreeBoB Streaming API 
     3 *   FreeBoB = Firewire (pro-)audio for linux 
    44 * 
    55 *   http://freebob.sf.net 
     
    109109         
    110110        #define printMessage(format, args...) if(g_verbose) freebob_messagebuffer_add( \ 
    111                                               "LibFreeBob MSG: " format, ##args ) 
     111                                              "LibFreeBoB MSG: " format, ##args ) 
    112112 
    113         #define printError(format, args...)   freebob_messagebuffer_add( "LibFreeBob ERR: " format, ##args ) 
     113        #define printError(format, args...)   freebob_messagebuffer_add( "LibFreeBoB ERR: " format, ##args ) 
    114114         
    115115        #define printEnter()  
  • trunk/libfreebob/src/libfreebobstreaming/freebob_streaming.c

    r237 r241  
    22 
    33/* 
    4  *   FreeBob Streaming API 
    5  *   FreeBob = Firewire (pro-)audio for linux 
     4 *   FreeBoB Streaming API 
     5 *   FreeBoB = Firewire (pro-)audio for linux 
    66 * 
    77 *   http://freebob.sf.net 
     
    2929/* freebob_streaming.c 
    3030 * 
    31  * Implementation of the FreeBob Streaming API 
     31 * Implementation of the FreeBoB Streaming API 
    3232 * 
    3333 */ 
     
    9797        assert(device_info); 
    9898         
    99         printMessage("FreeBob Streaming Device Init\n"); 
    100         printMessage(" Using FreeBob lib version %s\n",freebob_get_version()); 
     99        printMessage("FreeBoB Streaming Device Init\n"); 
     100        printMessage(" Using FreeBoB lib version %s\n",freebob_get_version()); 
    101101        printMessage(" Device information:\n"); 
    102102         
  • trunk/libfreebob/src/libfreebobstreaming/freebob_streaming_private.h

    r185 r241  
    11/* 
    2  *   FreeBob Streaming API 
    3  *   FreeBob = Firewire (pro-)audio for linux 
     2 *   FreeBoB Streaming API 
     3 *   FreeBoB = Firewire (pro-)audio for linux 
    44 * 
    55 *   http://freebob.sf.net 
  • trunk/libfreebob/src/libfreebobstreaming/Makefile.am

    r192 r241  
    33# Copyright (C) 2005 by Daniel Wagner. 
    44# 
    5 # This file is part of FreeBob
     5# This file is part of FreeBoB
    66# 
    7 # FreeBob is free software; you can redistribute it and/or modify 
     7# FreeBoB is free software; you can redistribute it and/or modify 
    88# it under the terms of the GNU General Public License as published by 
    99# the Free Software Foundation; either version 2 of the License, or 
    1010# (at your option) any later version. 
    11 # FreeBob is distributed in the hope that it will be useful, 
     11# FreeBoB is distributed in the hope that it will be useful, 
    1212# but WITHOUT ANY WARRANTY; without even the implied warranty of 
    1313# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
    1414# GNU General Public License for more details. 
    1515# You should have received a copy of the GNU General Public License 
    16 # along with FreeBob; if not, write to the Free Software 
     16# along with FreeBoB; if not, write to the Free Software 
    1717# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA 
    1818 
  • trunk/libfreebob/src/Makefile.am

    r213 r241  
    33# Copyright (C) 2006 by Pieter Palmers. 
    44# 
    5 # This file is part of FreeBob
     5# This file is part of FreeBoB
    66# 
    7 # FreeBob is free software; you can redistribute it and/or modify 
     7# FreeBoB is free software; you can redistribute it and/or modify 
    88# it under the terms of the GNU General Public License as published by 
    99# the Free Software Foundation; either version 2 of the License, or 
    1010# (at your option) any later version. 
    11 # FreeBob is distributed in the hope that it will be useful, 
     11# FreeBoB is distributed in the hope that it will be useful, 
    1212# but WITHOUT ANY WARRANTY; without even the implied warranty of 
    1313# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
    1414# GNU General Public License for more details. 
    1515# You should have received a copy of the GNU General Public License 
    16 # along with FreeBob; if not, write to the Free Software 
     16# along with FreeBoB; if not, write to the Free Software 
    1717# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA 
    1818 
  • trunk/libfreebob/src/xmlparser.c

    r224 r241  
    673673    } 
    674674 
    675     if ( xmlStrcmp( base->name, (const xmlChar*) "FreeBobConnectionInfo") ) { 
     675    if ( xmlStrcmp( base->name, (const xmlChar*) "FreeBoBConnectionInfo") ) { 
    676676        fprintf( stderr, 
    677677                 "document of the wrong type, root node " 
    678                  "!= FreeBobConnectionInfo\n" ); 
     678                 "!= FreeBoBConnectionInfo\n" ); 
    679679        return 0; 
    680680    } 
     
    754754    } 
    755755 
    756     if ( xmlStrcmp( base->name, (const xmlChar*) "FreeBobConnectionInfo") ) { 
     756    if ( xmlStrcmp( base->name, (const xmlChar*) "FreeBoBConnectionInfo") ) { 
    757757        fprintf( stderr, 
    758758                 "document of the wrong type, root node " 
    759                  "!= FreeBobConnectionInfo\n" ); 
     759                 "!= FreeBoBConnectionInfo\n" ); 
    760760        return 0; 
    761761    } 
  • trunk/libfreebob/tests/.cvsignore

    r134 r241  
    1 .cvsignore 
    2 Makefile 
    3 Makefile.in 
    4 .deps 
    5 .libs 
    6 *.lo 
    7 *.la 
    8 test-extplugcmd 
    9 test-freebob 
  • trunk/libfreebob/tests/Makefile.am

    r192 r241  
    22# Copyright (C) 2005 by Daniel Wagner. 
    33# 
    4 # This file is part of FreeBob
     4# This file is part of FreeBoB
    55# 
    6 # FreeBob is free software; you can redistribute it and/or modify 
     6# FreeBoB is free software; you can redistribute it and/or modify 
    77# it under the terms of the GNU General Public License as published by 
    88# the Free Software Foundation; either version 2 of the License, or 
    99# (at your option) any later version. 
    10 # FreeBob is distributed in the hope that it will be useful, 
     10# FreeBoB is distributed in the hope that it will be useful, 
    1111# but WITHOUT ANY WARRANTY; without even the implied warranty of 
    1212# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
    1313# GNU General Public License for more details. 
    1414# You should have received a copy of the GNU General Public License 
    15 # along with FreeBob; if not, write to the Free Software 
     15# along with FreeBoB; if not, write to the Free Software 
    1616# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA 
    1717 
  • trunk/libfreebob/tests/streaming/Makefile.am

    r192 r241  
    33# Copyright (C) 2006 by Pieter Palmers. 
    44# 
    5 # This file is part of FreeBob
     5# This file is part of FreeBoB
    66# 
    7 # FreeBob is free software; you can redistribute it and/or modify 
     7# FreeBoB is free software; you can redistribute it and/or modify 
    88# it under the terms of the GNU General Public License as published by 
    99# the Free Software Foundation; either version 2 of the License, or 
    1010# (at your option) any later version. 
    11 # FreeBob is distributed in the hope that it will be useful, 
     11# FreeBoB is distributed in the hope that it will be useful, 
    1212# but WITHOUT ANY WARRANTY; without even the implied warranty of 
    1313# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
    1414# GNU General Public License for more details. 
    1515# You should have received a copy of the GNU General Public License 
    16 # along with FreeBob; if not, write to the Free Software 
     16# along with FreeBoB; if not, write to the Free Software 
    1717# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA 
    1818 
  • trunk/libfreebob/tests/streaming/testmidistreaming1.c

    r194 r241  
    8686        } 
    8787         
    88         snd_seq_set_client_name(*seq_handle, "FreeBob MIDI I/O test"); 
     88        snd_seq_set_client_name(*seq_handle, "FreeBoB MIDI I/O test"); 
    8989         
    9090        for (l1 = 0; l1 < num_in; l1++) { 
  • trunk/libfreebob/tests/test-extplugcmd.cpp

    r155 r241  
    22 * Copyright (C) 2005,06 by Daniel Wagner 
    33 * 
    4  * This file is part of FreeBob
     4 * This file is part of FreeBoB
    55 * 
    6  * FreeBob is free software; you can redistribute it and/or modify 
     6 * FreeBoB is free software; you can redistribute it and/or modify 
    77 * it under the terms of the GNU General Public License as published by 
    88 * the Free Software Foundation; either version 2 of the License, or 
    99 * (at your option) any later version. 
    10  * FreeBob is distributed in the hope that it will be useful, 
     10 * FreeBoB is distributed in the hope that it will be useful, 
    1111 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    1212 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     
    1414 * 
    1515 * You should have received a copy of the GNU General Public License 
    16  * along with FreeBob; if not, write to the Free Software 
     16 * along with FreeBoB; if not, write to the Free Software 
    1717 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, 
    1818 * MA 02111-1307 USA. 
  • trunk/libfreebob/tests/test-freebob.c

    r213 r241  
    22 * Copyright (C) 2005 by Daniel Wagner 
    33 * 
    4  * This file is part of FreeBob
     4 * This file is part of FreeBoB
    55 * 
    6  * FreeBob is free software; you can redistribute it and/or modify 
     6 * FreeBoB is free software; you can redistribute it and/or modify 
    77 * it under the terms of the GNU General Public License as published by 
    88 * the Free Software Foundation; either version 2 of the License, or 
    99 * (at your option) any later version. 
    10  * FreeBob is distributed in the hope that it will be useful, 
     10 * FreeBoB is distributed in the hope that it will be useful, 
    1111 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
    1212 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     
    1414 * 
    1515 * You should have received a copy of the GNU General Public License 
    16  * along with FreeBob; if not, write to the Free Software 
     16 * along with FreeBoB; if not, write to the Free Software 
    1717 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, 
    1818 * MA 02111-1307 USA. 
     
    3535 
    3636// Program documentation. 
    37 static char doc[] = "FreeBob -- a driver for BeBob devices (test application)\n\n" 
     37static char doc[] = "FreeBoB -- a driver for BeBoB devices (test application)\n\n" 
    3838                    "OPERATION: discover\n" 
    3939                    "           odisocver\n"