diff options
Diffstat (limited to 'src/xine-engine/audio_decoder.c')
-rw-r--r-- | src/xine-engine/audio_decoder.c | 8 |
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; |