libavcodec/lzf.h
0c770761
 /*
  * lzf decompression algorithm
  * Copyright (c) 2015 Luca Barbato
  *
1964aeae
  * This file is part of FFmpeg.
0c770761
  *
1964aeae
  * FFmpeg is free software; you can redistribute it and/or
0c770761
  * 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.
  *
1964aeae
  * FFmpeg is distributed in the hope that it will be useful,
0c770761
  * 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
1964aeae
  * License along with FFmpeg; if not, write to the Free Software
0c770761
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  */
 
 #ifndef AVCODEC_LZF_H
 #define AVCODEC_LZF_H
 
 #include "bytestream.h"
 
 int ff_lzf_uncompress(GetByteContext *gb, uint8_t **buf, int64_t *size);
 
 #endif /* AVCODEC_LZF_H */