comparison huffman.h @ 5830:1d83e9c34641 libavcodec

Add FFMPEG_ prefix to all multiple inclusion guards.
author diego
date Wed, 17 Oct 2007 09:37:46 +0000
parents 6ac956b341f2
children aa110f457c5a
comparison
equal deleted inserted replaced
5829:74db916a3715 5830:1d83e9c34641
18 * You should have received a copy of the GNU Lesser General Public 18 * You should have received a copy of the GNU Lesser General Public
19 * License along with FFmpeg; if not, write to the Free Software 19 * License along with FFmpeg; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA 20 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
21 */ 21 */
22 22
23 #ifndef AVCODEC_HUFFMAN_H 23 #ifndef FFMPEG_HUFFMAN_H
24 #define AVCODEC_HUFFMAN_H 24 #define FFMPEG_HUFFMAN_H
25 25
26 #include "avcodec.h" 26 #include "avcodec.h"
27 27
28 typedef struct { 28 typedef struct {
29 int16_t sym; 29 int16_t sym;
33 33
34 typedef int (*huff_cmp_t)(const void *va, const void *vb); 34 typedef int (*huff_cmp_t)(const void *va, const void *vb);
35 int ff_huff_build_tree(AVCodecContext *avctx, VLC *vlc, int nb_codes, 35 int ff_huff_build_tree(AVCodecContext *avctx, VLC *vlc, int nb_codes,
36 Node *nodes, huff_cmp_t cmp, int hnode_first); 36 Node *nodes, huff_cmp_t cmp, int hnode_first);
37 37
38 #endif /* AVCODEC_HUFFMAN_H */ 38 #endif /* FFMPEG_HUFFMAN_H */