You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-15 14:13:16 +02:00
lavd/sdl: remove trailing dot in messages
This is consistent with the apparently prevailing convention.
This commit is contained in:
@@ -84,7 +84,7 @@ static int sdl_write_header(AVFormatContext *s)
|
|||||||
|
|
||||||
if (SDL_WasInit(SDL_INIT_VIDEO)) {
|
if (SDL_WasInit(SDL_INIT_VIDEO)) {
|
||||||
av_log(s, AV_LOG_ERROR,
|
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;
|
sdl->sdl_was_already_inited = 1;
|
||||||
ret = AVERROR(EINVAL);
|
ret = AVERROR(EINVAL);
|
||||||
goto fail;
|
goto fail;
|
||||||
@@ -113,7 +113,7 @@ static int sdl_write_header(AVFormatContext *s)
|
|||||||
|
|
||||||
if (!sdl->overlay_fmt) {
|
if (!sdl->overlay_fmt) {
|
||||||
av_log(s, AV_LOG_ERROR,
|
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));
|
av_get_pix_fmt_name(encctx->pix_fmt));
|
||||||
ret = AVERROR(EINVAL);
|
ret = AVERROR(EINVAL);
|
||||||
goto fail;
|
goto fail;
|
||||||
@@ -162,7 +162,7 @@ static int sdl_write_header(AVFormatContext *s)
|
|||||||
sdl->overlay_fmt, sdl->surface);
|
sdl->overlay_fmt, sdl->surface);
|
||||||
if (!sdl->overlay || sdl->overlay->pitches[0] < encctx->width) {
|
if (!sdl->overlay || sdl->overlay->pitches[0] < encctx->width) {
|
||||||
av_log(s, AV_LOG_ERROR,
|
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);
|
encctx->width, encctx->height);
|
||||||
ret = AVERROR(EINVAL);
|
ret = AVERROR(EINVAL);
|
||||||
goto fail;
|
goto fail;
|
||||||
|
Reference in New Issue
Block a user