changeset 46:4f40782ab5fc src

Expose the dvd_stat_t struct. The commits that brought in the DVDFileStat() function from libdvdread 0.9.7 incorrectly made the stat struct opaque. This can't be done because the API does not use any allocation or deallocation code. So callers of DVDFileStat cannot declare stat structs. Since we are attempting to maintain the API compatibility w/ those releases of libdvdread, the struct has been brought into the header. Thanks again to Rathann for bringing this issue to the dvdnav list. And thanks to the original bug reportera(O. Rolland) to fedora.
author erik
date Mon, 07 Dec 2009 03:50:20 +0000
parents 3307493f20c5
children 9db0de5db7c8
files dvd_reader.c dvdread/dvd_reader.h
diffstat 2 files changed, 6 insertions(+), 8 deletions(-) [+]
line wrap: on
line diff
--- a/dvd_reader.c	Wed Sep 02 01:44:16 2009 +0000
+++ b/dvd_reader.c	Mon Dec 07 03:50:20 2009 +0000
@@ -111,12 +111,6 @@
   ssize_t filesize;
 };
 
-struct dvd_stat_s {
-  off_t size;          /**< Total size of file in bytes */
-  int nr_parts;        /**< Number of file parts */
-  off_t parts_size[9]; /**< Size of each part in bytes */
-};
-
 int UDFReadBlocksRaw( dvd_reader_t *device, uint32_t lb_number,
                       size_t block_count, unsigned char *data,
                       int encrypted );
--- a/dvdread/dvd_reader.h	Wed Sep 02 01:44:16 2009 +0000
+++ b/dvdread/dvd_reader.h	Mon Dec 07 03:50:20 2009 +0000
@@ -70,9 +70,13 @@
 typedef struct dvd_file_s dvd_file_t;
 
 /**
- * Opaque type that is used to provide statistics on a handle.
+ * Public type that is used to provide statistics on a handle.
  */
-typedef struct dvd_stat_s dvd_stat_t;
+typedef struct {
+  off_t size;          /**< Total size of file in bytes */
+  int nr_parts;        /**< Number of file parts */
+  off_t parts_size[9]; /**< Size of each part in bytes */
+} dvd_stat_t;
 
 /**
  * Opens a block device of a DVD-ROM file, or an image file, or a directory