summaryrefslogtreecommitdiff
path: root/libavformat/spdifdec.c
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2012-10-22 14:35:13 +0200
committerDiego Biurrun <diego@biurrun.de>2012-10-23 10:28:40 +0200
commit8f4c414df6b81c3ee3f12de1504ae7ccb5f8053a (patch)
treeb07a452183b04b6f784008c8a25668c147851441 /libavformat/spdifdec.c
parent00ed7f5958d026cb4786919f4b3e46f14fe608bf (diff)
Improve wording and spelling of av_log_missing_feature messages.
Diffstat (limited to 'libavformat/spdifdec.c')
-rw-r--r--libavformat/spdifdec.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavformat/spdifdec.c b/libavformat/spdifdec.c
index cecf101009..6d37c94f75 100644
--- a/libavformat/spdifdec.c
+++ b/libavformat/spdifdec.c
@@ -92,7 +92,7 @@ static int spdif_get_offset_and_codec(AVFormatContext *s,
default:
if (s) { /* be silent during a probe */
av_log(s, AV_LOG_WARNING, "Data type 0x%04x", data_type);
- av_log_missing_feature(s, " in IEC 61937 is", 1);
+ av_log_missing_feature(s, " in IEC 61937", 1);
}
return AVERROR_PATCHWELCOME;
}
@@ -213,7 +213,7 @@ static int spdif_read_packet(AVFormatContext *s, AVPacket *pkt)
st->codec->codec_type = AVMEDIA_TYPE_AUDIO;
st->codec->codec_id = codec_id;
} else if (codec_id != s->streams[0]->codec->codec_id) {
- av_log_missing_feature(s, "codec change in IEC 61937", 0);
+ av_log_missing_feature(s, "Codec change in IEC 61937", 0);
return AVERROR_PATCHWELCOME;
}