]> iEval git - io-compress-brotli.git/blobdiff - Brotli.xs
Break down the long call to BrotliDecoderDecompressStream
[io-compress-brotli.git] / Brotli.xs
index b7f33d6012844a79533460534f8c06c40c7506af..92b4809e9c3b836a433da88eba34f06a290a95ec 100644 (file)
--- a/Brotli.xs
+++ b/Brotli.xs
@@ -60,7 +60,12 @@ SV* BrotliDecoderDecompressStream(state, in)
     while(result == BROTLI_RESULT_NEEDS_MORE_OUTPUT) {
         next_out = buffer;
         available_out=BUFFER_SIZE;
-        result = BrotliDecoderDecompressStream((BrotliDecoderState*) SvIV(state), &available_in, (const uint8_t**) &next_in, &available_out, &next_out, &total_out);
+        result = BrotliDecoderDecompressStream( (BrotliDecoderState*) SvIV(state),
+                                                &available_in,
+                                                (const uint8_t**) &next_in,
+                                                &available_out,
+                                                &next_out,
+                                                &total_out );
         if(!result){
              croak("Error in BrotliDecoderDecompressStream");
         }
@@ -69,7 +74,7 @@ SV* BrotliDecoderDecompressStream(state, in)
   OUTPUT:
     RETVAL
 
-void BrotliSetCustomDictionary(state, dict)
+void BrotliDecoderSetCustomDictionary(state, dict)
     SV* state
     SV* dict
   PREINIT:
This page took 0.019517 seconds and 4 git commands to generate.