diff options
author | Niklas Haas <[email protected]> | 2025-09-15 18:02:16 +0200 |
---|---|---|
committer | Niklas Haas <[email protected]> | 2025-09-21 11:02:41 +0000 |
commit | 2b67137daa488b2de4c86fd025ab9db576a1fb9a (patch) | |
tree | e80f3d5fa4e5862c7d698d8f3acea1f3c7dd74ec | |
parent | 5830743363490d39d9f9b4acd4c4aceb73c14d0c (diff) |
avfilter/vf_idet: correctly reset pixdesc on format change
-rw-r--r-- | libavfilter/vf_idet.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavfilter/vf_idet.c b/libavfilter/vf_idet.c index 74baa20227..7ec8b088be 100644 --- a/libavfilter/vf_idet.c +++ b/libavfilter/vf_idet.c @@ -283,6 +283,7 @@ static int filter_frame(AVFilterLink *link, AVFrame *picref) av_frame_free(&idet->cur ); av_frame_free(&idet->next); + idet->csp = NULL; } idet->prev = idet->cur; |