Commit 43a86864 authored by Baptiste Coudurier's avatar Baptiste Coudurier

print error when unsupported sample rate is used with swf

Originally committed as revision 7101 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 06599638
...@@ -450,6 +450,7 @@ static int swf_write_header(AVFormatContext *s) ...@@ -450,6 +450,7 @@ static int swf_write_header(AVFormatContext *s)
break; break;
default: default:
/* not supported */ /* 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->audio_fifo);
av_free(swf); av_free(swf);
return -1; return -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