FFmpeg
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
utvideo.h
Go to the documentation of this file.
1 /*
2  * Common Ut Video header
3  * Copyright (c) 2011 Konstantin Shishkov
4  *
5  * This file is part of FFmpeg.
6  *
7  * FFmpeg is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Lesser General Public
9  * License as published by the Free Software Foundation; either
10  * version 2.1 of the License, or (at your option) any later version.
11  *
12  * FFmpeg is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15  * Lesser General Public License for more details.
16  *
17  * You should have received a copy of the GNU Lesser General Public
18  * License along with FFmpeg; if not, write to the Free Software
19  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20  */
21 
22 #ifndef AVCODEC_UTVIDEO_H
23 #define AVCODEC_UTVIDEO_H
24 
25 /**
26  * @file
27  * Common Ut Video header
28  */
29 
30 #include "libavutil/common.h"
31 #include "avcodec.h"
32 #include "bswapdsp.h"
33 #include "utvideodsp.h"
34 #include "lossless_videodsp.h"
35 #include "lossless_videoencdsp.h"
36 
37 enum {
38  PRED_NONE = 0,
42 };
43 
44 enum {
45  COMP_NONE = 0,
47 };
48 
49 /*
50  * "Original format" markers.
51  * Based on values gotten from the official VFW encoder.
52  * They are not used during decoding, but they do have
53  * an informative role on seeing what was input
54  * to the encoder.
55  */
56 enum {
57  UTVIDEO_RGB = MKTAG(0x00, 0x00, 0x01, 0x18),
58  UTVIDEO_RGBA = MKTAG(0x00, 0x00, 0x02, 0x18),
59  UTVIDEO_420 = MKTAG('Y', 'V', '1', '2'),
60  UTVIDEO_422 = MKTAG('Y', 'U', 'Y', '2'),
61  UTVIDEO_444 = MKTAG('Y', 'V', '2', '4'),
62 };
63 
64 /* Mapping of libavcodec prediction modes to Ut Video's */
65 extern const int ff_ut_pred_order[5];
66 
67 typedef struct UtvideoContext {
68  const AVClass *class;
74 
76  int planes;
77  int slices;
81  int pro;
82 
83  ptrdiff_t slice_stride;
87 
88 typedef struct HuffEntry {
89  uint16_t sym;
90  uint8_t len;
91  uint32_t code;
92 } HuffEntry;
93 
94 /* Compare huffman tree nodes */
95 int ff_ut_huff_cmp_len(const void *a, const void *b);
96 int ff_ut10_huff_cmp_len(const void *a, const void *b);
97 
98 #endif /* AVCODEC_UTVIDEO_H */
int ff_ut10_huff_cmp_len(const void *a, const void *b)
Definition: utvideo.c:43
uint32_t flags
Definition: utvideo.h:75
int slice_bits_size
Definition: utvideo.h:85
const char * b
Definition: vf_curves.c:113
LLVidEncDSPContext llvidencdsp
Definition: utvideo.h:73
int interlaced
Definition: utvideo.h:79
uint8_t
uint32_t frame_info
Definition: utvideo.h:75
uint32_t code
Definition: magicyuv.c:50
BswapDSPContext bdsp
Definition: utvideo.h:71
AVCodecContext * avctx
Definition: utvideo.h:69
uint32_t frame_info_size
Definition: utvideo.h:75
int compression
Definition: utvideo.h:78
ptrdiff_t slice_stride
Definition: utvideo.h:83
int frame_pred
Definition: utvideo.h:80
uint8_t len
Definition: magicyuv.c:49
int ff_ut_huff_cmp_len(const void *a, const void *b)
Definition: utvideo.c:37
Libavcodec external API header.
main external API structure.
Definition: avcodec.h:1761
const int ff_ut_pred_order[5]
Definition: utvideo.c:30
Describe the class of an AVClass context structure.
Definition: log.h:67
uint8_t * slice_bits
Definition: utvideo.h:84
LLVidDSPContext llviddsp
Definition: utvideo.h:72
common internal and external API header
uint16_t sym
Definition: magicyuv.c:48
UTVideoDSPContext utdsp
Definition: utvideo.h:70
Used to minimize the amount of memory used in order to optimize cache performance.
Definition: snow_dwt.h:42
#define MKTAG(a, b, c, d)
Definition: common.h:342