ffmpeg | branch: master | Paul B Mahol <one...@gmail.com> | Sun Jan 31 12:59:28 2016 +0100| [b4af7d68fe14c6978a1a2f8b1bb34fd50d189160] | committer: Paul B Mahol
avcodec/fraps: remove superfluous "Fraps:" from av_log Signed-off-by: Paul B Mahol <one...@gmail.com> > http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=b4af7d68fe14c6978a1a2f8b1bb34fd50d189160 --- libavcodec/fraps.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libavcodec/fraps.c b/libavcodec/fraps.c index 2d4d5c4..57e13f2 100644 --- a/libavcodec/fraps.c +++ b/libavcodec/fraps.c @@ -188,13 +188,13 @@ static int decode_frame(AVCodecContext *avctx, return buf_size; } if (AV_RL32(buf) != FPS_TAG || buf_size < planes*1024 + 24) { - av_log(avctx, AV_LOG_ERROR, "Fraps: error in data stream\n"); + av_log(avctx, AV_LOG_ERROR, "error in data stream\n"); return AVERROR_INVALIDDATA; } for (i = 0; i < planes; i++) { offs[i] = AV_RL32(buf + 4 + i * 4); if (offs[i] >= buf_size - header_size || (i && offs[i] <= offs[i - 1] + 1024)) { - av_log(avctx, AV_LOG_ERROR, "Fraps: plane %i offset is out of bounds\n", i); + av_log(avctx, AV_LOG_ERROR, "plane %i offset is out of bounds\n", i); return AVERROR_INVALIDDATA; } } _______________________________________________ ffmpeg-cvslog mailing list ffmpeg-cvslog@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-cvslog