simage  1.8.3
Coin3D texture image library
Loading...
Searching...
No Matches
simage_oggvorbis.h
Go to the documentation of this file.
1#ifndef SIMAGE_OGGVORBIS_H
2#define SIMAGE_OGGVORBIS_H
3
4/*
5 * Copyright (c) Kongsberg Oil & Gas Technologies
6 *
7 * Permission to use, copy, modify, and distribute this software for any
8 * purpose with or without fee is hereby granted, provided that the above
9 * copyright notice and this permission notice appear in all copies.
10 *
11 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
12 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
13 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
14 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
15 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
16 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
17 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
18 */
19
20#ifdef HAVE_CONFIG_H
21#include <config.h>
22#endif /* HAVE_CONFIG_H */
23
24#ifndef SIMAGE_OGGVORBIS_SUPPORT
25#error "This file should not be used under the current configuration!"
26#endif /* !SIMAGE_OGGVORBIS_SUPPORT */
27
28#include <simage.h>
29
30#ifdef __cplusplus
31extern "C" {
32#endif
33
34 int oggvorbis_reader_stream_open(const char * filename, s_stream * stream,
35 s_params * params);
36 void * oggvorbis_reader_stream_get(s_stream * stream, void * buffer,
37 int *size, s_params * params);
38 int oggvorbis_reader_stream_seek(s_stream * stream, int offset, int whence,
39 s_params * params);
40 int oggvorbis_reader_stream_tell(s_stream * stream, s_params * params);
42
43#ifdef __cplusplus
44}
45#endif
46
47#endif /* SIMAGE_OGGVORBIS_H */
Windows specific information.
int oggvorbis_reader_stream_open(const char *filename, s_stream *stream, s_params *params)
Definition simage_oggvorbis_reader.c:191
int oggvorbis_reader_stream_seek(s_stream *stream, int offset, int whence, s_params *params)
Definition simage_oggvorbis_reader.c:243
void * oggvorbis_reader_stream_get(s_stream *stream, void *buffer, int *size, s_params *params)
Definition simage_oggvorbis_reader.c:211
int oggvorbis_reader_stream_tell(s_stream *stream, s_params *params)
Definition simage_oggvorbis_reader.c:262
void oggvorbis_reader_stream_close(s_stream *stream)
Definition simage_oggvorbis_reader.c:232
Definition params.c:44
Definition stream.c:37