]> git.sesse.net Git - ffmpeg/blob - libavcodec/huffyuv.h
dashenc: Simplify code by using a local variable
[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 "bswapdsp.h"
36 #include "get_bits.h"
37 #include "huffyuvdsp.h"
38 #include "huffyuvencdsp.h"
39 #include "put_bits.h"
40
41 #define VLC_BITS 11
42
43 #if HAVE_BIGENDIAN
44 #define B 3
45 #define G 2
46 #define R 1
47 #define A 0
48 #else
49 #define B 0
50 #define G 1
51 #define R 2
52 #define A 3
53 #endif
54
55 typedef enum Predictor {
56     LEFT = 0,
57     PLANE,
58     MEDIAN,
59 } Predictor;
60
61 typedef struct HYuvContext {
62     AVCodecContext *avctx;
63     Predictor predictor;
64     GetBitContext gb;
65     PutBitContext pb;
66     int interlaced;
67     int decorrelate;
68     int bitstream_bpp;
69     int version;
70     int yuy2;                               //use yuy2 instead of 422P
71     int bgr32;                              //use bgr32 instead of bgr24
72     int width, height;
73     int flags;
74     int context;
75     int picture_number;
76     int last_slice_end;
77     uint8_t *temp[3];
78     uint64_t stats[3][256];
79     uint8_t len[3][256];
80     uint32_t bits[3][256];
81     uint32_t pix_bgr_map[1<<VLC_BITS];
82     VLC vlc[6];                             //Y,U,V,YY,YU,YV
83     uint8_t *bitstream_buffer;
84     unsigned int bitstream_buffer_size;
85     BswapDSPContext bdsp;
86     HuffYUVDSPContext hdsp;
87     HuffYUVEncDSPContext hencdsp;
88 } HYuvContext;
89
90 void ff_huffyuv_common_init(AVCodecContext *s);
91 void ff_huffyuv_common_end(HYuvContext *s);
92 int  ff_huffyuv_alloc_temp(HYuvContext *s);
93 int ff_huffyuv_generate_bits_table(uint32_t *dst, const uint8_t *len_table);
94
95 #endif /* AVCODEC_HUFFYUV_H */