summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMike Melanson <mike@multimedia.cx>2003-01-18 14:57:50 +0000
committerMike Melanson <mike@multimedia.cx>2003-01-18 14:57:50 +0000
commit7124089b067caa2528a6446a0afdeeab88317563 (patch)
tree079751326b596e1f610915ecf78fe6af8ea706ef /src
parent6ed583a7ea7978150e2c02f24bfff53ab063c195 (diff)
downloadxine-lib-7124089b067caa2528a6446a0afdeeab88317563.tar.gz
xine-lib-7124089b067caa2528a6446a0afdeeab88317563.tar.bz2
always fill in title during send_headers()
CVS patchset: 3952 CVS date: 2003/01/18 14:57:50
Diffstat (limited to 'src')
-rw-r--r--src/demuxers/demux_nsf.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/demuxers/demux_nsf.c b/src/demuxers/demux_nsf.c
index c65060739..703e71489 100644
--- a/src/demuxers/demux_nsf.c
+++ b/src/demuxers/demux_nsf.c
@@ -28,7 +28,7 @@
* For more information regarding the NSF format, visit:
* http://www.tripoint.org/kevtris/nes/nsfspec.txt
*
- * $Id: demux_nsf.c,v 1.7 2003/01/17 02:53:51 tmmm Exp $
+ * $Id: demux_nsf.c,v 1.8 2003/01/18 14:57:50 tmmm Exp $
*/
#ifdef HAVE_CONFIG_H
@@ -219,7 +219,7 @@ static void demux_nsf_send_headers(demux_plugin_t *this_gen) {
this->stream->stream_info[XINE_STREAM_INFO_AUDIO_BITS] =
NSF_BITS;
- /* fill in title during send_chunk */
+ this->stream->meta_info[XINE_META_INFO_TITLE] = strdup(this->title);
this->stream->meta_info[XINE_META_INFO_ARTIST] = strdup(this->artist);
sprintf(copyright, "(C) %s", this->copyright);
this->stream->meta_info[XINE_META_INFO_COMMENT] = strdup(copyright);