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/aacdec.c | |
parent | 00ed7f5958d026cb4786919f4b3e46f14fe608bf (diff) | |
download | ffmpeg-8f4c414df6b81c3ee3f12de1504ae7ccb5f8053a.tar.gz |
Improve wording and spelling of av_log_missing_feature messages.
Diffstat (limited to 'libavcodec/aacdec.c')
-rw-r--r-- | libavcodec/aacdec.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/aacdec.c b/libavcodec/aacdec.c index 4a6d3905f4..b7caecb39b 100644 --- a/libavcodec/aacdec.c +++ b/libavcodec/aacdec.c @@ -2663,7 +2663,7 @@ static int read_stream_mux_config(struct LATMContext *latmctx, // numPrograms if (get_bits(gb, 4)) { // numPrograms av_log_missing_feature(latmctx->aac_ctx.avctx, - "multiple programs", 1); + "Multiple programs", 1); return AVERROR_PATCHWELCOME; } @@ -2672,7 +2672,7 @@ static int read_stream_mux_config(struct LATMContext *latmctx, // for each layer (which there is only on in DVB) if (get_bits(gb, 3)) { // numLayer av_log_missing_feature(latmctx->aac_ctx.avctx, - "multiple layers", 1); + "Multiple layers", 1); return AVERROR_PATCHWELCOME; } |