FFmpeg
|
#include "config_components.h"
#include <stdint.h>
#include "libavutil/emms.h"
#include "libavutil/internal.h"
#include "libavutil/intmath.h"
#include "libavutil/mathematics.h"
#include "libavutil/mem.h"
#include "libavutil/mem_internal.h"
#include "libavutil/opt.h"
#include "libavutil/thread.h"
#include "avcodec.h"
#include "encode.h"
#include "idctdsp.h"
#include "mpeg12codecs.h"
#include "mpeg12data.h"
#include "mpeg12enc.h"
#include "mpegvideo.h"
#include "mpegvideodata.h"
#include "mpegvideoenc.h"
#include "h261enc.h"
#include "h263.h"
#include "h263data.h"
#include "h263enc.h"
#include "mjpegenc_common.h"
#include "mathops.h"
#include "mpegutils.h"
#include "mjpegenc.h"
#include "speedhqenc.h"
#include "msmpeg4enc.h"
#include "pixblockdsp.h"
#include "qpeldsp.h"
#include "faandct.h"
#include "aandcttab.h"
#include "flvenc.h"
#include "mpeg4video.h"
#include "mpeg4videodata.h"
#include "mpeg4videoenc.h"
#include "internal.h"
#include "bytestream.h"
#include "wmv2enc.h"
#include "rv10enc.h"
#include "packet_internal.h"
#include "refstruct.h"
#include <limits.h>
#include "sp5x.h"
#include "mpv_reconstruct_mb_template.c"
Go to the source code of this file.
Macros | |
#define | QUANT_BIAS_SHIFT 8 |
#define | QMAT_SHIFT_MMX 16 |
#define | QMAT_SHIFT 21 |
#define | COPY(a) dst->a= src->a |
#define | ALLOCZ_ARRAYS(p, mult, numb) ((p) = av_calloc(numb, mult * sizeof(*(p)))) |
#define | IS_ENCODER 1 |
#define | INTERLACED_DCT(s) |
#define | MERGE(field) dst->field += src->field; src->field=0 |
Functions | |
static int | encode_picture (MpegEncContext *s, const AVPacket *pkt) |
static int | dct_quantize_refine (MpegEncContext *s, int16_t *block, int16_t *weight, int16_t *orig, int n, int qscale) |
static int | sse_mb (MpegEncContext *s) |
static void | denoise_dct_c (MpegEncContext *s, int16_t *block) |
static int | dct_quantize_c (MpegEncContext *s, int16_t *block, int n, int qscale, int *overflow) |
static int | dct_quantize_trellis_c (MpegEncContext *s, int16_t *block, int n, int qscale, int *overflow) |
void | ff_convert_matrix (MpegEncContext *s, int(*qmat)[64], uint16_t(*qmat16)[2][64], const uint16_t *quant_matrix, int bias, int qmin, int qmax, int intra) |
static void | update_qscale (MpegEncContext *s) |
void | ff_write_quant_matrix (PutBitContext *pb, uint16_t *matrix) |
static void | init_qscale_tab (MpegEncContext *s) |
init s->cur_pic.qscale_table from s->lambda_table More... | |
static void | update_duplicate_context_after_me (MpegEncContext *dst, const MpegEncContext *src) |
static void | mpv_encode_init_static (void) |
static void | mpv_encode_defaults (MpegEncContext *s) |
Set the given MpegEncContext to defaults for encoding. More... | |
av_cold void | ff_dct_encode_init (MpegEncContext *s) |
static av_cold int | me_cmp_init (MpegEncContext *s, AVCodecContext *avctx) |
av_cold int | ff_mpv_encode_init (AVCodecContext *avctx) |
av_cold int | ff_mpv_encode_end (AVCodecContext *avctx) |
static void | mpv_reconstruct_mb (MpegEncContext *s, int16_t block[12][64]) |
static int | get_sae (const uint8_t *src, int ref, int stride) |
static int | get_intra_count (MpegEncContext *s, const uint8_t *src, const uint8_t *ref, int stride) |
static int | prepare_picture (MpegEncContext *s, AVFrame *f, const AVFrame *props_frame) |
Allocates new buffers for an AVFrame and copies the properties from another AVFrame. More... | |
static int | load_input_picture (MpegEncContext *s, const AVFrame *pic_arg) |
static int | skip_check (MpegEncContext *s, const MPVPicture *p, const MPVPicture *ref) |
static int | encode_frame (AVCodecContext *c, const AVFrame *frame, AVPacket *pkt) |
static int | estimate_best_b_count (MpegEncContext *s) |
static int | set_bframe_chain_length (MpegEncContext *s) |
Determines whether an input picture is discarded or not and if not determines the length of the next chain of B frames and moves these pictures (including the P frame) into reordered_input_picture. More... | |
static int | select_input_picture (MpegEncContext *s) |
static void | frame_end (MpegEncContext *s) |
static void | update_noise_reduction (MpegEncContext *s) |
static void | frame_start (MpegEncContext *s) |
int | ff_mpv_encode_picture (AVCodecContext *avctx, AVPacket *pkt, const AVFrame *pic_arg, int *got_packet) |
static void | dct_single_coeff_elimination (MpegEncContext *s, int n, int threshold) |
static void | clip_coeffs (MpegEncContext *s, int16_t *block, int last_index) |
static void | get_visual_weight (int16_t *weight, const uint8_t *ptr, int stride) |
static av_always_inline void | encode_mb_internal (MpegEncContext *s, int motion_x, int motion_y, int mb_block_height, int mb_block_width, int mb_block_count, int chroma_x_shift, int chroma_y_shift, int chroma_format) |
static void | encode_mb (MpegEncContext *s, int motion_x, int motion_y) |
static void | copy_context_before_encode (MpegEncContext *d, const MpegEncContext *s) |
static void | copy_context_after_encode (MpegEncContext *d, const MpegEncContext *s) |
static void | encode_mb_hq (MpegEncContext *s, MpegEncContext *backup, MpegEncContext *best, PutBitContext pb[2], PutBitContext pb2[2], PutBitContext tex_pb[2], int *dmin, int *next_block, int motion_x, int motion_y) |
static int | sse (MpegEncContext *s, const uint8_t *src1, const uint8_t *src2, int w, int h, int stride) |
static int | pre_estimate_motion_thread (AVCodecContext *c, void *arg) |
static int | estimate_motion_thread (AVCodecContext *c, void *arg) |
static int | mb_var_thread (AVCodecContext *c, void *arg) |
static void | write_slice_end (MpegEncContext *s) |
static void | write_mb_info (MpegEncContext *s) |
static void | update_mb_info (MpegEncContext *s, int startcode) |
int | ff_mpv_reallocate_putbitbuffer (MpegEncContext *s, size_t threshold, size_t size_increase) |
static int | encode_thread (AVCodecContext *c, void *arg) |
static void | merge_context_after_me (MpegEncContext *dst, MpegEncContext *src) |
static void | merge_context_after_encode (MpegEncContext *dst, MpegEncContext *src) |
static int | estimate_qp (MpegEncContext *s, int dry_run) |
static void | set_frame_distances (MpegEncContext *s) |
static void | build_basis (uint8_t *perm) |
void | ff_block_permute (int16_t *block, const uint8_t *permutation, const uint8_t *scantable, int last) |
Permute an 8x8 block according to permutation. More... | |
Variables | |
static uint8_t | default_mv_penalty [MAX_FCODE+1][MAX_DMV *2+1] |
static uint8_t | default_fcode_tab [MAX_MV *2+1] |
static const AVOption | mpv_generic_options [] |
const AVClass | ff_mpv_enc_class |
static int16_t | basis [64][64] |
The simplest mpeg encoder (well, it was the simplest!).
Definition in file mpegvideo_enc.c.
#define QUANT_BIAS_SHIFT 8 |
Definition at line 82 of file mpegvideo_enc.c.
#define QMAT_SHIFT_MMX 16 |
Definition at line 84 of file mpegvideo_enc.c.
#define QMAT_SHIFT 21 |
Definition at line 85 of file mpegvideo_enc.c.
#define IS_ENCODER 1 |
Definition at line 1085 of file mpegvideo_enc.c.
#define INTERLACED_DCT | ( | s | ) |
Definition at line 3501 of file mpegvideo_enc.c.
|
static |
Definition at line 3585 of file mpegvideo_enc.c.
Referenced by ff_mpv_encode_picture().
|
static |
Definition at line 4231 of file mpegvideo_enc.c.
Referenced by encode_mb_internal().
|
static |
Definition at line 2674 of file mpegvideo_enc.c.
Referenced by encode_mb_hq().
|
static |
Definition at line 3874 of file mpegvideo_enc.c.
Referenced by ff_dct_encode_init().
|
static |
Definition at line 4583 of file mpegvideo_enc.c.
Referenced by encode_mb_internal(), and ff_dct_encode_init().
|
static |
Definition at line 3898 of file mpegvideo_enc.c.
Referenced by ff_dct_encode_init().
void ff_convert_matrix | ( | MpegEncContext * | s, |
int(*) | qmat[64], | ||
uint16_t(*) | qmat16[2][64], | ||
const uint16_t * | quant_matrix, | ||
int | bias, | ||
int | qmin, | ||
int | qmax, | ||
int | intra | ||
) |
Definition at line 112 of file mpegvideo_enc.c.
Referenced by dnxhd_init_qmat(), encode_picture(), and ff_mpv_encode_init().
|
inlinestatic |
Definition at line 196 of file mpegvideo_enc.c.
Referenced by encode_picture(), and estimate_qp().
void ff_write_quant_matrix | ( | PutBitContext * | pb, |
uint16_t * | matrix | ||
) |
Definition at line 224 of file mpegvideo_enc.c.
Referenced by mpeg4_encode_vol_header().
|
static |
init s->cur_pic.qscale_table from s->lambda_table
Definition at line 240 of file mpegvideo_enc.c.
Referenced by estimate_qp().
|
static |
Definition at line 253 of file mpegvideo_enc.c.
Referenced by encode_picture().
|
static |
Definition at line 269 of file mpegvideo_enc.c.
Referenced by mpv_encode_defaults().
|
static |
Set the given MpegEncContext to defaults for encoding.
the changed fields will not depend upon the prior state of the MpegEncContext.
Definition at line 279 of file mpegvideo_enc.c.
Referenced by ff_mpv_encode_init().
av_cold void ff_dct_encode_init | ( | MpegEncContext * | s | ) |
Definition at line 294 of file mpegvideo_enc.c.
Referenced by dnxhd_encode_init(), and ff_mpv_encode_init().
|
static |
Definition at line 309 of file mpegvideo_enc.c.
Referenced by ff_mpv_encode_init().
av_cold int ff_mpv_encode_init | ( | AVCodecContext * | avctx | ) |
Definition at line 351 of file mpegvideo_enc.c.
Referenced by encode_init(), and wmv2_encode_init().
av_cold int ff_mpv_encode_end | ( | AVCodecContext * | avctx | ) |
Definition at line 1028 of file mpegvideo_enc.c.
Referenced by mjpeg_encode_close().
|
static |
Definition at line 1088 of file mpegvideo_enc.c.
Referenced by encode_mb_hq(), and encode_thread().
|
static |
Definition at line 1105 of file mpegvideo_enc.c.
Referenced by get_intra_count().
|
static |
Definition at line 1119 of file mpegvideo_enc.c.
Referenced by set_bframe_chain_length().
|
static |
Allocates new buffers for an AVFrame and copies the properties from another AVFrame.
Definition at line 1146 of file mpegvideo_enc.c.
Referenced by load_input_picture(), and select_input_picture().
|
static |
Definition at line 1178 of file mpegvideo_enc.c.
Referenced by ff_mpv_encode_picture().
|
static |
Definition at line 1318 of file mpegvideo_enc.c.
Referenced by set_bframe_chain_length().
|
static |
Definition at line 1359 of file mpegvideo_enc.c.
Referenced by estimate_best_b_count().
|
static |
Definition at line 1380 of file mpegvideo_enc.c.
Referenced by set_bframe_chain_length().
|
static |
Determines whether an input picture is discarded or not and if not determines the length of the next chain of B frames and moves these pictures (including the P frame) into reordered_input_picture.
input_picture[0] is always NULL when exiting this function, even on error; reordered_input_picture[0] is always NULL when exiting this function on error.
Definition at line 1532 of file mpegvideo_enc.c.
Referenced by select_input_picture().
|
static |
Definition at line 1662 of file mpegvideo_enc.c.
Referenced by ff_mpv_encode_picture().
|
static |
Definition at line 1721 of file mpegvideo_enc.c.
Referenced by ff_mpv_encode_picture().
|
static |
Definition at line 1757 of file mpegvideo_enc.c.
Referenced by frame_start().
|
static |
Definition at line 1778 of file mpegvideo_enc.c.
Referenced by av_timecode_init(), cavs_decode_frame(), decode_dds1(), decode_dsw1(), decode_tsw1(), ff_mpv_encode_picture(), get_duration(), and scale_internal().
int ff_mpv_encode_picture | ( | AVCodecContext * | avctx, |
AVPacket * | pkt, | ||
const AVFrame * | pic_arg, | ||
int * | got_packet | ||
) |
Definition at line 1793 of file mpegvideo_enc.c.
|
inlinestatic |
Definition at line 2022 of file mpegvideo_enc.c.
Referenced by encode_mb_internal().
|
inlinestatic |
Definition at line 2078 of file mpegvideo_enc.c.
Referenced by encode_mb_internal().
|
static |
Definition at line 2112 of file mpegvideo_enc.c.
Referenced by encode_mb_internal().
|
static |
Definition at line 2136 of file mpegvideo_enc.c.
Referenced by encode_mb().
|
static |
Definition at line 2527 of file mpegvideo_enc.c.
Referenced by encode_mb_hq(), and encode_thread().
|
inlinestatic |
Definition at line 2537 of file mpegvideo_enc.c.
Referenced by encode_mb_hq(), and encode_thread().
|
inlinestatic |
Definition at line 2564 of file mpegvideo_enc.c.
Referenced by encode_mb_hq(), and encode_thread().
|
static |
Definition at line 2602 of file mpegvideo_enc.c.
Referenced by encode_thread().
|
static |
Definition at line 2653 of file mpegvideo_enc.c.
Referenced by block_sse(), calc_squared_error(), calc_squared_error_and_weight(), encode_thread(), ff_ac3dsp_set_downmix_x86(), ff_libwebp_get_frame(), ff_set_cmp(), ff_showcqt_init_x86(), ff_vp9dsp_init_16bpp_x86(), ff_vp9dsp_init_x86(), main(), run_psnr(), sse_16width_msa(), sse_4width_msa(), sse_8width_msa(), sse_mb(), and X264_frame().
|
static |
Definition at line 2699 of file mpegvideo_enc.c.
Referenced by encode_picture().
|
static |
Definition at line 2718 of file mpegvideo_enc.c.
Referenced by encode_picture().
|
static |
Definition at line 2743 of file mpegvideo_enc.c.
Referenced by encode_picture().
|
static |
Definition at line 2766 of file mpegvideo_enc.c.
Referenced by encode_thread().
|
static |
Definition at line 2786 of file mpegvideo_enc.c.
Referenced by update_mb_info().
|
static |
Definition at line 2806 of file mpegvideo_enc.c.
Referenced by encode_thread().
int ff_mpv_reallocate_putbitbuffer | ( | MpegEncContext * | s, |
size_t | threshold, | ||
size_t | size_increase | ||
) |
Definition at line 2829 of file mpegvideo_enc.c.
Referenced by encode_thread(), and ff_mjpeg_encode_stuffing().
|
static |
Definition at line 2863 of file mpegvideo_enc.c.
Referenced by encode_picture().
|
static |
Definition at line 3502 of file mpegvideo_enc.c.
Referenced by encode_picture().
|
static |
Definition at line 3508 of file mpegvideo_enc.c.
Referenced by encode_picture().
|
static |
Definition at line 3535 of file mpegvideo_enc.c.
Referenced by encode_picture().
|
static |
Definition at line 3571 of file mpegvideo_enc.c.
Referenced by encode_picture().
|
static |
Definition at line 4212 of file mpegvideo_enc.c.
Referenced by dct_quantize_refine().
void ff_block_permute | ( | int16_t * | block, |
const uint8_t * | permutation, | ||
const uint8_t * | scantable, | ||
int | last | ||
) |
Permute an 8x8 block according to permutation.
block | the block which will be permuted according to the given permutation vector |
permutation | the permutation vector |
last | the last non zero coefficient in scantable order, used to speed the permutation up |
scantable | the used scantable, this is only used to speed the permutation up, the block is not (inverse) permutated to scantable order! |
Definition at line 4558 of file mpegvideo_enc.c.
Referenced by dct_quantize_c(), dnxhd_10bit_dct_quantize(), and dnxhd_10bit_dct_quantize_444().
Definition at line 96 of file mpegvideo_enc.c.
Referenced by mpv_encode_defaults().
|
static |
Definition at line 97 of file mpegvideo_enc.c.
Referenced by mpv_encode_defaults(), and mpv_encode_init_static().
|
static |
Definition at line 99 of file mpegvideo_enc.c.
const AVClass ff_mpv_enc_class |
Definition at line 105 of file mpegvideo_enc.c.
|
static |
Definition at line 4210 of file mpegvideo_enc.c.
Referenced by add_8x8basis_c(), add_8x8basis_TMPL(), build_basis(), dct_quantize_refine(), ff_tx_gen_split_radix_parity_revtab(), parity_revtab_generator(), try_8x8basis_c(), and try_8x8basis_TMPL().