mirror of
https://github.com/cookiengineer/audacity
synced 2025-10-10 16:43:33 +02:00
Move library tree where it belongs
This commit is contained in:
21
lib-src/libvorbis/macos/compat/strdup.c
Normal file
21
lib-src/libvorbis/macos/compat/strdup.c
Normal file
@@ -0,0 +1,21 @@
|
||||
#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;
|
||||
}
|
1
lib-src/libvorbis/macos/compat/sys/types.h
Normal file
1
lib-src/libvorbis/macos/compat/sys/types.h
Normal file
@@ -0,0 +1 @@
|
||||
#ifndef __SYS_TYPES_H__
|
BIN
lib-src/libvorbis/macos/decoder_example.mcp
Normal file
BIN
lib-src/libvorbis/macos/decoder_example.mcp
Normal file
Binary file not shown.
BIN
lib-src/libvorbis/macos/encoder_example.mcp
Normal file
BIN
lib-src/libvorbis/macos/encoder_example.mcp
Normal file
Binary file not shown.
BIN
lib-src/libvorbis/macos/libvorbis.mcp
Normal file
BIN
lib-src/libvorbis/macos/libvorbis.mcp
Normal file
Binary file not shown.
45
lib-src/libvorbis/macos/libvorbis.mcp.exp
Normal file
45
lib-src/libvorbis/macos/libvorbis.mcp.exp
Normal file
@@ -0,0 +1,45 @@
|
||||
### 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_granule_time
|
||||
|
||||
# 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_restart
|
||||
vorbis_synthesis
|
||||
vorbis_synthesis_trackonly
|
||||
vorbis_synthesis_blockin
|
||||
vorbis_synthesis_pcmout
|
||||
vorbis_synthesis_lapout
|
||||
vorbis_synthesis_read
|
||||
vorbis_packet_blocksize
|
||||
vorbis_synthesis_halfrate
|
||||
vorbis_synthesis_halfrate_p
|
BIN
lib-src/libvorbis/macos/libvorbisenc.mcp
Executable file
BIN
lib-src/libvorbis/macos/libvorbisenc.mcp
Executable file
Binary file not shown.
8
lib-src/libvorbis/macos/libvorbisenc.mcp.exp
Executable file
8
lib-src/libvorbis/macos/libvorbisenc.mcp.exp
Executable file
@@ -0,0 +1,8 @@
|
||||
### 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
|
BIN
lib-src/libvorbis/macos/libvorbisfile.mcp
Executable file
BIN
lib-src/libvorbis/macos/libvorbisfile.mcp
Executable file
Binary file not shown.
45
lib-src/libvorbis/macos/libvorbisfile.mcp.exp
Executable file
45
lib-src/libvorbis/macos/libvorbisfile.mcp.exp
Executable file
@@ -0,0 +1,45 @@
|
||||
### 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_seek_lap
|
||||
ov_pcm_seek_lap
|
||||
ov_pcm_seek_page_lap
|
||||
ov_time_seek_lap
|
||||
ov_time_seek_page_lap
|
||||
|
||||
ov_raw_tell
|
||||
ov_pcm_tell
|
||||
ov_time_tell
|
||||
|
||||
ov_info
|
||||
ov_comment
|
||||
|
||||
ov_read
|
||||
ov_read_float
|
||||
|
||||
ov_crosslap
|
||||
ov_halfrate
|
||||
ov_halfrate_p
|
BIN
lib-src/libvorbis/macos/vorbis.mcp
Normal file
BIN
lib-src/libvorbis/macos/vorbis.mcp
Normal file
Binary file not shown.
Reference in New Issue
Block a user