]> git.tuebingen.mpg.de Git - paraslash.git/blobdiff - mood.c
mood.c: Fix comment for the scoring function.
[paraslash.git] / mood.c
diff --git a/mood.c b/mood.c
index fdf8cdce591e6a6de9359d79974c3e6108ffd3ba..bf6c40e165c52ba762457ae8901537bc6ca2594a 100644 (file)
--- a/mood.c
+++ b/mood.c
@@ -36,11 +36,10 @@ struct afs_statistics statistics;
 /**
  * Assign scores according to a mood_method.
  *
- * Each mood_method has its own mood_score_function. The first parameter passed
- * to that function is a pointer to a row of the audio file table.  It
- * determines the audio file for which a score is to be assigned.  The second
- * argument depends on the mood method this function is used for. It usually is
- * the argument given at the end of a mood line.
+ * Each mood_method has its own mood_score_function. The first three parameters
+ * passed to that function are informations about the audio file whose score is
+ * to be computed. The data argument depends on the mood method this function
+ * is used for. It usually is the argument given at the end of a mood line.
  *
  * Mood score functions must return values between -100 and +100 inclusively.
  * Boolean score functions should always return either -100 or +100.
@@ -176,8 +175,6 @@ static int mm_no_attributes_set_score_function(__a_unused const char *path,
                __a_unused const struct audio_format_info *afhi,
                __a_unused const void *data)
 {
-       if (!strcmp(path, "/home/mp3/checked/dvd_08/cd_52/Sade__Paradise.mp3"))
-               PARA_NOTICE_LOG("%s: %llu\n", path, afsi->attributes);
        if (!afsi->attributes)
                return 100;
        return -100;