diff options
author | Thibaut Mattern <tmattern@users.sourceforge.net> | 2003-10-27 23:23:29 +0000 |
---|---|---|
committer | Thibaut Mattern <tmattern@users.sourceforge.net> | 2003-10-27 23:23:29 +0000 |
commit | 0b76e73f92bdac7ddcac493c736fe594ed4cffd5 (patch) | |
tree | d4e66b111ab76e53b9eb5dec837d69ed14e3e093 /src/demuxers/demux_wc3movie.c | |
parent | 82d1557e51e3d361a1d420c51feace0314b86da8 (diff) | |
download | xine-lib-0b76e73f92bdac7ddcac493c736fe594ed4cffd5.tar.gz xine-lib-0b76e73f92bdac7ddcac493c736fe594ed4cffd5.tar.bz2 |
Use info_helper functions
CVS patchset: 5622
CVS date: 2003/10/27 23:23:29
Diffstat (limited to 'src/demuxers/demux_wc3movie.c')
-rw-r--r-- | src/demuxers/demux_wc3movie.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/demuxers/demux_wc3movie.c b/src/demuxers/demux_wc3movie.c index 7d316b911..0a3abf0c1 100644 --- a/src/demuxers/demux_wc3movie.c +++ b/src/demuxers/demux_wc3movie.c @@ -24,7 +24,7 @@ * For more information on the MVE file format, visit: * http://www.pcisys.net/~melanson/codecs/ * - * $Id: demux_wc3movie.c,v 1.41 2003/10/23 05:18:59 tmmm Exp $ + * $Id: demux_wc3movie.c,v 1.42 2003/10/27 23:23:29 tmattern Exp $ */ #ifdef HAVE_CONFIG_H @@ -506,7 +506,7 @@ static int open_mve_file(demux_mve_t *this) { this->data_size = this->input->get_length(this->input) - this->data_start; this->video_pts = 0; - this->stream->meta_info[XINE_META_INFO_TITLE] = title; + xine_set_meta_info(this->stream, XINE_META_INFO_TITLE, title); return 1; } |