Skip to content

Commit

Permalink
Cleaned up some of the copyright stuff. Also put my name in as respon…
Browse files Browse the repository at this point in the history
…sible

for the C# code.

I'm going to answer to St. Peter for this...I just know I am.

svn path=/trunk/csvorbis/; revision=4108
  • Loading branch information
Mark Crichton committed Apr 28, 2002
1 parent 4cbb501 commit ff790de
Show file tree
Hide file tree
Showing 39 changed files with 860 additions and 678 deletions.
26 changes: 23 additions & 3 deletions OggDecoder/AssemblyInfo.cs
Original file line number Diff line number Diff line change
@@ -1,3 +1,23 @@
/* csvorbis
* Copyright (C) 2002 Mark Crichton <[email protected]>
*
* Written by: Mark Crichton <[email protected]>
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public License
* as published by the Free Software Foundation; either version 2 of
* the License, or (at your option) any later version.
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Library General Public License for more details.
*
* You should have received a copy of the GNU Library General Public
* License along with this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/

using System.Reflection;
using System.Runtime.CompilerServices;

Expand All @@ -6,12 +26,12 @@
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
//
[assembly: AssemblyTitle("")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyTitle("OggDecode")]
[assembly: AssemblyDescription("csVorbis Test Application")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("")]
[assembly: AssemblyCopyright("")]
[assembly: AssemblyCopyright("LGPL")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]

Expand Down
2 changes: 1 addition & 1 deletion OggDecoder/OggDecoder.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
namespace OggDecoder
{
/// <summary>
/// Summary description for Class1.
/// Ogg Vorbis decoder test application.
/// </summary>
class Decoder
{
Expand Down
26 changes: 25 additions & 1 deletion csogg/AssemblyInfo.cs
Original file line number Diff line number Diff line change
@@ -1,3 +1,27 @@
/* csogg
*
* Copyright (C) 2002 Mark Crichton <[email protected]>
*
* Written by: Mark Crichton <[email protected]>
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public License
* as published by the Free Software Foundation; either version 2 of
* the License, or (at your option) any later version.
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Library General Public License for more details.
*
* You should have received a copy of the GNU Library General Public
* License along with this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*
* This code is autogenerated from VS.NET. I really should fill in proper
* values
*/

using System.Reflection;
using System.Runtime.CompilerServices;

