Commit e185a2f6 authored by Michael Niedermayer's avatar Michael Niedermayer

Do as the comment says and signal an error.

Originally committed as revision 20770 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent b8919a30
...@@ -583,8 +583,10 @@ static void do_audio_out(AVFormatContext *s, ...@@ -583,8 +583,10 @@ static void do_audio_out(AVFormatContext *s,
av_fast_malloc(&audio_buf, &allocated_audio_buf_size, audio_buf_size); av_fast_malloc(&audio_buf, &allocated_audio_buf_size, audio_buf_size);
av_fast_malloc(&audio_out, &allocated_audio_out_size, audio_out_size); av_fast_malloc(&audio_out, &allocated_audio_out_size, audio_out_size);
if (!audio_buf || !audio_out) if (!audio_buf || !audio_out){
return; /* Should signal an error ! */ fprintf(stderr, "Out of memory in do_audio_out\n");
av_exit(1);
}
if (enc->channels != dec->channels) if (enc->channels != dec->channels)
ost->audio_resample = 1; ost->audio_resample = 1;
......
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