From ac4bd497167d735c775ef8cbfd44340340f3cd7d Mon Sep 17 00:00:00 2001 From: beveloper Date: Mon, 19 Jan 2004 21:33:31 +0000 Subject: [PATCH] added missing newlines git-svn-id: file:///srv/svn/repos/haiku/trunk/current@6152 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/add-ons/media/plugins/vorbis/vorbisCodecPlugin.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/add-ons/media/plugins/vorbis/vorbisCodecPlugin.cpp b/src/add-ons/media/plugins/vorbis/vorbisCodecPlugin.cpp index daf35d54a3..168681bb04 100644 --- a/src/add-ons/media/plugins/vorbis/vorbisCodecPlugin.cpp +++ b/src/add-ons/media/plugins/vorbis/vorbisCodecPlugin.cpp @@ -49,7 +49,7 @@ vorbisDecoder::Setup(media_format *inputFormat, { if ((inputFormat->type != B_MEDIA_UNKNOWN_TYPE) && (inputFormat->type != B_MEDIA_ENCODED_AUDIO)) { - TRACE("vorbisDecoder::Setup not called with audio/unknown stream: not vorbis"); + TRACE("vorbisDecoder::Setup not called with audio/unknown stream: not vorbis\n"); return B_ERROR; } if (inputFormat->MetaDataSize() == sizeof(ogg_packet)) { @@ -58,7 +58,7 @@ vorbisDecoder::Setup(media_format *inputFormat, ogg_packet * packet = (ogg_packet*)inputFormat->MetaData(); // parse header packet if (vorbis_synthesis_headerin(&fInfo,&fComment,packet) != 0) { - TRACE("vorbisDecoder::Setup: vorbis_synthesis_headerin failed: not vorbis header"); + TRACE("vorbisDecoder::Setup: vorbis_synthesis_headerin failed: not vorbis header\n"); return B_ERROR; } fHeaderPacketParsed = true; @@ -84,7 +84,7 @@ vorbisDecoder::InitializeInput(media_format *ioEncodedFormat) } // parse header packet if (vorbis_synthesis_headerin(&fInfo,&fComment,packet) != 0) { - TRACE("vorbisDecoder::Setup: vorbis_synthesis_headerin failed: not vorbis header"); + TRACE("vorbisDecoder::Setup: vorbis_synthesis_headerin failed: not vorbis header\n"); return B_ERROR; } fHeaderPacketParsed = true; @@ -97,7 +97,7 @@ vorbisDecoder::InitializeInput(media_format *ioEncodedFormat) } // parse comment packet if (vorbis_synthesis_headerin(&fInfo,&fComment,packet) != 0) { - TRACE("vorbiseDecoder::Setup: vorbis_synthesis_headerin failed: not vorbis comment"); + TRACE("vorbiseDecoder::Setup: vorbis_synthesis_headerin failed: not vorbis comment\n"); return B_ERROR; } fCommentPacketParsed = true; @@ -110,7 +110,7 @@ vorbisDecoder::InitializeInput(media_format *ioEncodedFormat) } // parse codebook packet if (vorbis_synthesis_headerin(&fInfo,&fComment,packet) != 0) { - TRACE("vorbiseDecoder::Setup: vorbis_synthesis_headerin failed: not vorbis codebook"); + TRACE("vorbiseDecoder::Setup: vorbis_synthesis_headerin failed: not vorbis codebook\n"); return B_ERROR; } // initialize decoder