diff options
author | Stefano Sabatini <stefasab@gmail.com> | 2012-09-07 13:58:31 +0200 |
---|---|---|
committer | Stefano Sabatini <stefasab@gmail.com> | 2012-09-07 14:31:37 +0200 |
commit | a7c7b34d29050b16e19ee99514831958ce2e0dd0 (patch) | |
tree | ae869f604259207cef53c93c022a8d25bb695e9d /libavdevice | |
parent | 25f139e72fd8d1dda7ae80c1faef136d3bf48738 (diff) | |
download | ffmpeg-a7c7b34d29050b16e19ee99514831958ce2e0dd0.tar.gz |
lavd/sdl: remove trailing dot in messages
This is consistent with the apparently prevailing convention.
Diffstat (limited to 'libavdevice')
-rw-r--r-- | libavdevice/sdl.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libavdevice/sdl.c b/libavdevice/sdl.c index 7783f66013..6b02f59382 100644 --- a/libavdevice/sdl.c +++ b/libavdevice/sdl.c @@ -84,7 +84,7 @@ static int sdl_write_header(AVFormatContext *s) if (SDL_WasInit(SDL_INIT_VIDEO)) { av_log(s, AV_LOG_ERROR, - "SDL video subsystem was already inited, aborting.\n"); + "SDL video subsystem was already inited, aborting\n"); sdl->sdl_was_already_inited = 1; ret = AVERROR(EINVAL); goto fail; @@ -113,7 +113,7 @@ static int sdl_write_header(AVFormatContext *s) if (!sdl->overlay_fmt) { av_log(s, AV_LOG_ERROR, - "Unsupported pixel format '%s', choose one of yuv420p, yuyv422, or uyvy422.\n", + "Unsupported pixel format '%s', choose one of yuv420p, yuyv422, or uyvy422\n", av_get_pix_fmt_name(encctx->pix_fmt)); ret = AVERROR(EINVAL); goto fail; @@ -162,7 +162,7 @@ static int sdl_write_header(AVFormatContext *s) sdl->overlay_fmt, sdl->surface); if (!sdl->overlay || sdl->overlay->pitches[0] < encctx->width) { av_log(s, AV_LOG_ERROR, - "SDL does not support an overlay with size of %dx%d pixels.\n", + "SDL does not support an overlay with size of %dx%d pixels\n", encctx->width, encctx->height); ret = AVERROR(EINVAL); goto fail; |