diff options
author | Kostya Shishkov <kostya.shishkov@gmail.com> | 2013-11-08 10:21:07 +0100 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2013-11-08 16:50:17 +0100 |
commit | 5462dde1947e0ecfcb2db99ae29ce9dee8933b45 (patch) | |
tree | d9da97f9e3f021cdca2494f22ff7a7f623e2f1e6 /libavcodec/metasound.c | |
parent | cb56c3961b18111796547db66e9ab0cec738a794 (diff) | |
download | ffmpeg-5462dde1947e0ecfcb2db99ae29ce9dee8933b45.tar.gz |
metasound: Fix error message argument
Signed-off-by: Diego Biurrun <diego@biurrun.de>
Diffstat (limited to 'libavcodec/metasound.c')
-rw-r--r-- | libavcodec/metasound.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/metasound.c b/libavcodec/metasound.c index 88cbff6b21..8b217326c3 100644 --- a/libavcodec/metasound.c +++ b/libavcodec/metasound.c @@ -313,7 +313,7 @@ static av_cold int metasound_decode_init(AVCodecContext *avctx) default: av_log(avctx, AV_LOG_ERROR, "This version does not support %d kHz - %d kbit/s/ch mode.\n", - isampf, isampf); + isampf, ibps); return AVERROR(ENOSYS); } |