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
d688f39d
Commit
d688f39d
authored
Jul 17, 2016
by
James Almer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
cosmetics: fix some misspelled words
Signed-off-by:
James Almer
<
jamrial@gmail.com
>
parent
f1eb6ddc
Hide whitespace changes
Inline
Side-by-side
Showing
13 changed files
with
17 additions
and
17 deletions
+17
-17
decoders.texi
doc/decoders.texi
+1
-1
encoders.texi
doc/encoders.texi
+1
-1
filters.texi
doc/filters.texi
+3
-3
protocols.texi
doc/protocols.texi
+1
-1
ffmpeg.c
ffmpeg.c
+2
-2
cfhd.c
libavcodec/cfhd.c
+1
-1
vaapi_encode.c
libavcodec/vaapi_encode.c
+1
-1
dv1394.c
libavdevice/dv1394.c
+2
-2
aviobuf.c
libavformat/aviobuf.c
+1
-1
cinedec.c
libavformat/cinedec.c
+1
-1
mxfenc.c
libavformat/mxfenc.c
+1
-1
psxstr.c
libavformat/psxstr.c
+1
-1
sdp.c
libavformat/sdp.c
+1
-1
No files found.
doc/decoders.texi
View file @
d688f39d
...
...
@@ -279,7 +279,7 @@ present between the subtitle lines because of double-sized teletext charactes.
Default value is 1.
@item txt_duration
Sets the display duration of the decoded teletext pages or subtitles in
miliseconds. Default value is 30000 which is 30 seconds.
mil
l
iseconds. Default value is 30000 which is 30 seconds.
@item txt_transparent
Force transparent background of the generated teletext bitmaps. Default value
is 0 which means an opaque background.
...
...
doc/encoders.texi
View file @
d688f39d
...
...
@@ -1401,7 +1401,7 @@ is 0. This is only used when @option{slice_mode} is set to
@samp{fixed}.
@item slice_mode
Set slice mode. Can assume one of the follwing possible values:
Set slice mode. Can assume one of the foll
o
wing possible values:
@table @samp
@item fixed
...
...
doc/filters.texi
View file @
d688f39d
...
...
@@ -3243,7 +3243,7 @@ silenceremove=1:5:0.02
@end example
@item
Trim all silence encountered from begining to end where there is more than 1
Trim all silence encountered from begin
n
ing to end where there is more than 1
second of silence in audio:
@example
silenceremove=0:0:0:-1:1:-90dB
...
...
@@ -4713,7 +4713,7 @@ ffmpeg -f lavfi -i color=c=black:s=1280x720 -i video.mp4 -shortest -filter_compl
Display CIE color diagram with pixels overlaid onto it.
The filter acc
c
epts the following options:
The filter accepts the following options:
@table @option
@item system
...
...
@@ -4743,7 +4743,7 @@ Set CIE system.
@item gamuts
Set what gamuts to draw.
See @code{system} option for avaiable values.
See @code{system} option for avai
l
able values.
@item size, s
Set ciescope size, by default set to 512.
...
...
doc/protocols.texi
View file @
d688f39d
...
...
@@ -695,7 +695,7 @@ This protocol accepts the following options.
@table @option
@item timeout
Set timeout in miliseconds of socket I/O operations used by the underlying
Set timeout in mil
l
iseconds of socket I/O operations used by the underlying
low level operation. By default it is set to -1, which means that the timeout
is not specified.
...
...
ffmpeg.c
View file @
d688f39d
...
...
@@ -3499,12 +3499,12 @@ static int check_keyboard_interaction(int64_t cur_time)
key
==
'c'
?
AVFILTER_CMD_FLAG_ONE
:
0
);
fprintf
(
stderr
,
"Command reply for stream %d: ret:%d res:
\n
%s"
,
i
,
ret
,
buf
);
}
else
if
(
key
==
'c'
)
{
fprintf
(
stderr
,
"Queing commands only on filters supporting the specific command is unsupported
\n
"
);
fprintf
(
stderr
,
"Que
u
ing commands only on filters supporting the specific command is unsupported
\n
"
);
ret
=
AVERROR_PATCHWELCOME
;
}
else
{
ret
=
avfilter_graph_queue_command
(
fg
->
graph
,
target
,
command
,
arg
,
0
,
time
);
if
(
ret
<
0
)
fprintf
(
stderr
,
"Queing command failed with error %s
\n
"
,
av_err2str
(
ret
));
fprintf
(
stderr
,
"Que
u
ing command failed with error %s
\n
"
,
av_err2str
(
ret
));
}
}
}
...
...
libavcodec/cfhd.c
View file @
d688f39d
...
...
@@ -513,7 +513,7 @@ static int cfhd_decode(AVCodecContext *avctx, void *data, int *got_frame,
}
if
(
highpass_height
>
highpass_a_height
||
highpass_width
>
highpass_a_width
||
a_expected
<
expected
)
{
av_log
(
avctx
,
AV_LOG_ERROR
,
"Too many highpass coefficents
\n
"
);
av_log
(
avctx
,
AV_LOG_ERROR
,
"Too many highpass coeffic
i
ents
\n
"
);
ret
=
AVERROR
(
EINVAL
);
goto
end
;
}
...
...
libavcodec/vaapi_encode.c
View file @
d688f39d
...
...
@@ -334,7 +334,7 @@ static int vaapi_encode_issue(AVCodecContext *avctx,
if
(
ctx
->
codec
->
init_slice_params
)
{
err
=
ctx
->
codec
->
init_slice_params
(
avctx
,
pic
,
slice
);
if
(
err
<
0
)
{
av_log
(
avctx
,
AV_LOG_ERROR
,
"Failed to initalise slice "
av_log
(
avctx
,
AV_LOG_ERROR
,
"Failed to init
i
alise slice "
"parameters: %d.
\n
"
,
err
);
goto
fail
;
}
...
...
libavdevice/dv1394.c
View file @
d688f39d
...
...
@@ -137,7 +137,7 @@ static int dv1394_read_packet(AVFormatContext *context, AVPacket *pkt)
* We have to reset :(.
*/
av_log
(
context
,
AV_LOG_ERROR
,
"DV1394: Ring buffer overflow. Reseting ..
\n
"
);
av_log
(
context
,
AV_LOG_ERROR
,
"DV1394: Ring buffer overflow. Reset
t
ing ..
\n
"
);
dv1394_reset
(
dv
);
dv1394_start
(
dv
);
...
...
@@ -173,7 +173,7 @@ restart_poll:
dv
->
done
=
0
;
if
(
s
.
dropped_frames
)
{
av_log
(
context
,
AV_LOG_ERROR
,
"DV1394: Frame drop detected (%d). Reseting ..
\n
"
,
av_log
(
context
,
AV_LOG_ERROR
,
"DV1394: Frame drop detected (%d). Reset
t
ing ..
\n
"
,
s
.
dropped_frames
);
dv1394_reset
(
dv
);
...
...
libavformat/aviobuf.c
View file @
d688f39d
...
...
@@ -385,7 +385,7 @@ static inline int put_str16(AVIOContext *s, const char *str, const int be)
ret
+=
2
;)
continue
;
invalid:
av_log
(
s
,
AV_LOG_ERROR
,
"Invaid UTF8 sequence in avio_put_str16%s
\n
"
,
be
?
"be"
:
"le"
);
av_log
(
s
,
AV_LOG_ERROR
,
"Inva
l
id UTF8 sequence in avio_put_str16%s
\n
"
,
be
?
"be"
:
"le"
);
err
=
AVERROR
(
EINVAL
);
if
(
!*
(
q
-
1
))
break
;
...
...
libavformat/cinedec.c
View file @
d688f39d
...
...
@@ -111,7 +111,7 @@ static int cine_read_header(AVFormatContext *avctx)
compression
=
avio_rl16
(
pb
);
version
=
avio_rl16
(
pb
);
if
(
version
!=
1
)
{
avpriv_request_sample
(
avctx
,
"uknown version %i"
,
version
);
avpriv_request_sample
(
avctx
,
"u
n
known version %i"
,
version
);
return
AVERROR_INVALIDDATA
;
}
...
...
libavformat/mxfenc.c
View file @
d688f39d
...
...
@@ -671,7 +671,7 @@ static uint64_t mxf_utf16len(const char *utf8_str)
size
+=
2
;
continue
;
invalid:
av_log
(
NULL
,
AV_LOG_ERROR
,
"Invaid UTF8 sequence in mxf_utf16len
\n\n
"
);
av_log
(
NULL
,
AV_LOG_ERROR
,
"Inva
l
id UTF8 sequence in mxf_utf16len
\n\n
"
);
}
size
+=
1
;
return
size
;
...
...
libavformat/psxstr.c
View file @
d688f39d
...
...
@@ -211,7 +211,7 @@ static int str_read_packet(AVFormatContext *s,
if
(
pkt
->
size
!=
sector_count
*
VIDEO_DATA_CHUNK_SIZE
){
if
(
pkt
->
data
)
av_log
(
s
,
AV_LOG_ERROR
,
"mis
s
matching sector_count
\n
"
);
av_log
(
s
,
AV_LOG_ERROR
,
"mismatching sector_count
\n
"
);
av_packet_unref
(
pkt
);
if
(
av_new_packet
(
pkt
,
sector_count
*
VIDEO_DATA_CHUNK_SIZE
))
return
AVERROR
(
EIO
);
...
...
libavformat/sdp.c
View file @
d688f39d
...
...
@@ -641,7 +641,7 @@ static char *sdp_write_media_attributes(char *buff, int size, AVStream *st, int
if
(
p
->
extradata_size
)
config
=
xiph_extradata2config
(
fmt
,
p
);
else
av_log
(
fmt
,
AV_LOG_ERROR
,
"Theora configuation info missing
\n
"
);
av_log
(
fmt
,
AV_LOG_ERROR
,
"Theora configu
r
ation info missing
\n
"
);
if
(
!
config
)
return
NULL
;
...
...
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