1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2024-12-23 12:43:46 +02:00

Merge commit '5462dde1947e0ecfcb2db99ae29ce9dee8933b45'

* commit '5462dde1947e0ecfcb2db99ae29ce9dee8933b45':
  metasound: Fix error message argument

Merged-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
Michael Niedermayer 2013-11-08 23:36:59 +01:00
commit ac4447b6ec

View File

@ -313,7 +313,7 @@ static av_cold int metasound_decode_init(AVCodecContext *avctx)
default: default:
av_log(avctx, AV_LOG_ERROR, av_log(avctx, AV_LOG_ERROR,
"This version does not support %d kHz - %d kbit/s/ch mode.\n", "This version does not support %d kHz - %d kbit/s/ch mode.\n",
isampf, isampf); isampf, ibps);
return AVERROR(ENOSYS); return AVERROR(ENOSYS);
} }