[xiph-cvs] cvs commit: vorbis/macos/compat/sys types.h
Ralph Giles
giles at xiph.org
Sat Jul 13 04:08:59 PDT 2002
giles 02/07/13 04:08:58
Added: macos decoder_example.mcp encoder_example.mcp
libvorbis.mcp libvorbis.mcp.exp libvorbisenc.mcp
libvorbisenc.mcp.exp libvorbisfile.mcp
libvorbisfile.mcp.exp vorbis.mcp
macos/compat strdup.c
macos/compat/sys types.h
Removed: mac decoder_example.mcp libvorbis.mcp libvorbis.mcp.exp
libvorbisenc.mcp libvorbisenc.mcp.exp
libvorbisfile.mcp libvorbisfile.mcp.exp
mac/compat strdup.c
mac/compat/sys types.h
Log:
rename mac build directory to macos/
Revision Changes Path
1.1 vorbis/macos/decoder_example.mcp
Index: decoder_example.mcp
===================================================================
cool
!
C
h
´
Ù
<p>.M°
<p><p><p>NONAME.EXE
.au
C/C++ x86
NONAME.EXE
<p><p> .au
C/C++ x86
<p><p><p><p><p><p><p><p>pref
pref
<p>pref
pref
<p>1.1 vorbis/macos/encoder_example.mcp
Index: encoder_example.mcp
===================================================================
cool
!
G
j
´
×
þ
<p><p><p><p>
-X W
<p> Target
NONAME.EXE
NONAME.EXE
.au
C/C++ x86
<p><p><p><p> .au
C/C++ x86
<p>Unicode.h
(
pref
pref
<p>pref
pref
<p>1.1 vorbis/macos/libvorbis.mcp
Index: libvorbis.mcp
===================================================================
cool
<p><p><p><p><p>
F
l
«
Ô
ù
<p><p><p><p><p><p><p><p>NONAME.EXE
.au
C/C++ x86
NONAME.EXE
.au
C/C++ x86
ø¢vk[ÀO
<p><p><p>pref
pref
pref
pref
:
<p>1.1 vorbis/macos/libvorbis.mcp.exp
Index: libvorbis.mcp.exp
===================================================================
### From "vorbis/codec.h"
# Vorbis PRIMITIVES: general
vorbis_info_init
vorbis_info_clear
vorbis_info_blocksize
vorbis_comment_init
vorbis_comment_add
vorbis_comment_add_tag
vorbis_comment_query
vorbis_comment_query_count
vorbis_comment_clear
vorbis_block_init
vorbis_block_clear
vorbis_dsp_clear
# Vorbis PRIMITIVES: analysis/DSP layer
vorbis_analysis_init
vorbis_commentheader_out
vorbis_analysis_headerout
vorbis_analysis_buffer
vorbis_analysis_wrote
vorbis_analysis_blockout
vorbis_analysis
vorbis_bitrate_addblock
vorbis_bitrate_flushpacket
# Vorbis PRIMITIVES: synthesis layer
vorbis_synthesis_headerin
vorbis_synthesis_init
vorbis_synthesis
vorbis_synthesis_trackonly
vorbis_synthesis_blockin
vorbis_synthesis_pcmout
vorbis_synthesis_read
vorbis_packet_blocksize
<p><p>1.1 vorbis/macos/libvorbisenc.mcp
Index: libvorbisenc.mcp
===================================================================
cool
<p><p><p><p><p><p><p><p><p>NONAME.EXE
ava Language
F
l
«
Ô
ù
<p><p> .au
C/C++ x86
<p><p> .au
C/C++ x86
<p>NONAME.EXE
cntl
<p><p><p>pref
~
pref
T
h
pref
r
/
=
pref
<p>1.1 vorbis/macos/libvorbisenc.mcp.exp
Index: libvorbisenc.mcp.exp
===================================================================
### From "vorbis/vorbisenc.h"
vorbis_encode_init
vorbis_encode_setup_managed
vorbis_encode_setup_vbr
vorbis_encode_init_vbr
vorbis_encode_setup_init
vorbis_encode_ctl
<p><p>1.1 vorbis/macos/libvorbisfile.mcp
Index: libvorbisfile.mcp
===================================================================
cool
<p><p><p><p><p>g:C/C++ Compiler
F
l
«
Ô
ù
NONAME.EXE
NONAME.EXE
<p><p><p><p><p> .au
C/C++ x86
<p><p><p><p><p><p> .au
C/C++ x86
<p><p><p><p><p><p><p><p><p><p>¨
¼
pref
Æ
Ò
pref
$
>
~
T
h
pref
r
à
J
pref
y
<p>1.1 vorbis/macos/libvorbisfile.mcp.exp
Index: libvorbisfile.mcp.exp
===================================================================
### From "vorbis/vorbisfile.h"
ov_clear
ov_open
ov_open_callbacks
ov_test
ov_test_callbacks
ov_test_open
ov_bitrate
ov_bitrate_instant
ov_streams
ov_seekable
ov_serialnumber
ov_raw_total
ov_pcm_total
ov_time_total
ov_raw_seek
ov_pcm_seek
ov_pcm_seek_page
ov_time_seek
ov_time_seek_page
ov_raw_tell
ov_pcm_tell
ov_time_tell
ov_info
ov_comment
ov_read
ov_read_float
<p>1.1 vorbis/macos/vorbis.mcp
Index: vorbis.mcp
===================================================================
cool
<p><p><p>RSRC
ÔHCTXT
<p><p>noname.exe
<p><p><p><p>RSRC
cntl
cntl
<p>noname.exe
pref
pref
<p>1.1 vorbis/macos/compat/strdup.c
Index: strdup.c
===================================================================
#include <ogg/os_types.h>
#include <sys/types.h>
#include <string.h>
#include <stdlib.h>
char *strdup(const char *inStr)
{
char *outStr = NULL;
if (inStr == NULL) {
return NULL;
}
outStr = _ogg_malloc(strlen(inStr) + 1);
if (outStr != NULL) {
strcpy(outStr, inStr);
}
return outStr;
}
<p><p>1.1 vorbis/macos/compat/sys/types.h
Index: types.h
===================================================================
#ifndef __SYS_TYPES_H__
#define __SYS_TYPES_H__ 1
#include <MacTypes.h>
#include <alloca.h>
#include <string.h>
typedef short int16_t;
typedef long int32_t;
typedef long long int64_t;
#define vorbis_size32_t long
#if defined(__cplusplus)
extern "C" {
#endif
#pragma options align=power
char *strdup(const char *inStr);
#pragma options align=reset
#if defined(__cplusplus)
}
#endif
#endif /* __SYS_TYPES_H__ */
<p><p>--- >8 ----
List archives: http://www.xiph.org/archives/
Ogg project homepage: http://www.xiph.org/ogg/
To unsubscribe from this list, send a message to 'cvs-request at xiph.org'
containing only the word 'unsubscribe' in the body. No subject is needed.
Unsubscribe messages sent to the list will be ignored/filtered.
More information about the commits
mailing list