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
decode_audio3: initialize AVFrame
Same fix and issue as in
a25d912dca
Signed-off-by: Anton Khirnov <anton@khirnov.net>
tags/n1.1
Ilkka Ollakka
Anton Khirnov
13 years ago
parent
5459848b14
commit
6d1270a0f9
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
libavcodec/utils.c
+ 1
- 1
libavcodec/utils.c
View File
@@ -1344,7 +1344,7 @@ int attribute_align_arg avcodec_decode_audio3(AVCodecContext *avctx, int16_t *sa
int *frame_size_ptr,
AVPacket *avpkt)
{
AVFrame frame;
AVFrame frame
= {0}
;
int ret, got_frame = 0;
if (avctx->get_buffer != avcodec_default_get_buffer) {
Write
Preview
Loading…
Cancel
Save