diff options
author | Guenter Bartsch <guenter@users.sourceforge.net> | 2002-09-13 18:25:22 +0000 |
---|---|---|
committer | Guenter Bartsch <guenter@users.sourceforge.net> | 2002-09-13 18:25:22 +0000 |
commit | b5a4b5b7c50ef17e948c21077e6b693b5581b244 (patch) | |
tree | e7b0ca700136dc62cc53d30ba1a6be2923010041 /src/xine-engine/xine.c | |
parent | 2e4d006f2c2418351da08843ed560ec271b69693 (diff) | |
download | xine-lib-b5a4b5b7c50ef17e948c21077e6b693b5581b244.tar.gz xine-lib-b5a4b5b7c50ef17e948c21077e6b693b5581b244.tar.bz2 |
introducing meta information and some audio controls - but nothing is really implemented yet, so please move on, nothing to see here...
CVS patchset: 2660
CVS date: 2002/09/13 18:25:22
Diffstat (limited to 'src/xine-engine/xine.c')
-rw-r--r-- | src/xine-engine/xine.c | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/src/xine-engine/xine.c b/src/xine-engine/xine.c index ea58bfc7a..bc873030a 100644 --- a/src/xine-engine/xine.c +++ b/src/xine-engine/xine.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: xine.c,v 1.156 2002/09/11 17:41:08 guenter Exp $ + * $Id: xine.c,v 1.157 2002/09/13 18:25:23 guenter Exp $ * * top-level xine functions * @@ -415,6 +415,16 @@ int xine_open_internal (xine_t *this, const char *mrl) { if (this->status == XINE_STATUS_STOP ) { plugin_node_t *node; + int i; + + /* + * reset metainfo + */ + + for (i=0; i<XINE_STREAM_INFO_MAX; i++) { + this->stream_info[i] = 0; + this->meta_info [i] = NULL; + } /* * find input plugin |