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
5081310b
Commit
5081310b
authored
Sep 01, 2012
by
Piotr Bandurski
Committed by
Michael Niedermayer
Sep 01, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
lavf: add missing new line to some error messages 2
Signed-off-by:
Michael Niedermayer
<
michaelni@gmx.at
>
parent
9d87cf51
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
id3v2.c
libavformat/id3v2.c
+1
-1
mov.c
libavformat/mov.c
+1
-1
No files found.
libavformat/id3v2.c
View file @
5081310b
...
...
@@ -714,7 +714,7 @@ static void ff_id3v2_parse(AVFormatContext *s, int len, uint8_t version, uint8_t
}
else
if
(
!
tag
[
0
])
{
if
(
tag
[
1
])
av_log
(
s
,
AV_LOG_WARNING
,
"invalid frame id, assuming padding"
);
av_log
(
s
,
AV_LOG_WARNING
,
"invalid frame id, assuming padding
\n
"
);
avio_skip
(
s
->
pb
,
tlen
);
break
;
}
...
...
libavformat/mov.c
View file @
5081310b
...
...
@@ -2492,7 +2492,7 @@ static int mov_read_cmov(MOVContext *c, AVIOContext *pb, MOVAtom atom)
if
(
avio_rl32
(
pb
)
!=
MKTAG
(
'd'
,
'c'
,
'o'
,
'm'
))
return
AVERROR_INVALIDDATA
;
if
(
avio_rl32
(
pb
)
!=
MKTAG
(
'z'
,
'l'
,
'i'
,
'b'
))
{
av_log
(
c
->
fc
,
AV_LOG_ERROR
,
"unknown compression for cmov atom !"
);
av_log
(
c
->
fc
,
AV_LOG_ERROR
,
"unknown compression for cmov atom !
\n
"
);
return
AVERROR_INVALIDDATA
;
}
avio_rb32
(
pb
);
/* cmvd atom */
...
...
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