Mercurial > libdvdread4.hg
changeset 18:2a219d444297 src
Comments cleanup: fix spelling and grammar errors.
Patch by: Erik Hovland !erik#hovland at org*
author | rathann |
---|---|
date | Mon, 01 Sep 2008 21:04:33 +0000 |
parents | 5aeaa695eadb |
children | 7f7e87bd7536 |
files | dvd_input.c dvd_input.h |
diffstat | 2 files changed, 8 insertions(+), 7 deletions(-) [+] |
line wrap: on
line diff
--- a/dvd_input.c Sat Aug 30 20:10:36 2008 +0000 +++ b/dvd_input.c Mon Sep 01 21:04:33 2008 +0000 @@ -117,7 +117,7 @@ } /** - * 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 @@ } /** - * 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 @@ 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);
--- a/dvd_input.h Sat Aug 30 20:10:36 2008 +0000 +++ b/dvd_input.h Mon Sep 01 21:04:33 2008 +0000 @@ -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);