diff options
author | Diego Biurrun <diego@biurrun.de> | 2012-10-22 14:35:13 +0200 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2012-10-23 10:28:40 +0200 |
commit | 8f4c414df6b81c3ee3f12de1504ae7ccb5f8053a (patch) | |
tree | b07a452183b04b6f784008c8a25668c147851441 /libavcodec/wmalosslessdec.c | |
parent | 00ed7f5958d026cb4786919f4b3e46f14fe608bf (diff) | |
download | ffmpeg-8f4c414df6b81c3ee3f12de1504ae7ccb5f8053a.tar.gz |
Improve wording and spelling of av_log_missing_feature messages.
Diffstat (limited to 'libavcodec/wmalosslessdec.c')
-rw-r--r-- | libavcodec/wmalosslessdec.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/wmalosslessdec.c b/libavcodec/wmalosslessdec.c index 2d8754f14f..bd930135a2 100644 --- a/libavcodec/wmalosslessdec.c +++ b/libavcodec/wmalosslessdec.c @@ -189,7 +189,7 @@ static av_cold int decode_init(AVCodecContext *avctx) avctx->sample_fmt = AV_SAMPLE_FMT_S16P; else if (s->bits_per_sample == 24) { avctx->sample_fmt = AV_SAMPLE_FMT_S32P; - av_log_missing_feature(avctx, "bit-depth higher than 16", 0); + av_log_missing_feature(avctx, "Bit-depth higher than 16", 0); return AVERROR_PATCHWELCOME; } else { av_log(avctx, AV_LOG_ERROR, "Unknown bit-depth: %d\n", @@ -885,7 +885,7 @@ static int decode_subframe(WmallDecodeCtx *s) s->do_arith_coding = get_bits1(&s->gb); if (s->do_arith_coding) { - av_log_missing_feature(s->avctx, "arithmetic coding", 1); + av_log_missing_feature(s->avctx, "Arithmetic coding", 1); return AVERROR_PATCHWELCOME; } s->do_ac_filter = get_bits1(&s->gb); |