Mercurial > libavcodec.hg
changeset 1611:d29e96720e21 libavcodec
comment fix
author | bellard |
---|---|
date | Mon, 10 Nov 2003 15:19:05 +0000 |
parents | b0fe2a0adf49 |
children | 0d2b59cf9f45 |
files | adpcm.c |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/adpcm.c Mon Nov 10 03:14:04 2003 +0000 +++ b/adpcm.c Mon Nov 10 15:19:05 2003 +0000 @@ -129,7 +129,7 @@ return -1; /* only stereo or mono =) */ switch(avctx->codec->id) { case CODEC_ID_ADPCM_IMA_QT: - av_log(avctx, AV_LOG_ERROR, "ADPCM: codec admcp_ima_qt unsupported for encoding !\n"); + av_log(avctx, AV_LOG_ERROR, "ADPCM: codec adpcm_ima_qt unsupported for encoding !\n"); avctx->frame_size = 64; /* XXX: can multiple of avctx->channels * 64 (left and right blocks are interleaved) */ return -1; break; @@ -140,7 +140,7 @@ /* seems frame_size isn't taken into account... have to buffer the samples :-( */ break; case CODEC_ID_ADPCM_MS: - av_log(avctx, AV_LOG_ERROR, "ADPCM: codec admcp_ms unsupported for encoding !\n"); + av_log(avctx, AV_LOG_ERROR, "ADPCM: codec adpcm_ms unsupported for encoding !\n"); return -1; break; default: