]> git.sesse.net Git - ffmpeg/blob - libavcodec/huffyuv.h
Move add_hfyu_left_prediction_int16 to losslessviddsp
[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 FFmpeg.
8  *
9  * FFmpeg 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  * FFmpeg 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 FFmpeg; 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 "put_bits.h"
38 #include "lossless_videodsp.h"
39
40 #define VLC_BITS 11
41
42 #define MAX_BITS 14
43 #define MAX_N (1<<MAX_BITS)
44
45 #if HAVE_BIGENDIAN
46 #define B 3
47 #define G 2
48 #define R 1
49 #define A 0
50 #else
51 #define B 0
52 #define G 1
53 #define R 2
54 #define A 3
55 #endif
56
57 typedef enum Predictor {
58     LEFT = 0,
59     PLANE,
60     MEDIAN,
61 } Predictor;
62
63 typedef struct HYuvContext {
64     AVCodecContext *avctx;
65     Predictor predictor;
66     GetBitContext gb;
67     PutBitContext pb;
68     int interlaced;
69     int decorrelate;
70     int bitstream_bpp;
71     int version;
72     int yuy2;                               //use yuy2 instead of 422P
73     int bgr32;                              //use bgr32 instead of bgr24
74     int bps;
75     int n;                                  // 1<<bps
76     int alpha;
77     int chroma;
78     int yuv;
79     int chroma_h_shift;
80     int chroma_v_shift;
81     int width, height;
82     int flags;
83     int context;
84     int picture_number;
85     int last_slice_end;
86     uint8_t *temp[3];
87     uint16_t *temp16[3];                    ///< identical to temp but 16bit type
88     uint64_t stats[4][MAX_N];
89     uint8_t len[4][MAX_N];
90     uint32_t bits[4][MAX_N];
91     uint32_t pix_bgr_map[1<<VLC_BITS];
92     VLC vlc[8];                             //Y,U,V,A,YY,YU,YV,AA
93     uint8_t *bitstream_buffer;
94     unsigned int bitstream_buffer_size;
95     DSPContext dsp;
96     LLVidDSPContext llviddsp;
97 } HYuvContext;
98
99 void ff_huffyuv_common_init(AVCodecContext *s);
100 void ff_huffyuv_common_end(HYuvContext *s);
101 int  ff_huffyuv_alloc_temp(HYuvContext *s);
102 int ff_huffyuv_generate_bits_table(uint32_t *dst, const uint8_t *len_table, int n);
103
104 #endif /* AVCODEC_HUFFYUV_H */