From 9b57d8a926383dc556f982344805a7173f4bb4ef Mon Sep 17 00:00:00 2001 From: shatty Date: Sun, 25 Jan 2004 06:39:59 +0000 Subject: [PATCH] yay for speex git-svn-id: file:///srv/svn/repos/haiku/trunk/current@6269 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/add-ons/media/plugins/speex/speexCodecPlugin.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/add-ons/media/plugins/speex/speexCodecPlugin.cpp b/src/add-ons/media/plugins/speex/speexCodecPlugin.cpp index 53bd309602..f7e23e8e69 100644 --- a/src/add-ons/media/plugins/speex/speexCodecPlugin.cpp +++ b/src/add-ons/media/plugins/speex/speexCodecPlugin.cpp @@ -75,7 +75,7 @@ speex_decoded_media_format() /* - * VorbisDecoder + * SpeexDecoder */ @@ -115,7 +115,7 @@ status_t SpeexDecoder::Setup(media_format *inputFormat, const void *infoBuffer, int32 infoSize) { - TRACE("VorbisDecoder::Setup\n"); + TRACE("SpeexDecoder::Setup\n"); if (!format_is_compatible(speex_encoded_media_format(),*inputFormat)) { return B_MEDIA_BAD_FORMAT; } @@ -275,8 +275,8 @@ SpeexDecoder::Seek(uint32 seekTo, bigtime_t seekTime, bigtime_t *time) { TRACE("SpeexDecoder::Seek\n"); -// int ignore = 0; -// speex_decoder_ctl(fDecoderState, SPEEX_RESET_STATE, &ignore); + int ignore = 0; + speex_decoder_ctl(fDecoderState, SPEEX_RESET_STATE, &ignore); return B_OK; }