summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThibaut Mattern <tmattern@users.sourceforge.net>2003-11-08 22:39:32 +0000
committerThibaut Mattern <tmattern@users.sourceforge.net>2003-11-08 22:39:32 +0000
commite52791d5e42b63961d582964a223797e5722e180 (patch)
tree67371b302270df5e441c65e6e19a42c007f2af35
parent2bf87b737f8eac6c7f77737759e5e43fabfccf30 (diff)
downloadxine-lib-e52791d5e42b63961d582964a223797e5722e180.tar.gz
xine-lib-e52791d5e42b63961d582964a223797e5722e180.tar.bz2
Use info helper functions.
CVS patchset: 5711 CVS date: 2003/11/08 22:39:32
-rw-r--r--src/input/input_dvd.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/input/input_dvd.c b/src/input/input_dvd.c
index 1a0fbc9a8..9498c9f5a 100644
--- a/src/input/input_dvd.c
+++ b/src/input/input_dvd.c
@@ -18,7 +18,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: input_dvd.c,v 1.169 2003/10/26 10:48:24 mroi Exp $
+ * $Id: input_dvd.c,v 1.170 2003/11/08 22:39:32 tmattern Exp $
*
*/
@@ -1527,7 +1527,7 @@ static input_plugin_t *dvd_class_get_instance (input_class_t *class_gen, xine_st
this->input_plugin.input_class = class_gen;
this->stream = stream;
- this->stream->stream_info[XINE_STREAM_INFO_VIDEO_HAS_STILL] = 1;
+ xine_set_stream_info(this->stream, XINE_STREAM_INFO_VIDEO_HAS_STILL, 1);
this->dvdnav = NULL;
this->opened = 0;
@@ -1727,6 +1727,9 @@ static void *init_class (xine_t *xine, void *data) {
/*
* $Log: input_dvd.c,v $
+ * Revision 1.170 2003/11/08 22:39:32 tmattern
+ * Use info helper functions.
+ *
* Revision 1.169 2003/10/26 10:48:24 mroi
* fix some prominent compiler warnings
*