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
e39f6a3a
Commit
e39f6a3a
authored
Aug 03, 2012
by
Clément Bœsch
Committed by
Clément Bœsch
Aug 03, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix misc swapped dot and carriage returns in av_log calls.
parent
231ffb92
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
crystalhd.c
libavcodec/crystalhd.c
+1
-1
vf_libopencv.c
libavfilter/vf_libopencv.c
+2
-2
No files found.
libavcodec/crystalhd.c
View file @
e39f6a3a
...
...
@@ -927,7 +927,7 @@ static int decode(AVCodecContext *avctx, void *data, int *data_size, AVPacket *a
av_log
(
avctx
,
AV_LOG_WARNING
,
"CrystalHD: Failed to parse h.264 packet "
"completely. Interlaced frames may be "
"incorrectly detected
\n
.
"
);
"incorrectly detected
.
\n
"
);
}
else
{
av_log
(
avctx
,
AV_LOG_VERBOSE
,
"CrystalHD: parser picture type %d
\n
"
,
...
...
libavfilter/vf_libopencv.c
View file @
e39f6a3a
...
...
@@ -106,7 +106,7 @@ static av_cold int smooth_init(AVFilterContext *ctx, const char *args)
else
if
(
!
strcmp
(
type_str
,
"gaussian"
))
smooth
->
type
=
CV_GAUSSIAN
;
else
if
(
!
strcmp
(
type_str
,
"bilateral"
))
smooth
->
type
=
CV_BILATERAL
;
else
{
av_log
(
ctx
,
AV_LOG_ERROR
,
"Smoothing type '%s' unknown
\n
.
"
,
type_str
);
av_log
(
ctx
,
AV_LOG_ERROR
,
"Smoothing type '%s' unknown
.
\n
"
,
type_str
);
return
AVERROR
(
EINVAL
);
}
...
...
@@ -220,7 +220,7 @@ static int parse_iplconvkernel(IplConvKernel **kernel, char *buf, void *log_ctx)
return
ret
;
}
else
{
av_log
(
log_ctx
,
AV_LOG_ERROR
,
"Shape unspecified or type '%s' unknown
\n
.
"
,
shape_str
);
"Shape unspecified or type '%s' unknown
.
\n
"
,
shape_str
);
return
AVERROR
(
EINVAL
);
}
...
...
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