]> iEval git - io-compress-brotli.git/blobdiff - lib/IO/Uncompress/Brotli.pm
Add all contributors to the POD
[io-compress-brotli.git] / lib / IO / Uncompress / Brotli.pm
index 2f37d8fb758f37f1d2202b60f2f610d30df9e6d5..3b111f8c2b05cc26be4895d26a2c992413f0c114 100644 (file)
@@ -13,28 +13,6 @@ our $VERSION = '0.001001';
 require XSLoader;
 XSLoader::load('IO::Compress::Brotli', $VERSION);
 
-sub create {
-       my ($class) = @_;
-       my $state = BrotliDecoderCreateInstance();
-       bless \$state, $class
-}
-
-sub DESTROY {
-       my ($self) = @_;
-       BrotliDecoderDestroyInstance($$self)
-}
-
-sub decompress {
-       my ($self, $data) = @_;
-       BrotliDecoderDecompressStream($$self, $data)
-}
-
-# Untested, probably not working
-sub set_dictionary {
-       my ($self, $dict) = @_;
-       BrotliSetCustomDictionary($$self, $dict)
-}
-
 1;
 __END__
 
@@ -115,6 +93,19 @@ Brotli source code: L<https://github.com/google/brotli/>
 
 Marius Gavrilescu, E<lt>marius@ieval.roE<gt>
 
+The encoder bindings, modernisation of the decoder bindings and a
+clean up of the overall project were contributed by:
+
+=over
+
+=item Quim Rovira, E<lt>quim@rovira.catE<gt>
+
+=item Ævar Arnfjörð Bjarmason, E<lt>avarab@gmail.comE<gt>
+
+=item Marcell Szathmári
+
+=item Mattia Barbon, E<lt>mattia@barbon.orgE<gt>
+
 =head1 COPYRIGHT AND LICENSE
 
 Copyright (C) 2015 by Marius Gavrilescu
This page took 0.022944 seconds and 4 git commands to generate.