瀏覽代碼

Fixed coding style on a function signature.

Ryan C. Gordon 9 年之前
父節點
當前提交
98cc9d10d3
共有 1 個文件被更改,包括 7 次插入6 次删除
  1. 7 6
      src/audio/SDL_audiocvt.c

+ 7 - 6
src/audio/SDL_audiocvt.c

@@ -823,12 +823,13 @@ SDL_CleanupAudioStreamResampler(SDL_AudioStream *stream)
     SDL_free(stream->resampler_state);
 }
 
-SDL_AudioStream *SDL_NewAudioStream(const SDL_AudioFormat src_format,
-                                    const Uint8 src_channels,
-                                    const int src_rate,
-                                    const SDL_AudioFormat dst_format,
-                                    const Uint8 dst_channels,
-                                    const int dst_rate)
+SDL_AudioStream *
+SDL_NewAudioStream(const SDL_AudioFormat src_format,
+                   const Uint8 src_channels,
+                   const int src_rate,
+                   const SDL_AudioFormat dst_format,
+                   const Uint8 dst_channels,
+                   const int dst_rate)
 {
     const int packetlen = 4096;  /* !!! FIXME: good enough for now. */
     Uint8 pre_resample_channels;