mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-26 02:17:34 +09:00
add configure option '--enable-int-audio-sample' for speed and audio driver compatibility, and fixups in exports and webrtc.
This commit is contained in:
parent
864fc133a3
commit
ef5e4f06e0
4 changed files with 37 additions and 1 deletions
|
|
@ -97,7 +97,7 @@ JxlThreadParallelRunnerCreate
|
|||
JxlThreadParallelRunnerDestroy
|
||||
JxlThreadParallelRunnerDefaultNumWorkerThreads
|
||||
#endif
|
||||
#ifdef MOZ_VORBIS
|
||||
#if defined(MOZ_VORBIS) || defined(MOZ_TREMOR)
|
||||
ogg_page_bos
|
||||
ogg_page_granulepos
|
||||
ogg_page_serialno
|
||||
|
|
@ -118,19 +118,25 @@ ogg_sync_init
|
|||
ogg_sync_pageseek
|
||||
ogg_sync_reset
|
||||
ogg_sync_wrote
|
||||
#ifdef MOZ_VORBIS
|
||||
vorbis_analysis
|
||||
vorbis_analysis_blockout
|
||||
vorbis_analysis_buffer
|
||||
vorbis_analysis_init
|
||||
vorbis_analysis_headerout
|
||||
vorbis_analysis_wrote
|
||||
#endif
|
||||
vorbis_block_clear
|
||||
vorbis_block_init
|
||||
#ifdef MOZ_VORBIS
|
||||
vorbis_comment_add_tag
|
||||
#endif
|
||||
vorbis_comment_clear
|
||||
vorbis_comment_init
|
||||
vorbis_dsp_clear
|
||||
#ifdef MOZ_VORBIS
|
||||
vorbis_encode_init_vbr
|
||||
#endif
|
||||
vorbis_info_clear
|
||||
vorbis_info_init
|
||||
vorbis_packet_blocksize
|
||||
|
|
@ -144,6 +150,7 @@ vorbis_synthesis_restart
|
|||
#endif
|
||||
moz_speex_resampler_init
|
||||
moz_speex_resampler_destroy
|
||||
moz_speex_resampler_process_int
|
||||
moz_speex_resampler_process_float
|
||||
moz_speex_resampler_process_interleaved_float
|
||||
moz_speex_resampler_process_interleaved_int
|
||||
|
|
@ -195,12 +202,16 @@ opus_decoder_destroy
|
|||
opus_decoder_ctl
|
||||
opus_decoder_get_nb_samples
|
||||
opus_decode
|
||||
#ifdef MOZ_SAMPLE_TYPE_FLOAT32
|
||||
opus_decode_float
|
||||
#endif
|
||||
opus_get_version_string
|
||||
opus_multistream_decoder_create
|
||||
opus_multistream_decoder_ctl
|
||||
opus_multistream_decoder_destroy
|
||||
#ifdef MOZ_SAMPLE_TYPE_FLOAT32
|
||||
opus_multistream_decode_float
|
||||
#endif
|
||||
opus_multistream_decode
|
||||
opus_packet_get_nb_frames
|
||||
opus_packet_get_samples_per_frame
|
||||
|
|
@ -208,15 +219,19 @@ opus_encoder_create
|
|||
opus_encoder_destroy
|
||||
opus_encoder_ctl
|
||||
opus_encode
|
||||
#ifdef MOZ_SAMPLE_TYPE_FLOAT32
|
||||
opus_encode_float
|
||||
#endif
|
||||
#ifdef MOZ_WEBRTC
|
||||
opus_custom_mode_create
|
||||
opus_packet_parse
|
||||
opus_packet_get_nb_channels
|
||||
downmix_int
|
||||
#ifdef MOZ_SAMPLE_TYPE_FLOAT32
|
||||
tonality_analysis_init
|
||||
run_analysis
|
||||
#endif
|
||||
#endif
|
||||
#ifndef MOZ_NATIVE_PNG
|
||||
MOZ_APNG_get_first_frame_is_hidden
|
||||
MOZ_APNG_get_next_frame_blend_op
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue