mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-02-04 06:08:26 +02:00
avfilter/avfilter: Add a few more basic filters to the list which support frame size changes
Fixes assertion failures Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
da8eb70dc3
commit
5d859e5980
@ -1161,8 +1161,11 @@ int ff_filter_frame(AVFilterLink *link, AVFrame *frame)
|
||||
|
||||
/* Consistency checks */
|
||||
if (link->type == AVMEDIA_TYPE_VIDEO) {
|
||||
if (strcmp(link->dst->filter->name, "scale") &&
|
||||
strcmp(link->dst->filter->name, "idet")) {
|
||||
if (strcmp(link->dst->filter->name, "buffersink") &&
|
||||
strcmp(link->dst->filter->name, "format") &&
|
||||
strcmp(link->dst->filter->name, "idet") &&
|
||||
strcmp(link->dst->filter->name, "null") &&
|
||||
strcmp(link->dst->filter->name, "scale")) {
|
||||
av_assert1(frame->format == link->format);
|
||||
av_assert1(frame->width == link->w);
|
||||
av_assert1(frame->height == link->h);
|
||||
|
Loading…
x
Reference in New Issue
Block a user