1
mirror of https://git.videolan.org/git/ffmpeg.git synced 2024-09-29 16:23:10 +02:00

print error when unsupported sample rate is used with swf

Originally committed as revision 7101 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Baptiste Coudurier 2006-11-16 11:19:03 +00:00
parent 06599638dd
commit 43a8686416

View File

@ -450,6 +450,7 @@ static int swf_write_header(AVFormatContext *s)
break;
default:
/* not supported */
av_log(s, AV_LOG_ERROR, "swf doesnt support that sample rate, choose from (44100, 22050, 11025)\n");
av_free(swf->audio_fifo);
av_free(swf);
return -1;