Libav
svq1enc.h
Go to the documentation of this file.
1 /*
2  * SVQ1 encoder
3  *
4  * This file is part of Libav.
5  *
6  * Libav is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2.1 of the License, or (at your option) any later version.
10  *
11  * Libav is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with Libav; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19  */
20 
21 #ifndef AVCODEC_SVQ1ENC_H
22 #define AVCODEC_SVQ1ENC_H
23 
24 #include <stdint.h>
25 
26 #include "libavutil/frame.h"
27 #include "avcodec.h"
28 #include "get_bits.h"
29 #include "hpeldsp.h"
30 #include "me_cmp.h"
31 #include "mpegvideo.h"
32 #include "put_bits.h"
33 
34 typedef struct SVQ1EncContext {
35  /* FIXME: Needed for motion estimation, should not be used for anything
36  * else, the idea is to make the motion estimation eventually independent
37  * of MpegEncContext, so this will be removed then. */
46 
47  /* why ooh why this sick breadth first order,
48  * everything is slower and more complex */
50 
53 
54  /* Y plane block dimensions */
57 
58  /* U & V plane (C planes) block dimensions */
61 
62  uint16_t *mb_type;
63  uint32_t *dummy;
64  int16_t (*motion_val8[3])[2];
65  int16_t (*motion_val16[3])[2];
66 
67  int64_t rd_total;
68 
70 
71  int (*ssd_int8_vs_int16)(const int8_t *pix1, const int16_t *pix2,
72  int size);
74 
77 
78 #endif /* AVCODEC_SVQ1ENC_H */
int size
This structure describes decoded (raw) audio or video data.
Definition: frame.h:135
uint16_t * mb_type
Definition: svq1enc.h:62
int frame_height
Definition: svq1enc.h:52
MpegEncContext m
Definition: svq1enc.h:38
AVFrame * current_picture
Definition: svq1enc.h:42
int c_block_height
Definition: svq1enc.h:60
mpegvideo header.
int y_block_height
Definition: svq1enc.h:56
uint8_t
int frame_width
Definition: svq1enc.h:51
GetBitContext gb
Definition: svq1enc.h:45
bitstream reader API header.
int(* ssd_int8_vs_int16)(const int8_t *pix1, const int16_t *pix2, int size)
Definition: svq1enc.h:71
int c_block_width
Definition: svq1enc.h:59
int64_t rd_total
Definition: svq1enc.h:67
uint8_t * scratchbuf
Definition: svq1enc.h:69
int y_block_width
Definition: svq1enc.h:55
int16_t(*[3] motion_val16)[2]
Definition: svq1enc.h:65
reference-counted frame API
PutBitContext reorder_pb[6]
Definition: svq1enc.h:49
Half-pel DSP context.
Definition: hpeldsp.h:45
MECmpContext mecc
Definition: svq1enc.h:40
void ff_svq1enc_init_ppc(SVQ1EncContext *c)
PutBitContext pb
Definition: svq1enc.h:44
int16_t(*[3] motion_val8)[2]
Definition: svq1enc.h:64
Half-pel DSP functions.
Libavcodec external API header.
main external API structure.
Definition: avcodec.h:1044
void ff_svq1enc_init_x86(SVQ1EncContext *c)
Definition: svq1enc.c:64
AVFrame * last_picture
Definition: svq1enc.h:43
MpegEncContext.
Definition: mpegvideo.h:204
AVCodecContext * avctx
Definition: svq1enc.h:39
uint32_t * dummy
Definition: svq1enc.h:63
HpelDSPContext hdsp
Definition: svq1enc.h:41
bitstream writer API