X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=blobdiff_plain;f=error.h;fp=error.h;h=a64348e342e2aeef66a09b9e2e808f57366b002d;hp=7d10ff23a4cf10d7d57bd44c6234230dce97bd7c;hb=e7a40750746aa95f665629e0453e962d55897e36;hpb=e1dfa207b2f03e2c06ccfdc6c1c68598703ba4d1 diff --git a/error.h b/error.h index 7d10ff23..a64348e3 100644 --- a/error.h +++ b/error.h @@ -72,6 +72,7 @@ enum para_subsystem { SS_WRITE_COMMON, SS_ALSA_WRITER, SS_FILE_WRITER, + SS_OSX_WRITER, NUM_SS }; @@ -91,6 +92,15 @@ enum para_subsystem { extern const char **para_errlist[]; /** \endcond */ +#define OSX_WRITER_ERRORS \ + PARA_ERROR(STREAM_FORMAT, "could not set stream format"), \ + PARA_ERROR(ADD_CALLBACK, "can not add callback"), \ + PARA_ERROR(READ_STDIN, "failed to read from stdin"), \ + PARA_ERROR(OPEN_COMP, "OpenAComponent() error"), \ + PARA_ERROR(UNIT_INIT, "AudioUnitInitialize() error"), \ + PARA_ERROR(DEFAULT_COMP, "can not find default audio output component"), \ + + #define AUDIOC_ERRORS \ PARA_ERROR(AUDIOC_SYNTAX, "audioc syntax error"), \ PARA_ERROR(AUDIOC_READ, "audioc read error"), \ @@ -546,6 +556,7 @@ SS_ENUM(WRITE); SS_ENUM(WRITE_COMMON); SS_ENUM(ALSA_WRITER); SS_ENUM(FILE_WRITER); +SS_ENUM(OSX_WRITER); SS_ENUM(RINGBUFFER); SS_ENUM(CLIENT); SS_ENUM(AUDIOC);