Home | History | Annotate | Download | only in include

Lines Matching refs:AF_ERR_BASE

54 #define AF_ERR_BASE 3000
326 /* AF_ERR_BASE is #defined in dmedia/dmedia.h */
330 AF_ERR_NOT_IMPLEMENTED = 0+AF_ERR_BASE, /* not implemented yet */
331 AF_ERR_BAD_FILEHANDLE = 1+AF_ERR_BASE, /* invalid filehandle */
332 AF_ERR_BAD_READ = 5+AF_ERR_BASE, /* unix read failed */
333 AF_ERR_BAD_WRITE = 6+AF_ERR_BASE, /* unix write failed */
334 AF_ERR_BAD_LSEEK = 7+AF_ERR_BASE, /* unix lseek failed */
335 AF_ERR_BAD_ACCMODE = 10+AF_ERR_BASE, /* unrecognized audio file access mode */
336 AF_ERR_NO_WRITEACC = 11+AF_ERR_BASE, /* file not open for writing */
337 AF_ERR_NO_READACC = 12+AF_ERR_BASE, /* file not open for reading */
338 AF_ERR_BAD_FILEFMT = 13+AF_ERR_BASE, /* unrecognized audio file format */
339 AF_ERR_BAD_RATE = 14+AF_ERR_BASE, /* invalid sample rate */
340 AF_ERR_BAD_CHANNELS = 15+AF_ERR_BASE, /* invalid # channels*/
341 AF_ERR_BAD_SAMPCNT = 16+AF_ERR_BASE, /* invalid sample count */
342 AF_ERR_BAD_WIDTH = 17+AF_ERR_BASE, /* invalid sample width */
343 AF_ERR_BAD_SEEKMODE = 18+AF_ERR_BASE, /* invalid seek mode */
344 AF_ERR_BAD_LOOPID = 21+AF_ERR_BASE, /* invalid loop id */
345 AF_ERR_BAD_SAMPFMT = 22+AF_ERR_BASE, /* bad sample format */
346 AF_ERR_BAD_FILESETUP = 23+AF_ERR_BASE, /* bad file setup structure*/
347 AF_ERR_BAD_TRACKID = 24+AF_ERR_BASE, /* no track corresponding to id */
348 AF_ERR_BAD_NUMTRACKS = 25+AF_ERR_BASE, /* wrong number of tracks for file format */
349 AF_ERR_BAD_LOOPMODE = 27+AF_ERR_BASE, /* unrecognized loop mode symbol */
350 AF_ERR_BAD_INSTID = 28+AF_ERR_BASE, /* invalid instrument id */
351 AF_ERR_BAD_NUMLOOPS = 29+AF_ERR_BASE, /* bad number of loops */
352 AF_ERR_BAD_NUMMARKS = 30+AF_ERR_BASE, /* bad number of markers */
353 AF_ERR_BAD_MARKID = 31+AF_ERR_BASE, /* bad marker id */
354 AF_ERR_BAD_MARKPOS = 32+AF_ERR_BASE, /* invalid marker position value */
355 AF_ERR_BAD_NUMINSTS = 33+AF_ERR_BASE, /* invalid number of instruments */
356 AF_ERR_BAD_NOAESDATA = 34+AF_ERR_BASE,
357 AF_ERR_BAD_MISCID = 35+AF_ERR_BASE,
358 AF_ERR_BAD_NUMMISC = 36+AF_ERR_BASE,
359 AF_ERR_BAD_MISCSIZE = 37+AF_ERR_BASE,
360 AF_ERR_BAD_MISCTYPE = 38+AF_ERR_BASE,
361 AF_ERR_BAD_MISCSEEK = 39+AF_ERR_BASE,
362 AF_ERR_BAD_STRLEN = 40+AF_ERR_BASE, /* invalid string length */
363 AF_ERR_BAD_RATECONV = 45+AF_ERR_BASE,
364 AF_ERR_BAD_SYNCFILE = 46+AF_ERR_BASE,
365 AF_ERR_BAD_CODEC_CONFIG = 47+AF_ERR_BASE, /* improperly configured codec */
366 AF_ERR_BAD_CODEC_TYPE = 50+AF_ERR_BASE, /* unsupported codec type */
367 AF_ERR_BAD_INSTPTYPE = 51+AF_ERR_BASE, /* invalid instrument parameter type */
368 AF_ERR_BAD_INSTPID = 52+AF_ERR_BASE, /* invalid instrument parameter id */
370 AF_ERR_BAD_BYTEORDER = 53+AF_ERR_BASE,
371 AF_ERR_BAD_FILEFMT_PARAM = 54+AF_ERR_BASE, /* unrecognized file format parameter */
372 AF_ERR_BAD_COMP_PARAM = 55+AF_ERR_BASE, /* unrecognized compression parameter */
373 AF_ERR_BAD_DATAOFFSET = 56+AF_ERR_BASE, /* bad data offset */
374 AF_ERR_BAD_FRAMECNT = 57+AF_ERR_BASE, /* bad frame count */
376 AF_ERR_BAD_QUERYTYPE = 58+AF_ERR_BASE, /* bad query type */
377 AF_ERR_BAD_QUERY = 59+AF_ERR_BASE, /* bad argument to afQuery() */
378 AF_ERR_BAD_HEADER = 62+AF_ERR_BASE, /* failed to parse header */
379 AF_ERR_BAD_FRAME = 63+AF_ERR_BASE, /* bad frame number */
380 AF_ERR_BAD_LOOPCOUNT = 64+AF_ERR_BASE, /* bad loop count */
384 AF_ERR_BAD_AIFF_HEADER = 66+AF_ERR_BASE, /* failed to parse chunk header */
385 AF_ERR_BAD_AIFF_FORM = 67+AF_ERR_BASE, /* failed to parse FORM chunk */
386 AF_ERR_BAD_AIFF_SSND = 68+AF_ERR_BASE, /* failed to parse SSND chunk */
387 AF_ERR_BAD_AIFF_CHUNKID = 69+AF_ERR_BASE, /* unrecognized AIFF/AIFF-C chunk id */
388 AF_ERR_BAD_AIFF_COMM = 70+AF_ERR_BASE, /* failed to parse COMM chunk */
389 AF_ERR_BAD_AIFF_INST = 71+AF_ERR_BASE, /* failed to parse INST chunk */
390 AF_ERR_BAD_AIFF_MARK = 72+AF_ERR_BASE, /* failed to parse MARK chunk */
391 AF_ERR_BAD_AIFF_SKIP = 73+AF_ERR_BASE, /* failed to skip unsupported chunk */
392 AF_ERR_BAD_AIFF_LOOPMODE = 74+AF_ERR_BASE /* unrecognized loop mode (forw, etc) */