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
cbc09a7d
Commit
cbc09a7d
authored
Mar 07, 2007
by
Alex Beregszaszi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
typo: unkown->unknown
Originally committed as revision 8274 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
73d6ca4f
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
4 deletions
+4
-4
ffmpeg.c
ffmpeg.c
+2
-2
flicvideo.c
libavcodec/flicvideo.c
+1
-1
vocdec.c
libavformat/vocdec.c
+1
-1
No files found.
ffmpeg.c
View file @
cbc09a7d
...
...
@@ -3465,7 +3465,7 @@ static void opt_video_bsf(const char *arg)
AVBitStreamFilterContext
**
bsfp
;
if
(
!
bsfc
){
fprintf
(
stderr
,
"Unkown bitstream filter %s
\n
"
,
arg
);
fprintf
(
stderr
,
"Unk
n
own bitstream filter %s
\n
"
,
arg
);
exit
(
1
);
}
...
...
@@ -3483,7 +3483,7 @@ static void opt_audio_bsf(const char *arg)
AVBitStreamFilterContext
**
bsfp
;
if
(
!
bsfc
){
fprintf
(
stderr
,
"Unkown bitstream filter %s
\n
"
,
arg
);
fprintf
(
stderr
,
"Unk
n
own bitstream filter %s
\n
"
,
arg
);
exit
(
1
);
}
...
...
libavcodec/flicvideo.c
View file @
cbc09a7d
...
...
@@ -115,7 +115,7 @@ static int flic_decode_init(AVCodecContext *avctx)
return
-
1
;
break
;
default
:
av_log
(
avctx
,
AV_LOG_ERROR
,
"Unkown FLC/FLX depth of %d Bpp is unsupported.
\n
"
,
depth
);
av_log
(
avctx
,
AV_LOG_ERROR
,
"Unk
n
own FLC/FLX depth of %d Bpp is unsupported.
\n
"
,
depth
);
return
-
1
;
}
...
...
libavformat/vocdec.c
View file @
cbc09a7d
...
...
@@ -51,7 +51,7 @@ static int voc_read_header(AVFormatContext *s, AVFormatParameters *ap)
url_fskip
(
pb
,
20
);
header_size
=
get_le16
(
pb
)
-
22
;
if
(
header_size
!=
4
)
{
av_log
(
s
,
AV_LOG_ERROR
,
"unkown header size: %d
\n
"
,
header_size
);
av_log
(
s
,
AV_LOG_ERROR
,
"unk
n
own header size: %d
\n
"
,
header_size
);
return
AVERROR_NOTSUPP
;
}
url_fskip
(
pb
,
header_size
);
...
...
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