mirror of https://git.ffmpeg.org/ffmpeg.git
avcodec/snowenc: Support setting the iterative dia size separately
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
21bfeec27f
commit
4bd99f715d
|
@ -1357,6 +1357,15 @@ allows to store non-rgb pix_fmts.
|
||||||
|
|
||||||
@end table
|
@end table
|
||||||
|
|
||||||
|
@section snow
|
||||||
|
|
||||||
|
@subsection Options
|
||||||
|
|
||||||
|
@table @option
|
||||||
|
@item iterative_dia_size
|
||||||
|
dia size for the iterative motion estimation
|
||||||
|
@end table
|
||||||
|
|
||||||
@section libtheora
|
@section libtheora
|
||||||
|
|
||||||
libtheora Theora encoder wrapper.
|
libtheora Theora encoder wrapper.
|
||||||
|
|
|
@ -177,6 +177,7 @@ typedef struct SnowContext{
|
||||||
int no_bitstream;
|
int no_bitstream;
|
||||||
int intra_penalty;
|
int intra_penalty;
|
||||||
int motion_est;
|
int motion_est;
|
||||||
|
int iterative_dia_size;
|
||||||
|
|
||||||
MpegEncContext m; // needed for motion estimation, should not be used for anything else, the idea is to eventually make the motion estimation independent of MpegEncContext, so this will be removed then (FIXME/XXX)
|
MpegEncContext m; // needed for motion estimation, should not be used for anything else, the idea is to eventually make the motion estimation independent of MpegEncContext, so this will be removed then (FIXME/XXX)
|
||||||
|
|
||||||
|
|
|
@ -1120,8 +1120,9 @@ static void iterative_me(SnowContext *s){
|
||||||
do{
|
do{
|
||||||
int newx = block->mx;
|
int newx = block->mx;
|
||||||
int newy = block->my;
|
int newy = block->my;
|
||||||
|
int dia_size = s->iterative_dia_size ? s->iterative_dia_size : FFMAX(s->avctx->dia_size, 1);
|
||||||
dia_change=0;
|
dia_change=0;
|
||||||
for(i=0; i<FFMAX(s->avctx->dia_size, 1); i++){
|
for(i=0; i < dia_size; i++){
|
||||||
for(j=0; j<i; j++){
|
for(j=0; j<i; j++){
|
||||||
dia_change |= check_block_inter(s, mb_x, mb_y, newx+4*(i-j), newy+(4*j), obmc_edged, &best_rd);
|
dia_change |= check_block_inter(s, mb_x, mb_y, newx+4*(i-j), newy+(4*j), obmc_edged, &best_rd);
|
||||||
dia_change |= check_block_inter(s, mb_x, mb_y, newx-4*(i-j), newy-(4*j), obmc_edged, &best_rd);
|
dia_change |= check_block_inter(s, mb_x, mb_y, newx-4*(i-j), newy-(4*j), obmc_edged, &best_rd);
|
||||||
|
@ -1898,6 +1899,7 @@ static const AVOption options[] = {
|
||||||
{ "memc_only", "Only do ME/MC (I frames -> ref, P frame -> ME+MC).", OFFSET(memc_only), AV_OPT_TYPE_INT, { .i64 = 0 }, 0, 1, VE },
|
{ "memc_only", "Only do ME/MC (I frames -> ref, P frame -> ME+MC).", OFFSET(memc_only), AV_OPT_TYPE_INT, { .i64 = 0 }, 0, 1, VE },
|
||||||
{ "no_bitstream", "Skip final bitstream writeout.", OFFSET(no_bitstream), AV_OPT_TYPE_INT, { .i64 = 0 }, 0, 1, VE },
|
{ "no_bitstream", "Skip final bitstream writeout.", OFFSET(no_bitstream), AV_OPT_TYPE_INT, { .i64 = 0 }, 0, 1, VE },
|
||||||
{ "intra_penalty", "Penalty for intra blocks in block decission", OFFSET(intra_penalty), AV_OPT_TYPE_INT, { .i64 = 0 }, 0, INT_MAX, VE },
|
{ "intra_penalty", "Penalty for intra blocks in block decission", OFFSET(intra_penalty), AV_OPT_TYPE_INT, { .i64 = 0 }, 0, INT_MAX, VE },
|
||||||
|
{ "iterative_dia_size", "Dia size for the iterative ME", OFFSET(iterative_dia_size), AV_OPT_TYPE_INT, { .i64 = 0 }, 0, INT_MAX, VE },
|
||||||
{ NULL },
|
{ NULL },
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue