mirror of https://git.ffmpeg.org/ffmpeg.git
Merge commit 'ddcca4ba074aa537c3059c76d69eb4ad6316bfe9'
* commit 'ddcca4ba074aa537c3059c76d69eb4ad6316bfe9': lavc: stop setting AVFrame.motion_subsample_log2 avserver: don't set deprecated options. Merged-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
commit
dac8799529
|
@ -4545,14 +4545,6 @@ static int parse_ffconfig(const char *filename)
|
|||
ERROR("VideoQMin out of range\n");
|
||||
}
|
||||
}
|
||||
} else if (!av_strcasecmp(cmd, "LumaElim")) {
|
||||
get_arg(arg, sizeof(arg), &p);
|
||||
if (stream)
|
||||
video_enc.luma_elim_threshold = atoi(arg);
|
||||
} else if (!av_strcasecmp(cmd, "ChromaElim")) {
|
||||
get_arg(arg, sizeof(arg), &p);
|
||||
if (stream)
|
||||
video_enc.chroma_elim_threshold = atoi(arg);
|
||||
} else if (!av_strcasecmp(cmd, "LumiMask")) {
|
||||
get_arg(arg, sizeof(arg), &p);
|
||||
if (stream)
|
||||
|
|
|
@ -895,7 +895,6 @@ void ff_er_frame_end(ERContext *s)
|
|||
}
|
||||
return;
|
||||
}
|
||||
s->cur_pic->f.motion_subsample_log2 = 3;
|
||||
}
|
||||
|
||||
if (s->avctx->debug & FF_DEBUG_ER) {
|
||||
|
|
|
@ -385,7 +385,6 @@ static int alloc_picture(H264Context *h, Picture *pic)
|
|||
pic->motion_val[i] = (int16_t (*)[2])pic->motion_val_buf[i]->data + 4;
|
||||
pic->ref_index[i] = pic->ref_index_buf[i]->data;
|
||||
}
|
||||
pic->f.motion_subsample_log2 = 2;
|
||||
|
||||
return 0;
|
||||
fail:
|
||||
|
|
|
@ -1063,7 +1063,6 @@ static int get_buffer(AVCodecContext *avctx, Picture *pic)
|
|||
pic->ref_index[i] = pic->ref_index_buf[i]->data;
|
||||
}
|
||||
}
|
||||
pic->f.motion_subsample_log2 = 2;
|
||||
pic->reference = !(h->pict_type == AV_PICTURE_TYPE_B);
|
||||
|
||||
ret = ff_get_buffer(avctx, &pic->f,
|
||||
|
|
Loading…
Reference in New Issue