This could cause para_server to return bogus messages back to
the client, including messages containing the string "(null)".
*
* \param name The filename.
*
- * \return This function returns -1 if it has no idea what kind of audio
- * file this might be. Otherwise the (non-negative) number of the audio format
- * is returned.
+ * \return This function returns \p -E_AUDIO_FORMAT if it has no idea what kind
+ * of audio file this might be. Otherwise the (non-negative) number of the
+ * audio format is returned.
*/
int guess_audio_format(const char *name)
{
return i;
}
}
- return -1;
+ return -E_AUDIO_FORMAT;
}
char *make_taginfo(char *title, char *artist, char *album, char *year,