2006-09-10 17:02:42 +03:00
|
|
|
/*
|
|
|
|
* LZO 1x decompression
|
|
|
|
* copyright (c) 2006 Reimar Doeffinger
|
|
|
|
*
|
2006-10-07 18:30:46 +03:00
|
|
|
* This file is part of FFmpeg.
|
|
|
|
*
|
|
|
|
* FFmpeg is free software; you can redistribute it and/or
|
2006-09-10 17:02:42 +03:00
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
2006-10-07 18:30:46 +03:00
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
2006-09-10 17:02:42 +03:00
|
|
|
*
|
2006-10-07 18:30:46 +03:00
|
|
|
* FFmpeg is distributed in the hope that it will be useful,
|
2006-09-10 17:02:42 +03:00
|
|
|
* 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
|
2006-10-07 18:30:46 +03:00
|
|
|
* License along with FFmpeg; if not, write to the Free Software
|
2006-09-10 17:02:42 +03:00
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
*/
|
|
|
|
|
2008-08-31 10:39:47 +03:00
|
|
|
#ifndef AVUTIL_LZO_H
|
|
|
|
#define AVUTIL_LZO_H
|
2006-01-12 19:52:41 +02:00
|
|
|
|
2011-11-20 22:38:24 +03:00
|
|
|
/**
|
|
|
|
* @defgroup lavu_lzo LZO
|
|
|
|
* @ingroup lavu_crypto
|
|
|
|
*
|
|
|
|
* @{
|
|
|
|
*/
|
|
|
|
|
2008-08-17 22:15:33 +03:00
|
|
|
#include <stdint.h>
|
|
|
|
|
2011-07-01 16:32:21 +03:00
|
|
|
/** @name Error flags returned by av_lzo1x_decode
|
2012-10-18 20:15:43 +03:00
|
|
|
* @{ */
|
2011-10-30 20:27:33 +03:00
|
|
|
/// end of the input buffer reached before decoding finished
|
2012-10-18 20:15:43 +03:00
|
|
|
#define AV_LZO_INPUT_DEPLETED 1
|
2011-10-30 20:27:33 +03:00
|
|
|
/// decoded data did not fit into output buffer
|
2012-10-18 20:15:43 +03:00
|
|
|
#define AV_LZO_OUTPUT_FULL 2
|
2011-10-30 20:27:33 +03:00
|
|
|
/// a reference to previously decoded data was wrong
|
2009-02-02 22:16:00 +02:00
|
|
|
#define AV_LZO_INVALID_BACKPTR 4
|
2011-10-30 20:27:33 +03:00
|
|
|
/// a non-specific error in the compressed bitstream
|
2012-10-18 20:15:43 +03:00
|
|
|
#define AV_LZO_ERROR 8
|
2011-12-07 15:43:36 +03:00
|
|
|
/** @} */
|
2006-01-12 19:52:41 +02:00
|
|
|
|
2012-10-18 20:15:43 +03:00
|
|
|
#define AV_LZO_INPUT_PADDING 8
|
2009-02-02 22:16:00 +02:00
|
|
|
#define AV_LZO_OUTPUT_PADDING 12
|
2006-01-22 21:10:12 +02:00
|
|
|
|
2009-02-02 22:30:36 +02:00
|
|
|
/**
|
2011-06-23 23:41:54 +03:00
|
|
|
* @brief Decodes LZO 1x compressed data.
|
|
|
|
* @param out output buffer
|
|
|
|
* @param outlen size of output buffer, number of bytes left are returned here
|
|
|
|
* @param in input buffer
|
|
|
|
* @param inlen size of input buffer, number of bytes left are returned here
|
|
|
|
* @return 0 on success, otherwise a combination of the error flags above
|
2009-02-02 22:30:36 +02:00
|
|
|
*
|
|
|
|
* Make sure all buffers are appropriately padded, in must provide
|
|
|
|
* AV_LZO_INPUT_PADDING, out must provide AV_LZO_OUTPUT_PADDING additional bytes.
|
|
|
|
*/
|
2009-02-02 22:16:00 +02:00
|
|
|
int av_lzo1x_decode(void *out, int *outlen, const void *in, int *inlen);
|
2006-01-12 19:52:41 +02:00
|
|
|
|
2011-11-20 22:38:24 +03:00
|
|
|
/**
|
|
|
|
* @}
|
|
|
|
*/
|
|
|
|
|
2008-08-31 10:39:47 +03:00
|
|
|
#endif /* AVUTIL_LZO_H */
|