From 16611de7ce5071ebff85834355afb44ef69b76dd Mon Sep 17 00:00:00 2001 From: beveloper Date: Fri, 23 Jan 2004 16:26:55 +0000 Subject: [PATCH] spelling fix git-svn-id: file:///srv/svn/repos/haiku/trunk/current@6252 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- .../plugins/raw_decoder/RawDecoderPlugin.cpp | 20 +++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/src/add-ons/media/plugins/raw_decoder/RawDecoderPlugin.cpp b/src/add-ons/media/plugins/raw_decoder/RawDecoderPlugin.cpp index 04552eefe2..4c226703a7 100644 --- a/src/add-ons/media/plugins/raw_decoder/RawDecoderPlugin.cpp +++ b/src/add-ons/media/plugins/raw_decoder/RawDecoderPlugin.cpp @@ -209,7 +209,7 @@ RawDecoder::NegotiateAudioOutputFormat(media_format *ioDecodedFormat) fSwapInput = 0; break; default: - debugger("RawDecoder::NegotiateAudioOutputFormat unkown input format\n"); + debugger("RawDecoder::NegotiateAudioOutputFormat unknown input format\n"); break; } } @@ -233,7 +233,7 @@ RawDecoder::NegotiateAudioOutputFormat(media_format *ioDecodedFormat) fSwapOutput = 0; break; default: - debugger("RawDecoder::NegotiateAudioOutputFormat unkown output format\n"); + debugger("RawDecoder::NegotiateAudioOutputFormat unknown output format\n"); break; } } @@ -258,7 +258,7 @@ RawDecoder::NegotiateAudioOutputFormat(media_format *ioDecodedFormat) fConvert = &uint8_to_float32; break; default: - debugger("RawDecoder::NegotiateAudioOutputFormat unkown output format\n"); + debugger("RawDecoder::NegotiateAudioOutputFormat unknown output format\n"); break; } break; @@ -281,7 +281,7 @@ RawDecoder::NegotiateAudioOutputFormat(media_format *ioDecodedFormat) fConvert = &int8_to_float32; break; default: - debugger("RawDecoder::NegotiateAudioOutputFormat unkown output format\n"); + debugger("RawDecoder::NegotiateAudioOutputFormat unknown output format\n"); break; } break; @@ -304,7 +304,7 @@ RawDecoder::NegotiateAudioOutputFormat(media_format *ioDecodedFormat) fConvert = &int16_to_float32; break; default: - debugger("RawDecoder::NegotiateAudioOutputFormat unkown output format\n"); + debugger("RawDecoder::NegotiateAudioOutputFormat unknown output format\n"); break; } break; @@ -327,7 +327,7 @@ RawDecoder::NegotiateAudioOutputFormat(media_format *ioDecodedFormat) fConvert = &int24_to_float32; break; default: - debugger("RawDecoder::NegotiateAudioOutputFormat unkown output format\n"); + debugger("RawDecoder::NegotiateAudioOutputFormat unknown output format\n"); break; } break; @@ -350,7 +350,7 @@ RawDecoder::NegotiateAudioOutputFormat(media_format *ioDecodedFormat) fConvert = &int32_to_float32; break; default: - debugger("RawDecoder::NegotiateAudioOutputFormat unkown output format\n"); + debugger("RawDecoder::NegotiateAudioOutputFormat unknown output format\n"); break; } break; @@ -373,7 +373,7 @@ RawDecoder::NegotiateAudioOutputFormat(media_format *ioDecodedFormat) fConvert = &float32_to_float32; break; default: - debugger("RawDecoder::NegotiateAudioOutputFormat unkown output format\n"); + debugger("RawDecoder::NegotiateAudioOutputFormat unknown output format\n"); break; } break; @@ -396,13 +396,13 @@ RawDecoder::NegotiateAudioOutputFormat(media_format *ioDecodedFormat) fConvert = &float64_to_float32; break; default: - debugger("RawDecoder::NegotiateAudioOutputFormat unkown output format\n"); + debugger("RawDecoder::NegotiateAudioOutputFormat unknown output format\n"); break; } break; default: - debugger("RawDecoder::NegotiateAudioOutputFormat unkown input format\n"); + debugger("RawDecoder::NegotiateAudioOutputFormat unknown input format\n"); break; }