De-inline non-trivial, non-performance-critical functions
Functions that should stay inlined should have an explanation attached to them. git-svn-id: https://svn.musicpd.org/mpd/trunk@4355 09075e82-0dd4-0310-85a5-a0d7c8717e4f
This commit is contained in:
@@ -60,6 +60,7 @@ void flac_error_common_cb( const char * plugin,
|
||||
MpdTag * copyVorbisCommentBlockToMpdTag(const FLAC__StreamMetadata * block,
|
||||
MpdTag * tag);
|
||||
|
||||
/* keep this inlined, this is just macro but prettier :) */
|
||||
static inline int flacSendChunk(FlacData * data)
|
||||
{
|
||||
if (sendDataToOutputBuffer(data->cb, NULL, data->dc, 1, data->chunk,
|
||||
|
||||
@@ -82,7 +82,8 @@ static mpc_int32_t mpc_getsize_cb(void * vdata) {
|
||||
return data->inStream->size;
|
||||
}
|
||||
|
||||
inline mpd_sint16 convertSample(MPC_SAMPLE_FORMAT sample) {
|
||||
/* this _looks_ performance-critical, don't de-inline -- eric */
|
||||
static inline mpd_sint16 convertSample(MPC_SAMPLE_FORMAT sample) {
|
||||
/* only doing 16-bit audio for now */
|
||||
mpd_sint32 val;
|
||||
|
||||
|
||||
@@ -103,7 +103,7 @@ long ogg_tell_cb(void * vdata) {
|
||||
return (long)(data->inStream->offset);
|
||||
}
|
||||
|
||||
static inline char * ogg_parseComment(char * comment, char * needle) {
|
||||
static char * ogg_parseComment(char * comment, char * needle) {
|
||||
int len = strlen(needle);
|
||||
|
||||
if(strncasecmp(comment, needle, len) == 0 && *(comment+len) == '=') {
|
||||
|
||||
Reference in New Issue
Block a user