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
svq1: use av_frame_free to free refcounted frame
Fixes a memleak due to avcodec_free_frame not freeing the frame data.
tags/n2.0
Janne Grunau
12 years ago
parent
669cc0f364
commit
e3232f3431
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
libavcodec/svq1dec.c
+ 1
- 1
libavcodec/svq1dec.c
View File
@@ -793,7 +793,7 @@ static av_cold int svq1_decode_end(AVCodecContext *avctx)
{
SVQ1Context *s = avctx->priv_data;
av
codec_free_fram
e(&s->prev);
av
_frame_fre
e(&s->prev);
return 0;
}
Write
Preview
Loading…
Cancel
Save