diff options
| author | Michael Roitzsch <mroi@users.sourceforge.net> | 2004-03-16 11:43:38 +0000 |
|---|---|---|
| committer | Michael Roitzsch <mroi@users.sourceforge.net> | 2004-03-16 11:43:38 +0000 |
| commit | 50a26e7dabcb36c002f8527c8364c67439adbb11 (patch) | |
| tree | d79ee798b6681d0fc8e8a3c93c845d34cfdb92e4 /src/input/libdvdnav/settings.c | |
| parent | b323267b7a8f5592c66158376a1ce25e2bdfefd5 (diff) | |
| download | xine-lib-50a26e7dabcb36c002f8527c8364c67439adbb11.tar.gz xine-lib-50a26e7dabcb36c002f8527c8364c67439adbb11.tar.bz2 | |
sync to latest libdvdnav
* fixes a menu problem (German RC2 of "Anatomie", chapter menu)
* addresses some compilation problems on Windows
(Could someone try cygwin, mingw builds, please? It should work with the
standalone libdvdnav, but who knows if the integration breaks anything...)
* turns some abort()s into assert(0)s, where we really can try to continue
CVS patchset: 6269
CVS date: 2004/03/16 11:43:38
Diffstat (limited to 'src/input/libdvdnav/settings.c')
| -rw-r--r-- | src/input/libdvdnav/settings.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/input/libdvdnav/settings.c b/src/input/libdvdnav/settings.c index d8901821e..62fcc7933 100644 --- a/src/input/libdvdnav/settings.c +++ b/src/input/libdvdnav/settings.c @@ -17,7 +17,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA * - * $Id: settings.c,v 1.6 2003/05/11 13:44:05 jcdutton Exp $ + * $Id: settings.c,v 1.7 2004/03/16 11:43:38 mroi Exp $ * */ @@ -29,7 +29,7 @@ /* Characteristics/setting API calls */ -dvdnav_status_t dvdnav_get_region_mask(dvdnav_t *this, int *region) { +dvdnav_status_t dvdnav_get_region_mask(dvdnav_t *this, int32_t *region) { if(!this || !region) { printerr("Passed a NULL this pointer."); return DVDNAV_STATUS_ERR; @@ -39,7 +39,7 @@ dvdnav_status_t dvdnav_get_region_mask(dvdnav_t *this, int *region) { return DVDNAV_STATUS_OK; } -dvdnav_status_t dvdnav_set_region_mask(dvdnav_t *this, int mask) { +dvdnav_status_t dvdnav_set_region_mask(dvdnav_t *this, int32_t mask) { if(!this) { printerr("Passed a NULL this pointer."); return DVDNAV_STATUS_ERR; @@ -51,7 +51,7 @@ dvdnav_status_t dvdnav_set_region_mask(dvdnav_t *this, int mask) { return DVDNAV_STATUS_OK; } -dvdnav_status_t dvdnav_set_readahead_flag(dvdnav_t *this, int use_readahead) { +dvdnav_status_t dvdnav_set_readahead_flag(dvdnav_t *this, int32_t use_readahead) { if(!this) { printerr("Passed a NULL this pointer."); return DVDNAV_STATUS_ERR; @@ -61,7 +61,7 @@ dvdnav_status_t dvdnav_set_readahead_flag(dvdnav_t *this, int use_readahead) { return DVDNAV_STATUS_OK; } -dvdnav_status_t dvdnav_get_readahead_flag(dvdnav_t *this, int *flag) { +dvdnav_status_t dvdnav_get_readahead_flag(dvdnav_t *this, int32_t *flag) { if(!this || !flag) { printerr("Passed a NULL this pointer."); return DVDNAV_STATUS_ERR; @@ -100,7 +100,7 @@ dvdnav_status_t dvdnav_spu_language_select(dvdnav_t *this, char *code) { return set_language_register(this, code, 18); } -dvdnav_status_t dvdnav_set_PGC_positioning_flag(dvdnav_t *this, int pgc) { +dvdnav_status_t dvdnav_set_PGC_positioning_flag(dvdnav_t *this, int32_t pgc) { if(!this) { printerr("Passed a NULL this pointer."); return DVDNAV_STATUS_ERR; @@ -110,7 +110,7 @@ dvdnav_status_t dvdnav_set_PGC_positioning_flag(dvdnav_t *this, int pgc) { return DVDNAV_STATUS_OK; } -dvdnav_status_t dvdnav_get_PGC_positioning_flag(dvdnav_t *this, int *flag) { +dvdnav_status_t dvdnav_get_PGC_positioning_flag(dvdnav_t *this, int32_t *flag) { if(!this || !flag) { printerr("Passed a NULL this pointer."); return DVDNAV_STATUS_ERR; |
