~ubuntu-branches/ubuntu/gutsy/audacity/gutsy-backports

« back to all changes in this revision

Viewing changes to lib-src/libsndfile/src/ogg.c

  • Committer: Bazaar Package Importer
  • Author(s): John Dong
  • Date: 2008-02-18 21:58:19 UTC
  • mfrom: (13.1.2 hardy)
  • Revision ID: james.westby@ubuntu.com-20080218215819-tmbcf1rx238r8gdv
Tags: 1.3.4-1.1ubuntu1~gutsy1
Automated backport upload; no source changes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*
2
 
** Copyright (C) 2002-2004 Erik de Castro Lopo <erikd@mega-nerd.com>
3
 
**
4
 
** This program is free software ; you can redistribute it and/or modify
5
 
** it under the terms of the GNU Lesser General Public License as published by
6
 
** the Free Software Foundation ; either version 2.1 of the License, or
7
 
** (at your option) any later version.
8
 
**
9
 
** This program is distributed in the hope that it will be useful,
10
 
** but WITHOUT ANY WARRANTY ; without even the implied warranty of
11
 
** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12
 
** GNU Lesser General Public License for more details.
13
 
**
14
 
** You should have received a copy of the GNU Lesser General Public License
15
 
** along with this program ; if not, write to the Free Software
16
 
** Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
17
 
*/
18
 
 
19
 
#include "sfconfig.h"
20
 
 
21
 
#include <stdio.h>
22
 
#include <fcntl.h>
23
 
#include <string.h>
24
 
#include <ctype.h>
25
 
 
26
 
#include "sndfile.h"
27
 
#include "sfendian.h"
28
 
#include "common.h"
29
 
 
30
 
int
31
 
ogg_open        (SF_PRIVATE *psf)
32
 
{       if (psf)
33
 
                return SFE_UNIMPLEMENTED ;
34
 
        return (psf && 0) ;
35
 
} /* ogg_open */
36
 
 
37
 
 
38
 
/*
39
 
** Do not edit or modify anything in this comment block.
40
 
** The arch-tag line is a file identity tag for the GNU Arch
41
 
** revision control system.
42
 
**
43
 
** arch-tag: 9ff1fe9c-629e-4e9c-9ef5-3d0eb1e427a0
44
 
*/