Lines Matching full:voc

1 /* libSoX Sound Blaster VOC handler sources.
17 * Added VOC format info from audio format FAQ so I don't have to keep
26 * Fixed support of multi-part VOC files, and files with
40 Creative Voice (VOC) file format
58 14-15 Offset of first datablock in .voc file (std 1A 00
60 16-17 Version number (minor,major) (VOC-HDR puts 0A 01)
61 18-19 2's Comp of Ver. # + 1234h (VOC-HDR puts 29 11)
114 Detailed description of new data blocks (VOC files version 1.20 and above):
163 /* Private data for VOC file */
171 int format; /* VOC audio format */
208 /* public VOC functions for SOX */
211 * startread() -- start reading a VOC file
223 lsx_fail_errno(ft, SOX_EHDR, "unexpected EOF in VOC header"); in startread()
227 lsx_fail_errno(ft, SOX_EHDR, "VOC file header incorrect"); in startread()
254 lsx_fail_errno(ft, SOX_EOF, "Input .voc file had no sound!"); in startread()
260 /* ANN: Check VOC format and map to the proper libSoX format value */ in startread()
295 lsx_fail("Unknown VOC format %d", v->format); in startread()
308 * read() -- read data from a VOC file
352 lsx_warn("VOC input: short file"); in read_samples()
363 lsx_warn("VOC input: short file"); in read_samples()
409 lsx_warn("VOC input: short file"); in read_samples()
424 lsx_warn("VOC input: short file"); in read_samples()
441 /* When saving samples in VOC format the following outline is followed:
448 * ANN: Not supported: uLaw and aLaw output VOC files....
452 * will be able to be played with a really old SB VOC player.)
460 "Output .voc file must be a file, not a pipe"); in startwrite()
476 * write() -- write a VOC file
537 * stopwrite() -- stop writing a VOC file
546 * Voc-file handlers (static, private to this module)
579 /* Based on VOC block type, process the block */ in getblock()
680 lsx_warn("VOC TEXT"); in getblock()
684 * find a voc file with a VOC_TEXT chunk :( in getblock()
799 LSX_FORMAT_HANDLER(voc) in LSX_FORMAT_HANDLER() argument
801 static char const *const names[] = { "voc", NULL }; in LSX_FORMAT_HANDLER()