]> git.tuebingen.mpg.de Git - paraslash.git/blobdiff - vss.c
small documentation cleanup
[paraslash.git] / vss.c
diff --git a/vss.c b/vss.c
index d0b21da2f0072ba17ec2367ec38ef1a2ec97d972..1bb6ff86995c256c0f4230259dc0641a8899bd91 100644 (file)
--- a/vss.c
+++ b/vss.c
@@ -372,7 +372,7 @@ static void vss_eof(struct audio_format_handler *af)
        }
        gettimeofday(&now, NULL);
        tv_add(&mmd->afi.eof_tv, &now, &eof_barrier);
-       af->close_audio_file();
+       fclose(audio_file);
        audio_file = NULL;
        mmd->audio_format = -1;
        af = NULL;
@@ -505,12 +505,10 @@ again:
 /**
  * read a chunk of data from the current audio file
  *
- * \param current_chunk the chunk number to read
- *
  * \return The length of the chunk on success, zero on end of file, negative on
  * errors.  Note: If the current chunk is of length zero, but the end of the
  * file is not yet reached, this function returns -E_EMPTY_CHUNK.
- * */
+ */
 ssize_t vss_read_chunk(void)
 {
        ssize_t len;
@@ -544,9 +542,6 @@ ssize_t vss_read_chunk(void)
  * the current audio format handler to obtain a pointer to the data to be
  * sent out as well as its length. This information is then passed to each
  * supported sender's send() function which does the actual sending.
- *
- * Return value: Positive return value on success, zero on eof and negative
- * on errors.
  */
 void vss_send_chunk(void)
 {