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
8578433d
Commit
8578433d
authored
Feb 16, 2020
by
Andriy Gelman
Committed by
Mark Thompson
Feb 16, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avcodec/v4l2_m2m: Fix typo in log message and cosmetics
Signed-off-by:
Andriy Gelman
<
andriy.gelman@gmail.com
>
parent
17ece3f7
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
v4l2_m2m.c
libavcodec/v4l2_m2m.c
+2
-2
v4l2_m2m_enc.c
libavcodec/v4l2_m2m_enc.c
+1
-1
No files found.
libavcodec/v4l2_m2m.c
View file @
8578433d
...
...
@@ -264,8 +264,8 @@ int ff_v4l2_m2m_codec_full_reinit(V4L2m2mContext *s)
ret
=
ff_v4l2_context_set_status
(
&
s
->
capture
,
VIDIOC_STREAMOFF
);
if
(
ret
)
{
av_log
(
log_ctx
,
AV_LOG_ERROR
,
"capture VIDIOC_STREAMOFF
\n
"
);
goto
error
;
av_log
(
log_ctx
,
AV_LOG_ERROR
,
"capture VIDIOC_STREAMOFF
\n
"
);
goto
error
;
}
/* release and unmmap the buffers */
...
...
libavcodec/v4l2_m2m_enc.c
View file @
8578433d
...
...
@@ -83,7 +83,7 @@ static inline int v4l2_get_ext_ctrl(V4L2m2mContext *s, unsigned int id, signed i
ret
=
ioctl
(
s
->
fd
,
VIDIOC_G_EXT_CTRLS
,
&
ctrls
);
if
(
ret
<
0
)
{
av_log
(
s
->
avctx
,
AV_LOG_WARNING
,
"Failed to
s
et %s
\n
"
,
name
);
av_log
(
s
->
avctx
,
AV_LOG_WARNING
,
"Failed to
g
et %s
\n
"
,
name
);
return
ret
;
}
...
...
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