[FFmpeg-cvslog] Tell users about supported audio samplerates in mmf.

Carl Eugen Hoyos git at videolan.org
Mon Mar 19 10:37:12 CET 2012


ffmpeg | branch: master | Carl Eugen Hoyos <cehoyos at ag.or.at> | Mon Mar 19 10:09:04 2012 +0100| [78f2833f7808373e4d973ac77c16538b74cf71c1] | committer: Carl Eugen Hoyos

Tell users about supported audio samplerates in mmf.

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=78f2833f7808373e4d973ac77c16538b74cf71c1
---

 libavformat/mmf.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/libavformat/mmf.c b/libavformat/mmf.c
index b732e1f..d1e6f81 100644
--- a/libavformat/mmf.c
+++ b/libavformat/mmf.c
@@ -68,7 +68,7 @@ static int mmf_write_header(AVFormatContext *s)
 
     rate = mmf_rate_code(s->streams[0]->codec->sample_rate);
     if(rate < 0) {
-        av_log(s, AV_LOG_ERROR, "Unsupported sample rate %d\n", s->streams[0]->codec->sample_rate);
+        av_log(s, AV_LOG_ERROR, "Unsupported sample rate %d, supported are 4000, 8000, 11025, 22050 and 44100\n", s->streams[0]->codec->sample_rate);
         return -1;
     }
 



More information about the ffmpeg-cvslog mailing list