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
a5f88736
Commit
a5f88736
authored
Aug 20, 2012
by
Diego Biurrun
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
silly typo fixes
parent
4a7af92c
Hide whitespace changes
Inline
Side-by-side
Showing
14 changed files
with
21 additions
and
20 deletions
+21
-20
protocols.texi
doc/protocols.texi
+1
-1
aacpsy.c
libavcodec/aacpsy.c
+2
-1
flac_parser.c
libavcodec/flac_parser.c
+1
-1
flacenc.c
libavcodec/flacenc.c
+1
-1
flicvideo.c
libavcodec/flicvideo.c
+1
-1
wmavoice.c
libavcodec/wmavoice.c
+1
-1
fpel_mmx.c
libavcodec/x86/fpel_mmx.c
+1
-1
v4l2.c
libavdevice/v4l2.c
+1
-1
avformat.h
libavformat/avformat.h
+3
-3
idcin.c
libavformat/idcin.c
+1
-1
pmpdec.c
libavformat/pmpdec.c
+1
-1
utils.c
libavformat/utils.c
+3
-3
wavdec.c
libavformat/wavdec.c
+3
-3
patcheck
tools/patcheck
+1
-1
No files found.
doc/protocols.texi
View file @
a5f88736
...
...
@@ -564,7 +564,7 @@ The required syntax for a UDP url is:
udp://@var{hostname}:@var{port}[?@var{options}]
@end example
@var{options} contains a list of &-sep
e
rated options of the form @var{key}=@var{val}.
@var{options} contains a list of &-sep
a
rated options of the form @var{key}=@var{val}.
Follow the list of supported options.
@table @option
...
...
libavcodec/aacpsy.c
View file @
a5f88736
...
...
@@ -804,7 +804,8 @@ static FFPsyWindowInfo psy_lame_window(FFPsyContext *ctx, const float *audio,
sum1
+=
psy_fir_coeffs
[
j
]
*
(
firbuf
[
i
+
j
]
+
firbuf
[
i
+
PSY_LAME_FIR_LEN
-
j
]);
sum2
+=
psy_fir_coeffs
[
j
+
1
]
*
(
firbuf
[
i
+
j
+
1
]
+
firbuf
[
i
+
PSY_LAME_FIR_LEN
-
j
-
1
]);
}
/* NOTE: The LAME psymodel expects it's input in the range -32768 to 32768. Tuning this for normalized floats would be difficult. */
/* NOTE: The LAME psymodel expects its input in the range -32768 to
* 32768. Tuning this for normalized floats would be difficult. */
hpfsmpl
[
i
]
=
(
sum1
+
sum2
)
*
32768
.
0
f
;
}
...
...
libavcodec/flac_parser.c
View file @
a5f88736
...
...
@@ -27,7 +27,7 @@
* Each time it finds and verifies a CRC-8 header it sees which of the
* FLAC_MAX_SEQUENTIAL_HEADERS that came before it have a valid CRC-16 footer
* that ends at the newly found header.
* Headers are scored by FLAC_HEADER_BASE_SCORE plus the max of it
'
s crc-verified
* Headers are scored by FLAC_HEADER_BASE_SCORE plus the max of its crc-verified
* children, penalized by changes in sample rate, frame number, etc.
* The parser returns the frame with the highest score.
**/
...
...
libavcodec/flacenc.c
View file @
a5f88736
...
...
@@ -1232,7 +1232,7 @@ static int flac_encode_frame(AVCodecContext *avctx, AVPacket *avpkt,
frame_bytes
=
encode_frame
(
s
);
/*
fallback to
verbatim mode if the compressed frame is larger than it
/*
Fall back on
verbatim mode if the compressed frame is larger than it
would be if encoded uncompressed. */
if
(
frame_bytes
<
0
||
frame_bytes
>
s
->
max_framesize
)
{
s
->
frame
.
verbatim_only
=
1
;
...
...
libavcodec/flicvideo.c
View file @
a5f88736
...
...
@@ -539,7 +539,7 @@ static int flic_decode_frame_15_16BPP(AVCodecContext *avctx,
break
;
case
FLI_LC
:
av_log
(
avctx
,
AV_LOG_ERROR
,
"Unexpected FLI_LC chunk in non-palet
is
ed FLC
\n
"
);
av_log
(
avctx
,
AV_LOG_ERROR
,
"Unexpected FLI_LC chunk in non-palet
tiz
ed FLC
\n
"
);
bytestream2_skip
(
&
g2
,
chunk_size
-
6
);
break
;
...
...
libavcodec/wmavoice.c
View file @
a5f88736
...
...
@@ -607,7 +607,7 @@ static void calc_input_response(WMAVoiceContext *s, float *lpcs,
/* 70.57 =~ 1/log10(1.0331663) */
idx
=
(
pwr
*
gain_mul
-
0
.
02
95
)
*
70
.
570526123
;
if
(
idx
>
127
)
{
// fallback if index falls outside table range
if
(
idx
>
127
)
{
// fall
back if index falls outside table range
coeffs
[
n
]
=
wmavoice_energy_table
[
127
]
*
powf
(
1
.
0331663
,
idx
-
127
);
}
else
...
...
libavcodec/x86/fpel_mmx.c
View file @
a5f88736
...
...
@@ -29,7 +29,7 @@
#if HAVE_MMX_INLINE
// in case more speed is needed - unroling would certainly help
// in case more speed is needed - unrol
l
ing would certainly help
void
ff_avg_pixels8_mmx
(
uint8_t
*
block
,
const
uint8_t
*
pixels
,
ptrdiff_t
line_size
,
int
h
)
{
...
...
libavdevice/v4l2.c
View file @
a5f88736
...
...
@@ -485,7 +485,7 @@ static int mmap_read_frame(AVFormatContext *ctx, AVPacket *pkt)
/* Image is at s->buff_start[buf.index] */
if
(
avpriv_atomic_int_get
(
&
s
->
buffers_queued
)
==
FFMAX
(
s
->
buffers
/
8
,
1
))
{
/* when we start getting low on queued buffers, fall
back to
copying data */
/* when we start getting low on queued buffers, fall
back on
copying data */
res
=
av_new_packet
(
pkt
,
buf
.
bytesused
);
if
(
res
<
0
)
{
av_log
(
ctx
,
AV_LOG_ERROR
,
"Error allocating a packet.
\n
"
);
...
...
libavformat/avformat.h
View file @
a5f88736
...
...
@@ -353,8 +353,8 @@ typedef struct AVProbeData {
#define AVFMT_VARIABLE_FPS 0x0400
/**< Format allows variable fps. */
#define AVFMT_NODIMENSIONS 0x0800
/**< Format does not need width/height */
#define AVFMT_NOSTREAMS 0x1000
/**< Format does not require any streams */
#define AVFMT_NOBINSEARCH 0x2000
/**< Format does not allow to fall
back to
binary search via read_timestamp */
#define AVFMT_NOGENSEARCH 0x4000
/**< Format does not allow to fall
back to
generic search */
#define AVFMT_NOBINSEARCH 0x2000
/**< Format does not allow to fall
back on
binary search via read_timestamp */
#define AVFMT_NOGENSEARCH 0x4000
/**< Format does not allow to fall
back on
generic search */
#define AVFMT_NO_BYTE_SEEK 0x8000
/**< Format does not allow seeking by bytes */
#define AVFMT_ALLOW_FLUSH 0x10000
/**< Format allows flushing. If not set, the muxer will not receive a NULL packet in the write_packet function. */
#define AVFMT_TS_NONSTRICT 0x20000
/**< Format does not require strictly
...
...
@@ -1388,7 +1388,7 @@ void avformat_close_input(AVFormatContext **s);
*
* @param s Media file handle, must be allocated with avformat_alloc_context().
* Its oformat field must be set to the desired output format;
* Its pb field must be set to an already opene
ne
d AVIOContext.
* Its pb field must be set to an already opened AVIOContext.
* @param options An AVDictionary filled with AVFormatContext and muxer-private options.
* On return this parameter will be destroyed and replaced with a dict containing
* options that were not found. May be NULL.
...
...
libavformat/idcin.c
View file @
a5f88736
...
...
@@ -136,7 +136,7 @@ static int idcin_probe(AVProbeData *p)
if
(
number
>
2
)
return
0
;
/* return half certain
l
y since this check is a bit sketchy */
/* return half certain
t
y since this check is a bit sketchy */
return
AVPROBE_SCORE_MAX
/
2
;
}
...
...
libavformat/pmpdec.c
View file @
a5f88736
...
...
@@ -157,7 +157,7 @@ static int pmp_seek(AVFormatContext *s, int stream_idx, int64_t ts, int flags)
{
PMPContext
*
pmp
=
s
->
priv_data
;
pmp
->
cur_stream
=
0
;
// fall
back to
default seek now
// fall
back on
default seek now
return
-
1
;
}
...
...
libavformat/utils.c
View file @
a5f88736
...
...
@@ -722,7 +722,7 @@ int ff_get_audio_frame_size(AVCodecContext *enc, int size, int mux)
if
((
frame_size
=
av_get_audio_frame_duration
(
enc
,
size
))
>
0
)
return
frame_size
;
/*
fallback to using frame_size if muxing
*/
/*
Fall back on using frame_size if muxing.
*/
if
(
enc
->
frame_size
>
1
)
return
enc
->
frame_size
;
...
...
@@ -1790,8 +1790,8 @@ int avformat_seek_file(AVFormatContext *s, int stream_index, int64_t min_ts, int
//try to seek via read_timestamp()
}
//
Fallback to old API if new is not implemented but old is
//
Note the old has somewat different sematics
//
Fall back on old API if new is not implemented but old is.
//
Note the old API has somewhat different semantics.
if
(
s
->
iformat
->
read_seek
||
1
)
return
av_seek_frame
(
s
,
stream_index
,
ts
,
flags
|
((
uint64_t
)
ts
-
min_ts
>
(
uint64_t
)
max_ts
-
ts
?
AVSEEK_FLAG_BACKWARD
:
0
));
...
...
libavformat/wavdec.c
View file @
a5f88736
...
...
@@ -73,9 +73,9 @@ static int wav_probe(AVProbeData *p)
return
0
;
if
(
!
memcmp
(
p
->
buf
+
8
,
"WAVE"
,
4
))
{
if
(
!
memcmp
(
p
->
buf
,
"RIFF"
,
4
))
/* Since
ACT demuxer has standard WAV header at top of it's
*
own, returning score is decreased to avoid probe conflict
* between ACT and WAV. */
/* Since
the ACT demuxer has a standard WAV header at the top of
*
its own, the returned score is decreased to avoid a probe
*
conflict
between ACT and WAV. */
return
AVPROBE_SCORE_MAX
-
1
;
else
if
(
!
memcmp
(
p
->
buf
,
"RF64"
,
4
)
&&
!
memcmp
(
p
->
buf
+
12
,
"ds64"
,
4
))
...
...
tools/patcheck
View file @
a5f88736
...
...
@@ -67,7 +67,7 @@ $EGREP $OPT '^\+ *(const *|)static' $*| $EGREP --color=always '[^=]= *(0|NULL)[^
cat
$TMP
hiegrep
'# *ifdef * (HAVE|CONFIG)_'
'ifdefs that should be #if'
$*
hiegrep
'\b(awnser|cant|dont|wont|usefull|successfull|occured|teh|alot|wether|skiped|heigth|informations|colums|loosy|loosing|seperate|preceed|upto|paket|posible|unkown|inpossible|dimention|acheive)\b'
'common typos'
$*
hiegrep
'\b(awnser|cant|dont|wont|
doesnt|
usefull|successfull|occured|teh|alot|wether|skiped|heigth|informations|colums|loosy|loosing|seperate|preceed|upto|paket|posible|unkown|inpossible|dimention|acheive)\b'
'common typos'
$*
hiegrep
'av_log\( *NULL'
'Missing context in av_log'
$*
hiegrep
'[^sn]printf'
'Please use av_log'
$*
...
...
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