[DVDnav-discuss] r1133 - in trunk/libdvdread/src: dvd_input.c dvd_input.h

rathann subversion at mplayerhq.hu
Mon Sep 1 23:04:34 CEST 2008


Author: rathann
Date: Mon Sep  1 23:04:33 2008
New Revision: 1133

Log:
Comments cleanup: fix spelling and grammar errors.

Patch by: Erik Hovland !erik#hovland at org*


Modified:
   trunk/libdvdread/src/dvd_input.c
   trunk/libdvdread/src/dvd_input.h

Modified: trunk/libdvdread/src/dvd_input.c
==============================================================================
--- trunk/libdvdread/src/dvd_input.c	(original)
+++ trunk/libdvdread/src/dvd_input.c	Mon Sep  1 23:04:33 2008
@@ -117,7 +117,7 @@ static int css_seek(dvd_input_t dev, int
 }
 
 /**
- * set the block for the begining of a new title (key).
+ * set the block for the beginning of a new title (key).
  */
 static int css_title(dvd_input_t dev, int block)
 {
@@ -208,7 +208,7 @@ static int file_seek(dvd_input_t dev, in
 }
 
 /**
- * set the block for the begining of a new title (key).
+ * set the block for the beginning of a new title (key).
  */
 static int file_title(dvd_input_t dev, int block)
 {
@@ -231,14 +231,14 @@ static int file_read(dvd_input_t dev, vo
     
     if(ret < 0) {
       /* One of the reads failed, too bad.  We won't even bother
-       * returning the reads that went ok, and as in the posix spec
-       * the file postition is left unspecified after a failure. */
+       * returning the reads that went OK, and as in the POSIX spec
+       * the file position is left unspecified after a failure. */
       return ret;
     }
     
     if(ret == 0) {
-      /* Nothing more to read.  Return the whole blocks, if any, that we got.
-	 and adjust the file possition back to the previous block boundary. */
+      /* Nothing more to read.  Return all of the whole blocks, if any.
+       * Adjust the file position back to the previous block boundary. */
       size_t bytes = (size_t)blocks * DVD_VIDEO_LB_LEN - len;
       off_t over_read = -(bytes % DVD_VIDEO_LB_LEN);
       /*off_t pos =*/ lseek(dev->fd, over_read, SEEK_CUR);

Modified: trunk/libdvdread/src/dvd_input.h
==============================================================================
--- trunk/libdvdread/src/dvd_input.h	(original)
+++ trunk/libdvdread/src/dvd_input.h	Mon Sep  1 23:04:33 2008
@@ -30,7 +30,8 @@
 typedef struct dvd_input_s *dvd_input_t;
 
 /**
- * Pointers which will be filled either the input methods functions.
+ * Function pointers that will be filled in by the input implementation.
+ * These functions provide the main API.
  */
 extern dvd_input_t (*dvdinput_open)  (const char *);
 extern int         (*dvdinput_close) (dvd_input_t);



More information about the DVDnav-discuss mailing list