diff options
author | Luca Barbato <lu_zero@gentoo.org> | 2014-04-23 21:04:20 +0200 |
---|---|---|
committer | Luca Barbato <lu_zero@gentoo.org> | 2014-04-23 21:04:20 +0200 |
commit | 374fdc8c071dcd96422378b0a1a0d453336d8a01 (patch) | |
tree | dc5a0868c40d77d83ed02aef73c46085063825d0 /libavformat/flvdec.c | |
parent | 7cade8ea2bb19e78dae42b29720535a70fb2ae84 (diff) | |
download | ffmpeg-374fdc8c071dcd96422378b0a1a0d453336d8a01.tar.gz |
flv: Improve log messages
Messages should start with a capital letter and possibly end with a "."
if they are statements.
Diffstat (limited to 'libavformat/flvdec.c')
-rw-r--r-- | libavformat/flvdec.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libavformat/flvdec.c b/libavformat/flvdec.c index a3630f8078..5a2f3485a5 100644 --- a/libavformat/flvdec.c +++ b/libavformat/flvdec.c @@ -565,7 +565,7 @@ static int flv_read_header(AVFormatContext *s) flags = FLV_HEADER_FLAG_HASVIDEO | FLV_HEADER_FLAG_HASAUDIO; av_log(s, AV_LOG_WARNING, "Broken FLV file, which says no streams present, " - "this might fail\n"); + "this might fail.\n"); } s->ctx_flags |= AVFMTCTX_NOHEADER; @@ -798,7 +798,7 @@ static int flv_read_packet(AVFormatContext *s, AVPacket *pkt) return flv_data_packet(s, pkt, dts, next); } else /* skip packet */ av_log(s, AV_LOG_DEBUG, - "skipping flv packet: type %d, size %d, flags %d\n", + "Skipping flv packet: type %d, size %d, flags %d.\n", type, size, flags); skip: @@ -899,7 +899,7 @@ skip: if (cts < 0) { // dts are wrong flv->wrong_dts = 1; av_log(s, AV_LOG_WARNING, - "negative cts, previous timestamps might be wrong\n"); + "Negative cts, previous timestamps might be wrong.\n"); } if (flv->wrong_dts) dts = AV_NOPTS_VALUE; |