[DVDnav-discuss] r955 - in trunk: libdvdnav/src/dvdnav.h libdvdnav2/src/dvdnav.h
rathann
subversion at mplayerhq.hu
Sun Aug 19 23:25:04 CEST 2007
Author: rathann
Date: Sun Aug 19 23:25:04 2007
New Revision: 955
Log:
- fix compilation of C++ code using dvdnav.h (this is a reserved C++ keyword)
Modified:
trunk/libdvdnav/src/dvdnav.h
trunk/libdvdnav2/src/dvdnav.h
Modified: trunk/libdvdnav/src/dvdnav.h
==============================================================================
--- trunk/libdvdnav/src/dvdnav.h (original)
+++ trunk/libdvdnav/src/dvdnav.h Sun Aug 19 23:25:04 2007
@@ -360,7 +360,7 @@ dvdnav_status_t dvdnav_sector_search(dvd
returns the current stream time in PTS ticks as reported by the IFO structures
divide it by 90000 to get the current play time in seconds
*/
-int64_t dvdnav_get_current_time(dvdnav_t *this);
+int64_t dvdnav_get_current_time(dvdnav_t *self);
/*
* Stop playing the current position and start playback of the title
Modified: trunk/libdvdnav2/src/dvdnav.h
==============================================================================
--- trunk/libdvdnav2/src/dvdnav.h (original)
+++ trunk/libdvdnav2/src/dvdnav.h Sun Aug 19 23:25:04 2007
@@ -364,7 +364,7 @@ dvdnav_status_t dvdnav_sector_search(dvd
returns the current stream time in PTS ticks as reported by the IFO structures
divide it by 90000 to get the current play time in seconds
*/
-int64_t dvdnav_get_current_time(dvdnav_t *this);
+int64_t dvdnav_get_current_time(dvdnav_t *self);
/*
* Stop playing the current position and start playback of the title
More information about the DVDnav-discuss
mailing list