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_uspp: clear AVPacket to not leave uninitialized memory
Fixes CID1260707 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
tags/n2.6
Michael Niedermayer
10 years ago
parent
0c10cf6ab1
commit
eb465b8c56
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_uspp.c
+ 1
- 1
libavfilter/vf_uspp.c
View File
@@ -250,7 +250,7 @@ static void filter(USPPContext *p, uint8_t *dst[3], uint8_t *src[3],
const int y1c = y1 >> p->vsub;
const int BLOCKc = BLOCK >> p->hsub;
int offset;
AVPacket pkt;
AVPacket pkt
= {0}
;
int got_pkt_ptr;
av_init_packet(&pkt);
Write
Preview
Loading…
Cancel
Save