📄 hpaudiolib_stubs.c
字号:
/* * This material contains unpublished, proprietary software of * Entropic Research Laboratory, Inc. Any reproduction, distribution, * or publication of this work must be authorized in writing by Entropic * Research Laboratory, Inc., and must bear the notice: * * "Copyright (c) 1990-1993 Entropic Research Laboratory, Inc. * All rights reserved" * * The copyright notice above does not evidence any actual or intended * publication of this source code. * * Written by: David Talkin Alan Parker * Checked by: * Revised by: * * Brief description: * */static char *sccs_id = "@(#)hpaudiolib_stubs.c 1.2 11/3/97 ERL";#include <stdio.h>#include <signal.h>int da_done = 1;int channel = 1;extern int hp_sent, hp_error_at, hp_maxsamps, da_location, debug_level;void (*sig_save[3])();play_from_file(istr, length, srate, chan, amp, ehead) FILE *istr; double *srate; int chan, /* -1==>stereo; else chan == (channel number to play) */ amp; /* Max sample value in the file or region. */ void *ehead;{ double frequency = *srate * 1000.0; channel = (chan < 0)? 0 : channel+1; dacmaster_hp(-1, NULL, length, &frequency, amp, istr, ehead); *srate = frequency/1000.0; while(!da_done && (hp_error_at < 0)) { if(!hp_handle(1,-1)) /* returns 0 if couldn't write a bufferfull */ sleep(1); /* sleep 100 ms */ } hp_completion(); if(hp_error_at >= 0) return(hp_error_at); else return(hp_sent);}/*---------------------------------------------------------------------*/void stop_hp_da_waves(sig) int sig;{ int number_left; number_left = hp_maxsamps - hp_sent; if(debug_level) fprintf(stderr,"Caught a signal (%d); number_left:%d\n", sig, number_left); if(number_left > 0) { char str[200]; sprintf(str,"set da_location %d\n", da_location); send_xwaves2(NULL, NULL, str, debug_level); /* This pause seems to be necessary to prevent the possibility that the child's death will be registered before the send_xwaves is! */ sleep(1); } exit(0);}/*************************************************************************/void interrupt_hp_da(sig) int sig;{ hp_error_at = hp_sent; hp_completion(); if(debug_level) fprintf(stderr,"Caught a signal (%d); da_location:%d\n", sig, da_location); exit(0);}set_dac_callbacks(interval_us) long interval_us;{ /* Setup the signal handlers. */ sig_save[1] = signal( SIGINT, interrupt_hp_da); sig_save[2] = signal( SIGQUIT, interrupt_hp_da); sig_save[3] = signal( SIGUSR1, stop_hp_da_waves);}clear_dac_callbacks(){ /* Restore the original signal handlers. */#ifdef FOR_STANDALONE signal(SIGINT,sig_save[1]); signal(SIGQUIT,sig_save[2]); signal(SIGUSR1,sig_save[3]);#endif}set_pvd() {}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -