X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=blobdiff_plain;f=error.h;h=4ec9da859752bb7d9b3328bd9b5ef86b1c47d855;hp=ec1ec7b060e5d8180b4671dd96cec7ebb5359157;hb=4d5a9b90c3e9cbdff019776d05792beb57fbfa31;hpb=52e437d1054c5f62f0538b3934419a3b71aa3d83 diff --git a/error.h b/error.h index ec1ec7b0..4ec9da85 100644 --- a/error.h +++ b/error.h @@ -34,6 +34,15 @@ DEFINE_ERRLIST_OBJECT_ENUM; extern const char **para_errlist[]; +#define PREBUFFER_FILTER_ERRORS \ + PARA_ERROR(PREBUFFER_SYNTAX, "syntax error in prebuffer filter config"), \ + +#define OSS_WRITE_ERRORS \ + PARA_ERROR(BAD_SAMPLE_FORMAT, "sample format not supported"), \ + PARA_ERROR(BAD_CHANNEL_COUNT, "channel count not supported"), \ + PARA_ERROR(BAD_SAMPLERATE, "sample rate not supported"), \ + + #define COMPRESS_FILTER_ERRORS \ PARA_ERROR(COMPRESS_SYNTAX, "syntax error in compress filter config"), \ @@ -143,7 +152,6 @@ extern const char **para_errlist[]; #define MOOD_ERRORS \ PARA_ERROR(MOOD_SYNTAX, "mood syntax error"), \ PARA_ERROR(NO_MOOD, "no mood available"), \ - PARA_ERROR(NOT_ADMISSIBLE, "file is not admissible"), \ PARA_ERROR(DUMMY_ROW, "attempted to access blob dummy object"), \ @@ -332,15 +340,12 @@ extern const char **para_errlist[]; #define OGG_AFH_ERRORS \ - PARA_ERROR(OGG_READ, "ogg read error"), \ PARA_ERROR(SYNC_PAGEOUT, "ogg sync page-out error (no ogg file?)"), \ PARA_ERROR(STREAM_PAGEIN, "ogg stream page-in error (first page)"), \ PARA_ERROR(STREAM_PACKETOUT, "ogg stream packet-out error (first packet)"), \ PARA_ERROR(VORBIS, "vorbis synthesis header-in error (not vorbis?)"), \ - PARA_ERROR(OGG_INFO, "ov_info error"), \ - PARA_ERROR(OGG_VERSION, "unsupported ogg version"), \ - PARA_ERROR(OGG_BAD_HEADER, "invalid ogg vorbis header"), \ - PARA_ERROR(OGG_UNKNOWN_ERROR, "unknown ogg vorbis error"), \ + PARA_ERROR(OGG_SYNC, "internal ogg storage overflow"), \ + PARA_ERROR(OGG_EMPTY, "no ogg pages found"), \ #define VSS_ERRORS \ @@ -394,7 +399,7 @@ extern const char **para_errlist[]; PARA_ERROR(BAD_PERIOD, "can not use period equal to buffer size"), \ PARA_ERROR(ALSA_WRITE, "alsa write error"), \ PARA_ERROR(PCM_OPEN, "unable to open pcm"), \ - PARA_ERROR(SND_PCM_INFO, "pcm info error"), \ + PARA_ERROR(PHYSICAL_WIDTH, "unable to determine bytes per frame"), \ PARA_ERROR(GET_BUFFER_TIME, "snd_pcm_hw_params_get_buffer_time_max() failed"), \ PARA_ERROR(SET_BUFFER_TIME, "snd_pcm_hw_params_set_buffer_time_near() failed"), \ PARA_ERROR(SET_RATE, "snd_pcm_hw_params_set_rate_near failed"), \