diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2014-05-30 00:01:45 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-05-30 00:01:45 +0200 |
commit | ea0931fb962f2436695606a8ef9a4811e4970e22 (patch) | |
tree | b7e21eae75f3345b7c0d71855e7e611f1eca4f54 /libavcodec/svq1enc.h | |
parent | cb8763bda7e5e59064193e6b29b0f806560f66d3 (diff) | |
parent | 65d5d5865845f057cc6530a8d0f34db952d9009c (diff) | |
download | ffmpeg-ea0931fb962f2436695606a8ef9a4811e4970e22.tar.gz |
Merge commit '65d5d5865845f057cc6530a8d0f34db952d9009c'
* commit '65d5d5865845f057cc6530a8d0f34db952d9009c':
dsputil: Move SVQ1 encoding specific bits into svq1enc
Conflicts:
libavcodec/x86/Makefile
Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/svq1enc.h')
-rw-r--r-- | libavcodec/svq1enc.h | 78 |
1 files changed, 78 insertions, 0 deletions
diff --git a/libavcodec/svq1enc.h b/libavcodec/svq1enc.h new file mode 100644 index 0000000000..5179ca560f --- /dev/null +++ b/libavcodec/svq1enc.h @@ -0,0 +1,78 @@ +/* + * SVQ1 encoder + * + * This file is part of FFmpeg. + * + * FFmpeg is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * FFmpeg is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with FFmpeg; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + */ + +#ifndef AVCODEC_SVQ1ENC_H +#define AVCODEC_SVQ1ENC_H + +#include <stdint.h> + +#include "libavutil/frame.h" +#include "avcodec.h" +#include "dsputil.h" +#include "get_bits.h" +#include "hpeldsp.h" +#include "mpegvideo.h" +#include "put_bits.h" + +typedef struct SVQ1EncContext { + /* FIXME: Needed for motion estimation, should not be used for anything + * else, the idea is to make the motion estimation eventually independent + * of MpegEncContext, so this will be removed then. */ + MpegEncContext m; + AVCodecContext *avctx; + DSPContext dsp; + HpelDSPContext hdsp; + AVFrame *current_picture; + AVFrame *last_picture; + PutBitContext pb; + GetBitContext gb; + + /* why ooh why this sick breadth first order, + * everything is slower and more complex */ + PutBitContext reorder_pb[6]; + + int frame_width; + int frame_height; + + /* Y plane block dimensions */ + int y_block_width; + int y_block_height; + + /* U & V plane (C planes) block dimensions */ + int c_block_width; + int c_block_height; + + uint16_t *mb_type; + uint32_t *dummy; + int16_t (*motion_val8[3])[2]; + int16_t (*motion_val16[3])[2]; + + int64_t rd_total; + + uint8_t *scratchbuf; + + int (*ssd_int8_vs_int16)(const int8_t *pix1, const int16_t *pix2, + int size); +} SVQ1EncContext; + +void ff_svq1enc_init_ppc(SVQ1EncContext *c); +void ff_svq1enc_init_x86(SVQ1EncContext *c); + +#endif /* AVCODEC_SVQ1ENC_H */ |