summaryrefslogtreecommitdiff
path: root/src/xine-engine/audio_decoder.c
diff options
context:
space:
mode:
authorGuenter Bartsch <guenter@users.sourceforge.net>2002-09-18 00:51:33 +0000
committerGuenter Bartsch <guenter@users.sourceforge.net>2002-09-18 00:51:33 +0000
commitdb4a9292eb386fe91bbb4059c1b172e45bd32ce7 (patch)
tree85a58e93c69fa06b6304bb936c77131b957d3c5f /src/xine-engine/audio_decoder.c
parent1ad10f5795d76ee8d66c642cc4165593ce6a9e39 (diff)
downloadxine-lib-db4a9292eb386fe91bbb4059c1b172e45bd32ce7.tar.gz
xine-lib-db4a9292eb386fe91bbb4059c1b172e45bd32ce7.tar.bz2
first steps towards implementing stream/meta info
CVS patchset: 2680 CVS date: 2002/09/18 00:51:33
Diffstat (limited to 'src/xine-engine/audio_decoder.c')
-rw-r--r--src/xine-engine/audio_decoder.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/xine-engine/audio_decoder.c b/src/xine-engine/audio_decoder.c
index cabd18b03..9ad8ddfdc 100644
--- a/src/xine-engine/audio_decoder.c
+++ b/src/xine-engine/audio_decoder.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: audio_decoder.c,v 1.83 2002/09/04 23:31:13 guenter Exp $
+ * $Id: audio_decoder.c,v 1.84 2002/09/18 00:51:34 guenter Exp $
*
*
* functions that implement audio decoding
@@ -247,9 +247,9 @@ void *audio_decoder_loop (void *this_gen) {
if (decoder) {
xine_event_t event;
- xine_log (this, XINE_LOG_FORMAT,
- "audio_decoder: using audio decoder plugin '%s'\n",
- decoder->get_identifier());
+
+ this->meta_info[XINE_META_INFO_AUDIOCODEC]
+ = strdup (decoder->get_identifier());
xine_report_codec( this, XINE_CODEC_AUDIO, 0, buf->type, 1);
this->cur_audio_decoder_plugin = decoder;