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
avcodec/libxvid: Fix use of uninitialized AVPacket fields
Fixes CID1361964 Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
tags/n3.1
Michael Niedermayer
9 years ago
parent
2c7fd0e36b
commit
0b9b3163f2
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
libavcodec/libxvid.c
+ 1
- 1
libavcodec/libxvid.c
View File
@@ -713,7 +713,7 @@ FF_ENABLE_DEPRECATION_WARNINGS
/* Encode a dummy frame to get the extradata immediately */
if (x->quicktime_format) {
AVFrame *picture;
AVPacket packet;
AVPacket packet
= {0}
;
int size, got_packet, ret;
av_init_packet(&packet);
Write
Preview
Loading…
Cancel
Save