Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
F
ffmpeg.wasm-core
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Linshizhi
ffmpeg.wasm-core
Commits
a7c7b34d
Commit
a7c7b34d
authored
Sep 07, 2012
by
Stefano Sabatini
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
lavd/sdl: remove trailing dot in messages
This is consistent with the apparently prevailing convention.
parent
25f139e7
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
sdl.c
libavdevice/sdl.c
+3
-3
No files found.
libavdevice/sdl.c
View file @
a7c7b34d
...
...
@@ -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
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment