FFmpeg
svq1enc.h
Go to the documentation of this file.
1 /*
2  * SVQ1 encoder
3  *
4  * This file is part of FFmpeg.
5  *
6  * FFmpeg 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  * FFmpeg 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 FFmpeg; 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 "libavutil/mem_internal.h"
28 
29 #include "avcodec.h"
30 #include "hpeldsp.h"
31 #include "me_cmp.h"
32 #include "mpegvideo.h"
33 #include "put_bits.h"
34 
35 typedef struct SVQ1EncContext {
36  /* FIXME: Needed for motion estimation, should not be used for anything
37  * else, the idea is to make the motion estimation eventually independent
38  * of MpegEncContext, so this will be removed then. */
46 
47  /* Some compression statistics */
49  int quality;
50 
51  /* why ooh why this sick breadth first order,
52  * everything is slower and more complex */
54 
57 
58  /* Y plane block dimensions */
61 
62  /* U & V plane (C planes) block dimensions */
65 
66  DECLARE_ALIGNED(16, int16_t, encoded_block_levels)[6][7][256];
67 
68  uint16_t *mb_type;
69  uint32_t *dummy;
70  int16_t (*motion_val8[3])[2];
71  int16_t (*motion_val16[3])[2];
72 
73  int64_t rd_total;
74 
75  uint8_t *scratchbuf;
76 
78 
79  int (*ssd_int8_vs_int16)(const int8_t *pix1, const int16_t *pix2,
80  intptr_t size);
82 
85 
86 #endif /* AVCODEC_SVQ1ENC_H */
mem_internal.h
SVQ1EncContext::motion_est
int motion_est
Definition: svq1enc.h:77
AVPictureType
AVPictureType
Definition: avutil.h:272
SVQ1EncContext
Definition: svq1enc.h:35
AVFrame
This structure describes decoded (raw) audio or video data.
Definition: frame.h:325
SVQ1EncContext::frame_width
int frame_width
Definition: svq1enc.h:55
SVQ1EncContext::pict_type
enum AVPictureType pict_type
Definition: svq1enc.h:48
mpegvideo.h
SVQ1EncContext::encoded_block_levels
int16_t encoded_block_levels[6][7][256]
Definition: svq1enc.h:66
SVQ1EncContext::c_block_width
int c_block_width
Definition: svq1enc.h:63
SVQ1EncContext::last_picture
AVFrame * last_picture
Definition: svq1enc.h:44
SVQ1EncContext::y_block_height
int y_block_height
Definition: svq1enc.h:60
SVQ1EncContext::frame_height
int frame_height
Definition: svq1enc.h:56
SVQ1EncContext::m
MpegEncContext m
Definition: svq1enc.h:39
PutBitContext
Definition: put_bits.h:50
SVQ1EncContext::ssd_int8_vs_int16
int(* ssd_int8_vs_int16)(const int8_t *pix1, const int16_t *pix2, intptr_t size)
Definition: svq1enc.h:79
MECmpContext
Definition: me_cmp.h:55
SVQ1EncContext::current_picture
AVFrame * current_picture
Definition: svq1enc.h:43
SVQ1EncContext::c_block_height
int c_block_height
Definition: svq1enc.h:64
c
Undefined Behavior In the C some operations are like signed integer dereferencing freed accessing outside allocated Undefined Behavior must not occur in a C it is not safe even if the output of undefined operations is unused The unsafety may seem nit picking but Optimizing compilers have in fact optimized code on the assumption that no undefined Behavior occurs Optimizing code based on wrong assumptions can and has in some cases lead to effects beyond the output of computations The signed integer overflow problem in speed critical code Code which is highly optimized and works with signed integers sometimes has the problem that often the output of the computation does not c
Definition: undefined.txt:32
SVQ1EncContext::rd_total
int64_t rd_total
Definition: svq1enc.h:73
HpelDSPContext
Half-pel DSP context.
Definition: hpeldsp.h:45
SVQ1EncContext::dummy
uint32_t * dummy
Definition: svq1enc.h:69
SVQ1EncContext::quality
int quality
Definition: svq1enc.h:49
size
int size
Definition: twinvq_data.h:10344
SVQ1EncContext::reorder_pb
PutBitContext reorder_pb[6]
Definition: svq1enc.h:53
ff_svq1enc_init_ppc
void ff_svq1enc_init_ppc(SVQ1EncContext *c)
Definition: svq1enc_altivec.c:74
SVQ1EncContext::mb_type
uint16_t * mb_type
Definition: svq1enc.h:68
frame.h
SVQ1EncContext::avctx
AVCodecContext * avctx
Definition: svq1enc.h:40
DECLARE_ALIGNED
#define DECLARE_ALIGNED(n, t, v)
Definition: mem.h:116
ff_svq1enc_init_x86
void ff_svq1enc_init_x86(SVQ1EncContext *c)
Definition: svq1enc_init.c:30
SVQ1EncContext::mecc
MECmpContext mecc
Definition: svq1enc.h:41
SVQ1EncContext::motion_val8
int16_t(*[3] motion_val8)[2]
Definition: svq1enc.h:70
SVQ1EncContext::hdsp
HpelDSPContext hdsp
Definition: svq1enc.h:42
avcodec.h
SVQ1EncContext::y_block_width
int y_block_width
Definition: svq1enc.h:59
me_cmp.h
SVQ1EncContext::motion_val16
int16_t(*[3] motion_val16)[2]
Definition: svq1enc.h:71
AVCodecContext
main external API structure.
Definition: avcodec.h:398
SVQ1EncContext::scratchbuf
uint8_t * scratchbuf
Definition: svq1enc.h:75
hpeldsp.h
int
int
Definition: ffmpeg_filter.c:156
put_bits.h
MpegEncContext
MpegEncContext.
Definition: mpegvideo.h:62
SVQ1EncContext::pb
PutBitContext pb
Definition: svq1enc.h:45