Home
last modified time | relevance | path

Searched refs:filetyp (Results 1 – 25 of 67) sorted by relevance

123

/dports/audio/csound/csound-6.15.0/util/
H A Dnew_srconv.c75 static int filetyp, outformat; variable
195 filetyp = SF_FORMAT_WAV; in main()
199 filetyp = SF_FORMAT_AIFF; in main()
201 filetyp = SF_FORMAT_WAV; in main()
203 filetyp = SF_FORMAT_RAW; in main()
237 filetyp = SF_FORMAT_WAV; /* WAV output request */ in main()
240 filetyp = SF_FORMAT_RAW; /* skip sfheader */ in main()
399 if (filetyp == SF_FORMAT_RAW) rewrt_hdr = 0; in main()
401 if (filetyp == SF_FORMAT_WAV) in main()
403 else if (filetyp == SF_FORMAT_AIFF) in main()
[all …]
H A Dscale.c151 O.filetyp = O.outformat = 0; in scale()
156 O.filetyp = TYP_AIFF; in scale()
158 O.filetyp = TYP_WAV; in scale()
160 O.filetyp = TYP_IRCAM; in scale()
186 O.filetyp = TYP_AIFF; /* AIFF output request */ in scale()
192 O.filetyp = TYP_WAV; /* WAV output request */ in scale()
213 O.filetyp = TYP_RAW; /* skip sfheader */ in scale()
261 if (!O.filetyp) in scale()
262 O.filetyp = sc.p->filetyp; in scale()
265 O.sfheader = (O.filetyp == TYP_RAW ? 0 : 1); in scale()
[all …]
H A Dmixer.c184 O.filetyp = TYP_AIFF; in mixer_main()
186 O.filetyp = TYP_WAV; in mixer_main()
188 O.filetyp = TYP_IRCAM; in mixer_main()
219 O.filetyp = TYP_AIFF; /* AIFF output request */ in mixer_main()
225 O.filetyp = TYP_WAV; /* WAV output request */ in mixer_main()
289 O.filetyp = TYP_RAW; /* skip sfheader */ in mixer_main()
374 if (!O.filetyp) in mixer_main()
375 O.filetyp = mixin[0].p->filetyp; /* Copy from input file */ in mixer_main()
376 O.sfheader = (O.filetyp == TYP_RAW ? 0 : 1); in mixer_main()
384 if (O.filetyp == TYP_WAV) O.outfilename = "test.wav"; in mixer_main()
[all …]
H A Dsrconv.c231 O.filetyp = TYP_AIFF;
233 O.filetyp = TYP_WAV;
235 O.filetyp = TYP_IRCAM;
268 O.filetyp = TYP_AIFF; /* AIFF output request*/
271 O.filetyp = TYP_IRCAM; /* IRCAM output request */
274 O.filetyp = TYP_WAV; /* WAV output request */
277 O.filetyp = TYP_RAW; /* skip sfheader */
445 if (O.filetyp == TYP_RAW) {
452 if (O.outfilename == NULL && !O.filetyp)
458 if (O.filetyp == TYP_WAV)
[all …]
H A Ddnoise.c276 O.filetyp = TYP_AIFF; in dnoise()
278 O.filetyp = TYP_WAV; in dnoise()
280 O.filetyp = TYP_IRCAM; in dnoise()
309 if (UNLIKELY(O.filetyp == TYP_WAV)) in dnoise()
312 O.filetyp = TYP_AIFF; /* AIFF output request*/ in dnoise()
315 if (UNLIKELY(O.filetyp == TYP_AIFF || O.filetyp == TYP_WAV)) in dnoise()
318 O.filetyp = TYP_IRCAM; /* IRCAM output request */ in dnoise()
321 if (UNLIKELY(O.filetyp == TYP_AIFF)) in dnoise()
324 O.filetyp = TYP_WAV; /* WAV output request */ in dnoise()
327 O.filetyp = TYP_RAW; in dnoise()
[all …]
H A Dxtrct.c279 O.filetyp = xtrc.p->filetyp; /* Copy from input file */ in xtrct()
290 sfinfo.format = TYPE2SF(O.filetyp) | FORMAT2SF(O.outformat); in xtrct()
307 csound->type2csfiletype(O.filetyp, O.outformat), 0); in xtrct()
/dports/audio/csound/csound-6.15.0/InOut/
H A Dlibsnd.c613 switch (O->filetyp) { in sfopenout()
692 if (O->filetyp == TYP_AIFF || O->filetyp == TYP_WAV) { in sfopenout()
696 O->filetyp = TYP_AU; in sfopenout()
700 O->filetyp = TYP_IRCAM; in sfopenout()
765 if (UNLIKELY(O->filetyp == TYP_AU)) in sfopenout()
769 O->filetyp = TYP_AU; in sfopenout()
772 if (UNLIKELY(O->filetyp == TYP_IRCAM)) in sfopenout()
776 O->filetyp = TYP_IRCAM; in sfopenout()
822 (O->filetyp == TYP_WAV || O->filetyp == TYP_AIFF || in sfopenout()
823 O->filetyp == TYP_W64)) in sfopenout()
[all …]
H A Dlibsnd_u.c155 p->filetyp = SF2TYPE(sfinfo.format); in sndgetset()
193 type2string(p->filetyp), sfname); in sndgetset()
267 if (p->filetyp == TYP_WAV || p->filetyp == TYP_AIFF || in getsndin()
268 p->filetyp == TYP_W64) in getsndin()
/dports/audio/csound/csound-6.15.0/Top/
H A Dmain.c483 if (O->filetyp <= 0) { in csoundStart()
488 O->filetyp = TYP_AIFF; in csoundStart()
490 O->filetyp = TYP_WAV; in csoundStart()
492 O->filetyp = TYP_IRCAM; in csoundStart()
494 O->filetyp = TYP_RAW; in csoundStart()
502 O->filetyp = TYP_WAV; /* default to WAV if even SFOUTYP is unset */ in csoundStart()
504 O->filetyp = TYP_AIFF; /* ... or AIFF on the Mac */ in csoundStart()
508 O->sfheader = (O->filetyp == TYP_RAW ? 0 : 1); in csoundStart()
H A Dargdecode.c537 O->filetyp = ff->type; in decode_long()
556 O->filetyp = TYP_AIFF; /* AIFF output request */ in decode_long()
560 O->filetyp = TYP_AU; /* AU output request */ in decode_long()
633 O->filetyp = TYP_RAW; /* RAW output request */ in decode_long()
679 O->filetyp = TYP_IRCAM; /* IRCAM output request */ in decode_long()
683 O->filetyp = TYP_OGG; /* OGG output request */ in decode_long()
962 O->filetyp = TYP_WAV; /* WAV output request */ in decode_long()
1327 O->filetyp = TYP_AIFF; /* AIFF output request*/ in argdecode()
1333 O->filetyp = TYP_WAV; /* WAV output request */ in argdecode()
1715 oparms->filetyp = file_type_map[i].type; in csoundSetOutput()
[all …]
/dports/audio/csound/csound-6.15.0/Opcodes/
H A Dtabaudio.c153 sfinfo.format |= TYPE2SF(csound->oparms->filetyp); in tabaudiok()
159 sfinfo.format |= TYPE2SF(csound->oparms->filetyp); in tabaudiok()
240 sfinfo.format |= TYPE2SF(csound->oparms->filetyp); in tabaudioi()
246 sfinfo.format |= TYPE2SF(csound->oparms->filetyp); in tabaudioi()
/dports/editors/fpc-ide/fpc-3.2.2/compiler/llvm/
H A Dnllvmcnv.pas276 (tfiledef(left.resultdef).filetyp=ft_typed) and
278 (tfiledef(resultdef).filetyp=ft_untyped)
/dports/lang/fpc/fpc-3.2.2/compiler/llvm/
H A Dnllvmcnv.pas276 (tfiledef(left.resultdef).filetyp=ft_typed) and
278 (tfiledef(resultdef).filetyp=ft_untyped)
/dports/lang/fpc-source/fpc-3.2.2/compiler/llvm/
H A Dnllvmcnv.pas276 (tfiledef(left.resultdef).filetyp=ft_typed) and
278 (tfiledef(resultdef).filetyp=ft_untyped)
/dports/audio/csound/csound-6.15.0/iOS/Csound iOS Obj-C Examples/csound-iOS/headers/
H A Dsoundio.h130 int filetyp; /* file format (TYP_WAV, etc.) */ member
/dports/audio/csound/csound-6.15.0/include/
H A Dsoundio.h132 int filetyp; /* file format (TYP_WAV, etc.) */ member
/dports/audio/csound/csound-6.15.0/iOS/Csound iOS Swift Examples/Csound iOS SwiftExamples/csound-iOS/headers/
H A Dsoundio.h130 int filetyp; /* file format (TYP_WAV, etc.) */ member
/dports/editors/fpc-ide/fpc-3.2.2/compiler/
H A Ddefcmp.pas1850 if (tfiledef(def_from).filetyp=tfiledef(def_to).filetyp) then
1863 (tfiledef(def_from).filetyp = ft_typed) and
1864 (tfiledef(def_to).filetyp = ft_typed) and
1875 if ((tfiledef(def_from).filetyp = ft_untyped) and
1876 (tfiledef(def_to).filetyp = ft_typed)) or
1877 ((tfiledef(def_from).filetyp = ft_typed) and
1878 (tfiledef(def_to).filetyp = ft_untyped)) then
H A Dsymdef.pas146 filetyp : tfiletyp;
3122 filetyp:=ft_text;
3131 filetyp:=ft_untyped;
3139 filetyp:=ft_typed;
3158 case filetyp of
3174 if filetyp=ft_typed then
3182 if filetyp=ft_typed then
3197 case filetyp of
3217 case filetyp of
3241 case filetyp of
[all …]
/dports/lang/fpc-source/fpc-3.2.2/compiler/
H A Ddefcmp.pas1850 if (tfiledef(def_from).filetyp=tfiledef(def_to).filetyp) then
1863 (tfiledef(def_from).filetyp = ft_typed) and
1864 (tfiledef(def_to).filetyp = ft_typed) and
1875 if ((tfiledef(def_from).filetyp = ft_untyped) and
1876 (tfiledef(def_to).filetyp = ft_typed)) or
1877 ((tfiledef(def_from).filetyp = ft_typed) and
1878 (tfiledef(def_to).filetyp = ft_untyped)) then
H A Dsymdef.pas146 filetyp : tfiletyp;
3122 filetyp:=ft_text;
3131 filetyp:=ft_untyped;
3139 filetyp:=ft_typed;
3158 case filetyp of
3174 if filetyp=ft_typed then
3182 if filetyp=ft_typed then
3197 case filetyp of
3217 case filetyp of
3241 case filetyp of
[all …]
/dports/lang/fpc/fpc-3.2.2/compiler/
H A Ddefcmp.pas1850 if (tfiledef(def_from).filetyp=tfiledef(def_to).filetyp) then
1863 (tfiledef(def_from).filetyp = ft_typed) and
1864 (tfiledef(def_to).filetyp = ft_typed) and
1875 if ((tfiledef(def_from).filetyp = ft_untyped) and
1876 (tfiledef(def_to).filetyp = ft_typed)) or
1877 ((tfiledef(def_from).filetyp = ft_typed) and
1878 (tfiledef(def_to).filetyp = ft_untyped)) then
H A Dsymdef.pas146 filetyp : tfiletyp;
3122 filetyp:=ft_text;
3131 filetyp:=ft_untyped;
3139 filetyp:=ft_typed;
3158 case filetyp of
3174 if filetyp=ft_typed then
3182 if filetyp=ft_typed then
3197 case filetyp of
3217 case filetyp of
3241 case filetyp of
[all …]
/dports/lang/fpc/fpc-3.2.2/compiler/jvm/
H A Dtgcpu.pas216 case tfiledef(def).filetyp of
/dports/lang/fpc-source/fpc-3.2.2/compiler/jvm/
H A Dtgcpu.pas216 case tfiledef(def).filetyp of

123