This website works better with JavaScript.
Home
Help
Sign In
falkTX
/
FFmpeg
mirror of
https://github.com/falkTX/FFmpeg.git
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
338
Wiki
Activity
Browse Source
avfilter/vf_zoompan: do not free frame we pushed to lavfi
Signed-off-by: Paul B Mahol <onemda@gmail.com>
tags/n3.0
Paul B Mahol
10 years ago
parent
7fe77aa62e
commit
8bcd1997ea
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
libavfilter/vf_zoompan.c
+ 1
- 1
libavfilter/vf_zoompan.c
View File
@@ -230,9 +230,9 @@ static int filter_frame(AVFilterLink *inlink, AVFrame *in)
s->frame_count++;
ret = ff_filter_frame(outlink, out);
out = NULL;
if (ret < 0)
break;
out = NULL;
sws_freeContext(s->sws);
s->sws = NULL;
Write
Preview
Loading…
Cancel
Save