Expand All @@ -6,7 +30,7 @@
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
//
[assembly: AssemblyTitle("COgg")]
[assembly: AssemblyTitle("csOgg")]
[assembly: AssemblyDescription("C# Ogg File Parser")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
Expand Down
26 changes: 25 additions & 1 deletion csogg/Buffer.cs
Original file line number Diff line number Diff line change
@@ -1,9 +1,33 @@
/* csogg
* Copyright (C) 2000 ymnk, JCraft,Inc.
*
* Written by: 2000 ymnk<[email protected]>
* Ported to C# from JOrbis by: Mark Crichton <[email protected]>
*
* Thanks go to the JOrbis team, for licencing the code under the
* LGPL, making my job a lot easier.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public License
* as published by the Free Software Foundation; either version 2 of
* the License, or (at your option) any later version.
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Library General Public License for more details.
*
* You should have received a copy of the GNU Library General Public
* License along with this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/

using System;

namespace csogg
{
/// <summary>
/// Summary description for Buffer.
/// Summary description for csBuffer.
/// </summary>
public class csBuffer
{
Expand Down
24 changes: 24 additions & 0 deletions csogg/Packet.cs
Original file line number Diff line number Diff line change
@@ -1,3 +1,27 @@
/* csogg
* Copyright (C) 2000 ymnk, JCraft,Inc.
*
* Written by: 2000 ymnk<[email protected]>
* Ported to C# from JOrbis by: Mark Crichton <[email protected]>
*
* Thanks go to the JOrbis team, for licencing the code under the
* LGPL, making my job a lot easier.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public License
* as published by the Free Software Foundation; either version 2 of
* the License, or (at your option) any later version.
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Library General Public License for more details.
*
* You should have received a copy of the GNU Library General Public
* License along with this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/

using System;

namespace csogg
Expand Down
24 changes: 24 additions & 0 deletions csogg/Page.cs
Original file line number Diff line number Diff line change
@@ -1,3 +1,27 @@
/* csogg
* Copyright (C) 2000 ymnk, JCraft,Inc.
*
* Written by: 2000 ymnk<[email protected]>
* Ported to C# from JOrbis by: Mark Crichton <[email protected]>
*
* Thanks go to the JOrbis team, for licencing the code under the
* LGPL, making my job a lot easier.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public License
* as published by the Free Software Foundation; either version 2 of
* the License, or (at your option) any later version.
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Library General Public License for more details.
*
* You should have received a copy of the GNU Library General Public
* License along with this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/

using System;

namespace csogg
Expand Down
24 changes: 24 additions & 0 deletions csogg/StreamState.cs
Original file line number Diff line number Diff line change
@@ -1,3 +1,27 @@
/* csogg
* Copyright (C) 2000 ymnk, JCraft,Inc.
*
* Written by: 2000 ymnk<[email protected]>
* Ported to C# from JOrbis by: Mark Crichton <[email protected]>
*
* Thanks go to the JOrbis team, for licencing the code under the
* LGPL, making my job a lot easier.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public License
* as published by the Free Software Foundation; either version 2 of
* the License, or (at your option) any later version.
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Library General Public License for more details.
*
* You should have received a copy of the GNU Library General Public
* License along with this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/

using System;
using System.Text;

Expand Down
24 changes: 24 additions & 0 deletions csogg/SyncState.cs
Original file line number Diff line number Diff line change
@@ -1,3 +1,27 @@
/* csogg
* Copyright (C) 2000 ymnk, JCraft,Inc.
*
* Written by: 2000 ymnk<[email protected]>
* Ported to C# from JOrbis by: Mark Crichton <[email protected]>
*
* Thanks go to the JOrbis team, for licencing the code under the
* LGPL, making my job a lot easier.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public License
* as published by the Free Software Foundation; either version 2 of
* the License, or (at your option) any later version.
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Library General Public License for more details.
*
* You should have received a copy of the GNU Library General Public
* License along with this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/

using System;

namespace csogg
Expand Down
Binary file modified csvorbis.suo
Binary file not shown.
47 changes: 24 additions & 23 deletions csvorbis/AllocChain.cs
Original file line number Diff line number Diff line change
@@ -1,28 +1,29 @@
/* JOrbis
* Copyright (C) 2000 ymnk, JCraft,Inc.
*
* Written by: 2000 ymnk<[email protected]>
*
* Many thanks to
* Monty <[email protected]> and
* The XIPHOPHORUS Company http://www.xiph.org/ .
* JOrbis has been based on their awesome works, Vorbis codec.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public License
* as published by the Free Software Foundation; either version 2 of
* the License, or (at your option) any later version.
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Library General Public License for more details.
*
* You should have received a copy of the GNU Library General Public
* License along with this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
/* csvorbis
* Copyright (C) 2000 ymnk, JCraft,Inc.
*
* Written by: 2000 ymnk<[email protected]>
* Ported to C# from JOrbis by: Mark Crichton <[email protected]>
*
* Thanks go to the JOrbis team, for licencing the code under the
* LGPL, making my job a lot easier.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public License
* as published by the Free Software Foundation; either version 2 of
* the License, or (at your option) any later version.
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Library General Public License for more details.
*
* You should have received a copy of the GNU Library General Public
* License along with this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/

/* So, again, why is this here? Kill it soon */

using System;

namespace csvorbis
Expand Down
27 changes: 24 additions & 3 deletions csvorbis/AssemblyInfo.cs
Original file line number Diff line number Diff line change
@@ -1,3 +1,24 @@
/* csvorbis
* Copyright (C) 2002 Mark Crichton <[email protected]>
*
* Written by: Mark Crichton <[email protected]>
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public License
* as published by the Free Software Foundation; either version 2 of
* the License, or (at your option) any later version.
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Library General Public License for more details.
*
* You should have received a copy of the GNU Library General Public
* License along with this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/


using System.Reflection;
using System.Runtime.CompilerServices;

Expand All @@ -6,12 +27,12 @@
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
//
[assembly: AssemblyTitle("C# Vorbis Decoder")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyTitle("csVorbis")]
[assembly: AssemblyDescription("C# Vorbis Decoder")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("")]
[assembly: AssemblyCopyright("")]
[assembly: AssemblyCopyright("LGPL")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]

Expand Down
46 changes: 23 additions & 23 deletions csvorbis/Block.cs
Original file line number Diff line number Diff line change
@@ -1,28 +1,28 @@
/* JOrbis
* Copyright (C) 2000 ymnk, JCraft,Inc.
*
* Written by: 2000 ymnk<[email protected]>
*
* Many thanks to
* Monty <[email protected]> and
* The XIPHOPHORUS Company http://www.xiph.org/ .
* JOrbis has been based on their awesome works, Vorbis codec.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public License
* as published by the Free Software Foundation; either version 2 of
* the License, or (at your option) any later version.
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Library General Public License for more details.
*
* You should have received a copy of the GNU Library General Public
* License along with this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
/* csvorbis
* Copyright (C) 2000 ymnk, JCraft,Inc.
*
* Written by: 2000 ymnk<[email protected]>
* Ported to C# from JOrbis by: Mark Crichton <[email protected]>
*
* Thanks go to the JOrbis team, for licencing the code under the
* LGPL, making my job a lot easier.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public License
* as published by the Free Software Foundation; either version 2 of
* the License, or (at your option) any later version.
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Library General Public License for more details.
*
* You should have received a copy of the GNU Library General Public
* License along with this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/


using System;
using csogg;

Expand Down
Loading

0 comments on commit ff790de

Please sign in to comment.