comparison dvdnav.c @ 89:0fbef4901e2c src

Add a comment so I can tell which version of the CVS a user is using. Also add a FIXME to remind me to fix the Chapter number display.
author jcdutton
date Tue, 03 Sep 2002 00:41:48 +0000
parents ba1121a07120
children 82af243658bd
comparison
equal deleted inserted replaced
88:929f732a0135 89:0fbef4901e2c
177 dvdnav_status_t dvdnav_open(dvdnav_t** dest, char *path) { 177 dvdnav_status_t dvdnav_open(dvdnav_t** dest, char *path) {
178 dvdnav_t *this; 178 dvdnav_t *this;
179 struct timeval time; 179 struct timeval time;
180 180
181 /* Create a new structure */ 181 /* Create a new structure */
182 fprintf(MSG_OUT, "libdvdnav: Using dvdnav version from http://dvd.sf.net\n"); 182 fprintf(MSG_OUT, "libdvdnav: Using dvdnav version (devel-ref:jcd1) from http://dvd.sf.net\n");
183 183
184 /* FIXME: We malloc() here, but if an error occurs inside dvdnav_open(), 184 /* FIXME: We malloc() here, but if an error occurs inside dvdnav_open(),
185 * we return but never free() it. 185 * we return but never free() it.
186 */ 186 */
187 (*dest) = NULL; 187 (*dest) = NULL;
996 return this->position_next.still; 996 return this->position_next.still;
997 } 997 }
998 998
999 /* 999 /*
1000 * $Log$ 1000 * $Log$
1001 * Revision 1.34 2002/09/03 00:41:48 jcdutton
1002 * Add a comment so I can tell which version of the CVS a user is using.
1003 * Also add a FIXME to remind me to fix the Chapter number display.
1004 *
1001 * Revision 1.33 2002/08/31 11:05:27 jcdutton 1005 * Revision 1.33 2002/08/31 11:05:27 jcdutton
1002 * Properly seed the DVD VM Instruction rand(). 1006 * Properly seed the DVD VM Instruction rand().
1003 * 1007 *
1004 * Revision 1.32 2002/08/31 02:50:27 jcdutton 1008 * Revision 1.32 2002/08/31 02:50:27 jcdutton
1005 * Improve some debug messages. 1009 * Improve some debug messages.