Commit 44cc1936 authored by Oana Stratulat's avatar Oana Stratulat Committed by Michael Niedermayer

ffmpeg: Fix segfault with zzufed 4xm file.

Fixes ticket 885
Signed-off-by: 's avatarOana Stratulat <oanaandreeastratulat@gmail.com>
Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 6a56f4e6
...@@ -1020,9 +1020,9 @@ static void do_audio_out(AVFormatContext *s, OutputStream *ost, ...@@ -1020,9 +1020,9 @@ static void do_audio_out(AVFormatContext *s, OutputStream *ost,
InputStream *ist, AVFrame *decoded_frame) InputStream *ist, AVFrame *decoded_frame)
{ {
uint8_t *buftmp; uint8_t *buftmp;
int64_t audio_out_size, audio_buf_size; int64_t audio_out_size, audio_buf_size, size_out;
int size_out, frame_bytes, ret, resample_changed; int frame_bytes, ret, resample_changed;
AVCodecContext *enc = ost->st->codec; AVCodecContext *enc = ost->st->codec;
AVCodecContext *dec = ist->st->codec; AVCodecContext *dec = ist->st->codec;
int osize = av_get_bytes_per_sample(enc->sample_fmt); int osize = av_get_bytes_per_sample(enc->sample_fmt);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment