Home
last modified time | relevance | path

Searched refs:snd_file (Results 1 – 18 of 18) sorted by relevance

/dports/audio/faust/faust-2.37.3/architecture/faust/gui/
H A DLibsndfileReader.h149 return checkFileAux(snd_file, path_name); in checkFile()
158 return checkFileAux(snd_file, "virtual file"); in checkFile()
163 if (snd_file) { in checkFileAux()
164 sf_close(snd_file); in checkFileAux()
178 getParamsFileAux(snd_file, snd_info, channels, length); in getParamsFile()
187 getParamsFileAux(snd_file, snd_info, channels, length); in getParamsFile()
192 assert(snd_file); in getParamsFileAux()
199 sf_close(snd_file); in getParamsFileAux()
223 assert(snd_file); in readFileAux()
277 nbf = reader(snd_file, buffer_in, BUFFER_SIZE); in readFileAux()
[all …]
/dports/games/quakeforge/quakeforge-0.7.2/libs/audio/targets/
H A Dsnd_disk.c54 static QFile *snd_file; variable
91 if (!(snd_file = Qopen ("qf.raw", "wb"))) in SNDDMA_Init()
114 Qclose (snd_file); in SNDDMA_Shutdown()
115 snd_file = 0; in SNDDMA_Shutdown()
136 Qwrite (snd_file, sn.buffer, count); in SNDDMA_Submit()
/dports/games/xboing/xboing/audio/
H A DLINUXaudio.c247 char snd_file[256]; local
249 strcpy(snd_file,filename);
250 if (write(snd_pipes[1],snd_file,256) < 0)
H A DSVR4audio.c236 char snd_file[256]; local
238 strcpy(snd_file,filename);
239 if (write(snd_pipes[1],snd_file,256) < 0)
/dports/audio/snd/snd-21.2/tools/
H A Dsam.c178 if (snd_file) in all_done()
181 fclose(snd_file); in all_done()
183 fseek(snd_file, 4L, SEEK_SET); in all_done()
186 fseek(snd_file, 76L, SEEK_SET); in all_done()
189 fclose(snd_file); in all_done()
1180 if (!snd_file) in linger()
1247 fwrite(dac_out, 4, 4, snd_file); in linger()
1531 snd_file = NULL; in ticks_command()
1534 if (snd_file == NULL) in ticks_command()
1562 snd_file = fopen(output_filename, "w"); in ticks_command()
[all …]
/dports/emulators/vice/vice-3.5/src/lib/liblame/frontend/
H A Dget_audio.c363 SNDFILE *snd_file; member
607 global. snd_file = 0; in init_infile()
616 global. snd_file = open_snd_file(gfp, inPath); in init_infile()
619 if (global.snd_file == 0) { in init_infile()
633 return (global.snd_file != NULL || global.music_in != NULL) ? 1 : -1; in init_infile()
653 if (global.snd_file) { in close_infile()
654 if (sf_close(global.snd_file) != 0) { in close_infile()
659 global. snd_file = 0; in close_infile()
791 if (global.snd_file) { in get_audio_common()
793 samples_read = sf_read_int(global.snd_file, insamp, num_channels * samples_to_read); in get_audio_common()
/dports/audio/lame/lame-3.100/frontend/
H A Dget_audio.c363 SNDFILE *snd_file; member
609 global. snd_file = 0; in init_infile()
618 global. snd_file = open_snd_file(gfp, inPath); in init_infile()
621 if (global.snd_file == 0) { in init_infile()
635 return (global.snd_file != NULL || global.music_in != NULL) ? 1 : -1; in init_infile()
661 if (global.snd_file) { in close_infile()
662 if (sf_close(global.snd_file) != 0) { in close_infile()
667 global. snd_file = 0; in close_infile()
807 if (global.snd_file) { in get_audio_common()
809 samples_read = sf_read_int(global.snd_file, insamp, num_channels * samples_to_read); in get_audio_common()
/dports/emulators/libretro-vice/vice-libretro-5725415/vice/src/lib/liblame/frontend/
H A Dget_audio.c363 SNDFILE *snd_file; member
607 global. snd_file = 0; in init_infile()
616 global. snd_file = open_snd_file(gfp, inPath); in init_infile()
619 if (global.snd_file == 0) { in init_infile()
633 return (global.snd_file != NULL || global.music_in != NULL) ? 1 : -1; in init_infile()
653 if (global.snd_file) { in close_infile()
654 if (sf_close(global.snd_file) != 0) { in close_infile()
659 global. snd_file = 0; in close_infile()
791 if (global.snd_file) { in get_audio_common()
793 samples_read = sf_read_int(global.snd_file, insamp, num_channels * samples_to_read); in get_audio_common()
/dports/games/devilutionX/devilutionX-1.2.1/Source/
H A Deffects.h31 void effects_play_sound(const char *snd_file);
H A Deffects.cpp1398 void effects_play_sound(const char *snd_file) in effects_play_sound() argument
1407 if (!strcasecmp(sgSFX[i].pszName, snd_file) && sgSFX[i].pSnd) { in effects_play_sound()
/dports/audio/lmms/lmms-1.2.2/src/core/
H A DSampleBuffer.cpp211 SNDFILE * snd_file; in update() local
214 if( ( snd_file = sf_open_fd( f.handle(), SFM_READ, &sf_info, false ) ) != NULL ) in update()
222 sf_close( snd_file ); in update()
427 SNDFILE * snd_file; in decodeSampleSF() local
437 if( ( snd_file = sf_open_fd( f.handle(), SFM_READ, &sf_info, false ) ) != NULL ) in decodeSampleSF()
442 sf_rr = sf_read_float( snd_file, _buf, sf_info.channels * frames ); in decodeSampleSF()
454 sf_close( snd_file ); in decodeSampleSF()
/dports/security/p5-Authen-Captcha/Authen-Captcha-1.024/
H A DCaptcha.pm481 my $snd_file;
492 $snd_file .= <FILE>;
496 return \$snd_file;
/dports/audio/audacity/audacity-Audacity-3.1.3/lib-src/libnyquist/nyquist/nyqsrc/
H A Dsndwritepa.c119 SNDFILE *snd_file, float *buf, int64_t *ntotal,
124 SNDFILE *snd_file, float *buf, int64_t *ntotal,
/dports/audio/snd/snd-21.2/
H A Dclm.rb2844 snd_file = Snd.fullname(fname)
2845 find_sound(snd_file) or open_sound(snd_file)
/dports/games/alienarena/alienarena-7.66/source/
H A DMakefile.am151 client/snd_file.c \
H A DMakefile.in305 client/qmenu.h client/ref.h client/screen.h client/snd_file.c \
371 client/alienarena-snd_file.$(OBJEXT) \
722 client/ref.h client/screen.h client/snd_file.c \
1519 client/alienarena-snd_file.$(OBJEXT): client/$(am__dirstamp) \
1778 @AMDEP_TRUE@@am__include@ @am__quote@client/$(DEPDIR)/alienarena-snd_file.Po@am__quote@
2344 client/alienarena-snd_file.o: client/snd_file.c
2345snd_file.o -MD -MP -MF client/$(DEPDIR)/alienarena-snd_file.Tpo -c -o client/alienarena-snd_file.o…
2346 …UE@ $(AM_V_at)$(am__mv) client/$(DEPDIR)/alienarena-snd_file.Tpo client/$(DEPDIR)/alienarena-snd_f…
2351 client/alienarena-snd_file.obj: client/snd_file.c
2352 …AGS) -MT client/alienarena-snd_file.obj -MD -MP -MF client/$(DEPDIR)/alienarena-snd_file.Tpo -c -o…
[all …]
/dports/games/alienarena-data/alienarena-7.66/source/
H A DMakefile.am151 client/snd_file.c \
H A DMakefile.in305 client/qmenu.h client/ref.h client/screen.h client/snd_file.c \
371 client/alienarena-snd_file.$(OBJEXT) \
722 client/ref.h client/screen.h client/snd_file.c \
1519 client/alienarena-snd_file.$(OBJEXT): client/$(am__dirstamp) \
1778 @AMDEP_TRUE@@am__include@ @am__quote@client/$(DEPDIR)/alienarena-snd_file.Po@am__quote@
2344 client/alienarena-snd_file.o: client/snd_file.c
2345snd_file.o -MD -MP -MF client/$(DEPDIR)/alienarena-snd_file.Tpo -c -o client/alienarena-snd_file.o…
2346 …UE@ $(AM_V_at)$(am__mv) client/$(DEPDIR)/alienarena-snd_file.Tpo client/$(DEPDIR)/alienarena-snd_f…
2351 client/alienarena-snd_file.obj: client/snd_file.c
2352 …AGS) -MT client/alienarena-snd_file.obj -MD -MP -MF client/$(DEPDIR)/alienarena-snd_file.Tpo -c -o…
[all …]