]> git.sesse.net Git - ffmpeg/blob - libavcodec/huffyuv.h
14b4abcdfa433005313945e4607a67a2126c2242
[ffmpeg] / libavcodec / huffyuv.h
1 /*
2  * Copyright (c) 2002-2003 Michael Niedermayer <michaelni@gmx.at>
3  *
4  * see http://www.pcisys.net/~melanson/codecs/huffyuv.txt for a description of
5  * the algorithm used
6  *
7  * This file is part of Libav.
8  *
9  * Libav is free software; you can redistribute it and/or
10  * modify it under the terms of the GNU Lesser General Public
11  * License as published by the Free Software Foundation; either
12  * version 2.1 of the License, or (at your option) any later version.
13  *
14  * Libav is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
17  * Lesser General Public License for more details.
18  *
19  * You should have received a copy of the GNU Lesser General Public
20  * License along with Libav; if not, write to the Free Software
21  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
22  */
23
24 /**
25  * @file
26  * huffyuv codec for libavcodec.
27  */
28
29 #ifndef AVCODEC_HUFFYUV_H
30 #define AVCODEC_HUFFYUV_H
31
32 #include <stdint.h>
33
34 #include "avcodec.h"
35 #include "dsputil.h"
36 #include "get_bits.h"
37 #include "huffyuvdsp.h"
38 #include "put_bits.h"
39
40 #define VLC_BITS 11
41
42 #if HAVE_BIGENDIAN
43 #define B 3
44 #define G 2
45 #define R 1
46 #define A 0
47 #else
48 #define B 0
49 #define G 1
50 #define R 2
51 #define A 3
52 #endif
53
54 typedef enum Predictor {
55     LEFT = 0,
56     PLANE,
57     MEDIAN,
58 } Predictor;
59
60 typedef struct HYuvContext {
61     AVCodecContext *avctx;
62     Predictor predictor;
63     GetBitContext gb;
64     PutBitContext pb;
65     int interlaced;
66     int decorrelate;
67     int bitstream_bpp;
68     int version;
69     int yuy2;                               //use yuy2 instead of 422P
70     int bgr32;                              //use bgr32 instead of bgr24
71     int width, height;
72     int flags;
73     int context;
74     int picture_number;
75     int last_slice_end;
76     uint8_t *temp[3];
77     uint64_t stats[3][256];
78     uint8_t len[3][256];
79     uint32_t bits[3][256];
80     uint32_t pix_bgr_map[1<<VLC_BITS];
81     VLC vlc[6];                             //Y,U,V,YY,YU,YV
82     uint8_t *bitstream_buffer;
83     unsigned int bitstream_buffer_size;
84     DSPContext dsp;
85     HuffYUVDSPContext hdsp;
86 } HYuvContext;
87
88 void ff_huffyuv_common_init(AVCodecContext *s);
89 void ff_huffyuv_common_end(HYuvContext *s);
90 int  ff_huffyuv_alloc_temp(HYuvContext *s);
91 int ff_huffyuv_generate_bits_table(uint32_t *dst, const uint8_t *len_table);
92
93 #endif /* AVCODEC_HUFFYUV_H */