Sfoglia il codice sorgente

Fixed CalculateAudioStreamWorkBufSize

Brick 1 anno fa
parent
commit
86b5f40b53
1 ha cambiato i file con 2 aggiunte e 2 eliminazioni
  1. 2 2
      src/audio/SDL_audiocvt.c

+ 2 - 2
src/audio/SDL_audiocvt.c

@@ -774,11 +774,11 @@ static Uint8 *EnsureStreamWorkBufferSize(SDL_AudioStream *stream, size_t newlen)
 
 static int CalculateAudioStreamWorkBufSize(const SDL_AudioStream *stream, int len)
 {
-    int workbuf_frames = len / stream->src_sample_frame_size;  /* start with requested sample frames */
+    int workbuf_frames = len / stream->dst_sample_frame_size;  /* start with requested sample frames */
     int workbuflen = len;
     int inputlen;
 
-    inputlen = workbuf_frames * stream->dst_sample_frame_size;
+    inputlen = workbuf_frames * stream->src_sample_frame_size;
     if (inputlen > workbuflen) {
         workbuflen = inputlen;
     }