diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2015-06-22 20:46:35 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2015-06-22 20:47:21 +0200 |
commit | 9e5b0f070b690ce5b217970d4eb9cdf7ef6696e5 (patch) | |
tree | 04dbd3b2d012706ee13f97d86ded80d827db5d58 /libavcodec/snappy.h | |
parent | f6276842f38d0511a2d2ab4bb7f5b47b195c8de1 (diff) | |
parent | 2ecfd451649c7a08cb633635df98e59f7c6e2140 (diff) | |
download | ffmpeg-9e5b0f070b690ce5b217970d4eb9cdf7ef6696e5.tar.gz |
Merge commit '2ecfd451649c7a08cb633635df98e59f7c6e2140'
* commit '2ecfd451649c7a08cb633635df98e59f7c6e2140':
Implement Snappy decompression
Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/snappy.h')
-rw-r--r-- | libavcodec/snappy.h | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/libavcodec/snappy.h b/libavcodec/snappy.h new file mode 100644 index 0000000000..b283183cb6 --- /dev/null +++ b/libavcodec/snappy.h @@ -0,0 +1,51 @@ +/* + * Snappy module + * Copyright (c) Luca Barbato + * + * This file is part of FFmpeg. + * + * FFmpeg is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * FFmpeg is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with FFmpeg; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + */ + +/** + * @file + * Snappy decompression + * + * Snappy is a compression/decompression algorithm that does not aim for + * maximum compression, but rather for very high speeds and reasonable + * compression. + * + * http://en.wikipedia.org/wiki/Snappy_%28software%29 + */ + +#ifndef AVCODEC_SNAPPY_H +#define AVCODEC_SNAPPY_H + +#include <stdint.h> + +#include "bytestream.h" + +/** + * Decompress an input buffer using Snappy algorithm. Caller is + * responsible of freeing the memory allocated in buf. + * + * @param gb input GetByteContext. + * @param buf output buffer pointer. + * @param size output buffer size. + * @return 0 if success, AVERROR otherwise. + */ +int ff_snappy_uncompress(GetByteContext *gb, uint8_t **buf, int64_t *size); + +#endif /* AVCODEC_SNAPPY_H */ |