Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
F
ffmpeg
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
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
ffmpeg
Commits
ffae713a
Commit
ffae713a
authored
Jan 25, 2012
by
Diego Biurrun
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix a bunch of common typos.
parent
eab6968f
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
37 additions
and
37 deletions
+37
-37
pgssubdec.c
libavcodec/pgssubdec.c
+1
-1
vorbisenc.c
libavcodec/vorbisenc.c
+33
-33
r3d.c
libavformat/r3d.c
+1
-1
lavfi-showfiltfmts.c
tools/lavfi-showfiltfmts.c
+1
-1
patcheck
tools/patcheck
+1
-1
No files found.
libavcodec/pgssubdec.c
View file @
ffae713a
...
@@ -446,7 +446,7 @@ static int decode(AVCodecContext *avctx, void *data, int *data_size,
...
@@ -446,7 +446,7 @@ static int decode(AVCodecContext *avctx, void *data, int *data_size,
case
WINDOW_SEGMENT
:
case
WINDOW_SEGMENT
:
/*
/*
* Window Segment Structure (No new information provided):
* Window Segment Structure (No new information provided):
* 2 bytes: Unkown,
* 2 bytes: Unk
n
own,
* 2 bytes: X position of subtitle,
* 2 bytes: X position of subtitle,
* 2 bytes: Y position of subtitle,
* 2 bytes: Y position of subtitle,
* 2 bytes: Width of subtitle,
* 2 bytes: Width of subtitle,
...
...
libavcodec/vorbisenc.c
View file @
ffae713a
...
@@ -41,13 +41,13 @@ typedef struct {
...
@@ -41,13 +41,13 @@ typedef struct {
int
nentries
;
int
nentries
;
uint8_t
*
lens
;
uint8_t
*
lens
;
uint32_t
*
codewords
;
uint32_t
*
codewords
;
int
ndimen
t
ions
;
int
ndimen
s
ions
;
float
min
;
float
min
;
float
delta
;
float
delta
;
int
seq_p
;
int
seq_p
;
int
lookup
;
int
lookup
;
int
*
quantlist
;
int
*
quantlist
;
float
*
dimen
t
ions
;
float
*
dimen
s
ions
;
float
*
pow2
;
float
*
pow2
;
}
vorbis_enc_codebook
;
}
vorbis_enc_codebook
;
...
@@ -149,12 +149,12 @@ static inline int put_codeword(PutBitContext *pb, vorbis_enc_codebook *cb,
...
@@ -149,12 +149,12 @@ static inline int put_codeword(PutBitContext *pb, vorbis_enc_codebook *cb,
return
0
;
return
0
;
}
}
static
int
cb_lookup_vals
(
int
lookup
,
int
dimen
t
ions
,
int
entries
)
static
int
cb_lookup_vals
(
int
lookup
,
int
dimen
s
ions
,
int
entries
)
{
{
if
(
lookup
==
1
)
if
(
lookup
==
1
)
return
ff_vorbis_nth_root
(
entries
,
dimen
t
ions
);
return
ff_vorbis_nth_root
(
entries
,
dimen
s
ions
);
else
if
(
lookup
==
2
)
else
if
(
lookup
==
2
)
return
dimen
t
ions
*
entries
;
return
dimen
s
ions
*
entries
;
return
0
;
return
0
;
}
}
...
@@ -165,28 +165,28 @@ static int ready_codebook(vorbis_enc_codebook *cb)
...
@@ -165,28 +165,28 @@ static int ready_codebook(vorbis_enc_codebook *cb)
ff_vorbis_len2vlc
(
cb
->
lens
,
cb
->
codewords
,
cb
->
nentries
);
ff_vorbis_len2vlc
(
cb
->
lens
,
cb
->
codewords
,
cb
->
nentries
);
if
(
!
cb
->
lookup
)
{
if
(
!
cb
->
lookup
)
{
cb
->
pow2
=
cb
->
dimen
t
ions
=
NULL
;
cb
->
pow2
=
cb
->
dimen
s
ions
=
NULL
;
}
else
{
}
else
{
int
vals
=
cb_lookup_vals
(
cb
->
lookup
,
cb
->
ndimen
t
ions
,
cb
->
nentries
);
int
vals
=
cb_lookup_vals
(
cb
->
lookup
,
cb
->
ndimen
s
ions
,
cb
->
nentries
);
cb
->
dimen
tions
=
av_malloc
(
sizeof
(
float
)
*
cb
->
nentries
*
cb
->
ndiment
ions
);
cb
->
dimen
sions
=
av_malloc
(
sizeof
(
float
)
*
cb
->
nentries
*
cb
->
ndimens
ions
);
cb
->
pow2
=
av_mallocz
(
sizeof
(
float
)
*
cb
->
nentries
);
cb
->
pow2
=
av_mallocz
(
sizeof
(
float
)
*
cb
->
nentries
);
if
(
!
cb
->
dimen
t
ions
||
!
cb
->
pow2
)
if
(
!
cb
->
dimen
s
ions
||
!
cb
->
pow2
)
return
AVERROR
(
ENOMEM
);
return
AVERROR
(
ENOMEM
);
for
(
i
=
0
;
i
<
cb
->
nentries
;
i
++
)
{
for
(
i
=
0
;
i
<
cb
->
nentries
;
i
++
)
{
float
last
=
0
;
float
last
=
0
;
int
j
;
int
j
;
int
div
=
1
;
int
div
=
1
;
for
(
j
=
0
;
j
<
cb
->
ndimen
t
ions
;
j
++
)
{
for
(
j
=
0
;
j
<
cb
->
ndimen
s
ions
;
j
++
)
{
int
off
;
int
off
;
if
(
cb
->
lookup
==
1
)
if
(
cb
->
lookup
==
1
)
off
=
(
i
/
div
)
%
vals
;
// lookup type 1
off
=
(
i
/
div
)
%
vals
;
// lookup type 1
else
else
off
=
i
*
cb
->
ndimen
t
ions
+
j
;
// lookup type 2
off
=
i
*
cb
->
ndimen
s
ions
+
j
;
// lookup type 2
cb
->
dimen
tions
[
i
*
cb
->
ndiment
ions
+
j
]
=
last
+
cb
->
min
+
cb
->
quantlist
[
off
]
*
cb
->
delta
;
cb
->
dimen
sions
[
i
*
cb
->
ndimens
ions
+
j
]
=
last
+
cb
->
min
+
cb
->
quantlist
[
off
]
*
cb
->
delta
;
if
(
cb
->
seq_p
)
if
(
cb
->
seq_p
)
last
=
cb
->
dimen
tions
[
i
*
cb
->
ndiment
ions
+
j
];
last
=
cb
->
dimen
sions
[
i
*
cb
->
ndimens
ions
+
j
];
cb
->
pow2
[
i
]
+=
cb
->
dimen
tions
[
i
*
cb
->
ndimentions
+
j
]
*
cb
->
dimentions
[
i
*
cb
->
ndiment
ions
+
j
];
cb
->
pow2
[
i
]
+=
cb
->
dimen
sions
[
i
*
cb
->
ndimensions
+
j
]
*
cb
->
dimensions
[
i
*
cb
->
ndimens
ions
+
j
];
div
*=
vals
;
div
*=
vals
;
}
}
cb
->
pow2
[
i
]
/=
2
.;
cb
->
pow2
[
i
]
/=
2
.;
...
@@ -211,17 +211,17 @@ static int ready_residue(vorbis_enc_residue *rc, vorbis_enc_context *venc)
...
@@ -211,17 +211,17 @@ static int ready_residue(vorbis_enc_residue *rc, vorbis_enc_context *venc)
if
(
j
==
8
)
// zero
if
(
j
==
8
)
// zero
continue
;
continue
;
cb
=
&
venc
->
codebooks
[
rc
->
books
[
i
][
j
]];
cb
=
&
venc
->
codebooks
[
rc
->
books
[
i
][
j
]];
assert
(
cb
->
ndimen
t
ions
>=
2
);
assert
(
cb
->
ndimen
s
ions
>=
2
);
assert
(
cb
->
lookup
);
assert
(
cb
->
lookup
);
for
(
j
=
0
;
j
<
cb
->
nentries
;
j
++
)
{
for
(
j
=
0
;
j
<
cb
->
nentries
;
j
++
)
{
float
a
;
float
a
;
if
(
!
cb
->
lens
[
j
])
if
(
!
cb
->
lens
[
j
])
continue
;
continue
;
a
=
fabs
(
cb
->
dimen
tions
[
j
*
cb
->
ndiment
ions
]);
a
=
fabs
(
cb
->
dimen
sions
[
j
*
cb
->
ndimens
ions
]);
if
(
a
>
rc
->
maxes
[
i
][
0
])
if
(
a
>
rc
->
maxes
[
i
][
0
])
rc
->
maxes
[
i
][
0
]
=
a
;
rc
->
maxes
[
i
][
0
]
=
a
;
a
=
fabs
(
cb
->
dimen
tions
[
j
*
cb
->
ndiment
ions
+
1
]);
a
=
fabs
(
cb
->
dimen
sions
[
j
*
cb
->
ndimens
ions
+
1
]);
if
(
a
>
rc
->
maxes
[
i
][
1
])
if
(
a
>
rc
->
maxes
[
i
][
1
])
rc
->
maxes
[
i
][
1
]
=
a
;
rc
->
maxes
[
i
][
1
]
=
a
;
}
}
...
@@ -257,7 +257,7 @@ static int create_vorbis_context(vorbis_enc_context *venc,
...
@@ -257,7 +257,7 @@ static int create_vorbis_context(vorbis_enc_context *venc,
for
(
book
=
0
;
book
<
venc
->
ncodebooks
;
book
++
)
{
for
(
book
=
0
;
book
<
venc
->
ncodebooks
;
book
++
)
{
vorbis_enc_codebook
*
cb
=
&
venc
->
codebooks
[
book
];
vorbis_enc_codebook
*
cb
=
&
venc
->
codebooks
[
book
];
int
vals
;
int
vals
;
cb
->
ndimen
t
ions
=
cvectors
[
book
].
dim
;
cb
->
ndimen
s
ions
=
cvectors
[
book
].
dim
;
cb
->
nentries
=
cvectors
[
book
].
real_len
;
cb
->
nentries
=
cvectors
[
book
].
real_len
;
cb
->
min
=
cvectors
[
book
].
min
;
cb
->
min
=
cvectors
[
book
].
min
;
cb
->
delta
=
cvectors
[
book
].
delta
;
cb
->
delta
=
cvectors
[
book
].
delta
;
...
@@ -272,7 +272,7 @@ static int create_vorbis_context(vorbis_enc_context *venc,
...
@@ -272,7 +272,7 @@ static int create_vorbis_context(vorbis_enc_context *venc,
memset
(
cb
->
lens
+
cvectors
[
book
].
len
,
0
,
cb
->
nentries
-
cvectors
[
book
].
len
);
memset
(
cb
->
lens
+
cvectors
[
book
].
len
,
0
,
cb
->
nentries
-
cvectors
[
book
].
len
);
if
(
cb
->
lookup
)
{
if
(
cb
->
lookup
)
{
vals
=
cb_lookup_vals
(
cb
->
lookup
,
cb
->
ndimen
t
ions
,
cb
->
nentries
);
vals
=
cb_lookup_vals
(
cb
->
lookup
,
cb
->
ndimen
s
ions
,
cb
->
nentries
);
cb
->
quantlist
=
av_malloc
(
sizeof
(
int
)
*
vals
);
cb
->
quantlist
=
av_malloc
(
sizeof
(
int
)
*
vals
);
if
(
!
cb
->
quantlist
)
if
(
!
cb
->
quantlist
)
return
AVERROR
(
ENOMEM
);
return
AVERROR
(
ENOMEM
);
...
@@ -454,7 +454,7 @@ static void put_codebook_header(PutBitContext *pb, vorbis_enc_codebook *cb)
...
@@ -454,7 +454,7 @@ static void put_codebook_header(PutBitContext *pb, vorbis_enc_codebook *cb)
int
ordered
=
0
;
int
ordered
=
0
;
put_bits
(
pb
,
24
,
0x564342
);
//magic
put_bits
(
pb
,
24
,
0x564342
);
//magic
put_bits
(
pb
,
16
,
cb
->
ndimen
t
ions
);
put_bits
(
pb
,
16
,
cb
->
ndimen
s
ions
);
put_bits
(
pb
,
24
,
cb
->
nentries
);
put_bits
(
pb
,
24
,
cb
->
nentries
);
for
(
i
=
1
;
i
<
cb
->
nentries
;
i
++
)
for
(
i
=
1
;
i
<
cb
->
nentries
;
i
++
)
...
@@ -496,7 +496,7 @@ static void put_codebook_header(PutBitContext *pb, vorbis_enc_codebook *cb)
...
@@ -496,7 +496,7 @@ static void put_codebook_header(PutBitContext *pb, vorbis_enc_codebook *cb)
put_bits
(
pb
,
4
,
cb
->
lookup
);
put_bits
(
pb
,
4
,
cb
->
lookup
);
if
(
cb
->
lookup
)
{
if
(
cb
->
lookup
)
{
int
tmp
=
cb_lookup_vals
(
cb
->
lookup
,
cb
->
ndimen
t
ions
,
cb
->
nentries
);
int
tmp
=
cb_lookup_vals
(
cb
->
lookup
,
cb
->
ndimen
s
ions
,
cb
->
nentries
);
int
bits
=
ilog
(
cb
->
quantlist
[
0
]);
int
bits
=
ilog
(
cb
->
quantlist
[
0
]);
for
(
i
=
1
;
i
<
tmp
;
i
++
)
for
(
i
=
1
;
i
<
tmp
;
i
++
)
...
@@ -848,13 +848,13 @@ static float *put_vector(vorbis_enc_codebook *book, PutBitContext *pb,
...
@@ -848,13 +848,13 @@ static float *put_vector(vorbis_enc_codebook *book, PutBitContext *pb,
{
{
int
i
,
entry
=
-
1
;
int
i
,
entry
=
-
1
;
float
distance
=
FLT_MAX
;
float
distance
=
FLT_MAX
;
assert
(
book
->
dimen
t
ions
);
assert
(
book
->
dimen
s
ions
);
for
(
i
=
0
;
i
<
book
->
nentries
;
i
++
)
{
for
(
i
=
0
;
i
<
book
->
nentries
;
i
++
)
{
float
*
vec
=
book
->
dimen
tions
+
i
*
book
->
ndiment
ions
,
d
=
book
->
pow2
[
i
];
float
*
vec
=
book
->
dimen
sions
+
i
*
book
->
ndimens
ions
,
d
=
book
->
pow2
[
i
];
int
j
;
int
j
;
if
(
!
book
->
lens
[
i
])
if
(
!
book
->
lens
[
i
])
continue
;
continue
;
for
(
j
=
0
;
j
<
book
->
ndimen
t
ions
;
j
++
)
for
(
j
=
0
;
j
<
book
->
ndimen
s
ions
;
j
++
)
d
-=
vec
[
j
]
*
num
[
j
];
d
-=
vec
[
j
]
*
num
[
j
];
if
(
distance
>
d
)
{
if
(
distance
>
d
)
{
entry
=
i
;
entry
=
i
;
...
@@ -863,7 +863,7 @@ static float *put_vector(vorbis_enc_codebook *book, PutBitContext *pb,
...
@@ -863,7 +863,7 @@ static float *put_vector(vorbis_enc_codebook *book, PutBitContext *pb,
}
}
if
(
put_codeword
(
pb
,
book
,
entry
))
if
(
put_codeword
(
pb
,
book
,
entry
))
return
NULL
;
return
NULL
;
return
&
book
->
dimen
tions
[
entry
*
book
->
ndiment
ions
];
return
&
book
->
dimen
sions
[
entry
*
book
->
ndimens
ions
];
}
}
static
int
residue_encode
(
vorbis_enc_context
*
venc
,
vorbis_enc_residue
*
rc
,
static
int
residue_encode
(
vorbis_enc_context
*
venc
,
vorbis_enc_residue
*
rc
,
...
@@ -875,7 +875,7 @@ static int residue_encode(vorbis_enc_context *venc, vorbis_enc_residue *rc,
...
@@ -875,7 +875,7 @@ static int residue_encode(vorbis_enc_context *venc, vorbis_enc_residue *rc,
int
partitions
=
(
rc
->
end
-
rc
->
begin
)
/
psize
;
int
partitions
=
(
rc
->
end
-
rc
->
begin
)
/
psize
;
int
channels
=
(
rc
->
type
==
2
)
?
1
:
real_ch
;
int
channels
=
(
rc
->
type
==
2
)
?
1
:
real_ch
;
int
classes
[
MAX_CHANNELS
][
NUM_RESIDUE_PARTITIONS
];
int
classes
[
MAX_CHANNELS
][
NUM_RESIDUE_PARTITIONS
];
int
classwords
=
venc
->
codebooks
[
rc
->
classbook
].
ndimen
t
ions
;
int
classwords
=
venc
->
codebooks
[
rc
->
classbook
].
ndimen
s
ions
;
assert
(
rc
->
type
==
2
);
assert
(
rc
->
type
==
2
);
assert
(
real_ch
==
2
);
assert
(
real_ch
==
2
);
...
@@ -916,15 +916,15 @@ static int residue_encode(vorbis_enc_context *venc, vorbis_enc_residue *rc,
...
@@ -916,15 +916,15 @@ static int residue_encode(vorbis_enc_context *venc, vorbis_enc_residue *rc,
continue
;
continue
;
assert
(
rc
->
type
==
0
||
rc
->
type
==
2
);
assert
(
rc
->
type
==
0
||
rc
->
type
==
2
);
assert
(
!
(
psize
%
book
->
ndimen
t
ions
));
assert
(
!
(
psize
%
book
->
ndimen
s
ions
));
if
(
rc
->
type
==
0
)
{
if
(
rc
->
type
==
0
)
{
for
(
k
=
0
;
k
<
psize
;
k
+=
book
->
ndimen
t
ions
)
{
for
(
k
=
0
;
k
<
psize
;
k
+=
book
->
ndimen
s
ions
)
{
int
l
;
int
l
;
float
*
a
=
put_vector
(
book
,
pb
,
&
buf
[
k
]);
float
*
a
=
put_vector
(
book
,
pb
,
&
buf
[
k
]);
if
(
!
a
)
if
(
!
a
)
return
AVERROR
(
EINVAL
);
return
AVERROR
(
EINVAL
);
for
(
l
=
0
;
l
<
book
->
ndimen
t
ions
;
l
++
)
for
(
l
=
0
;
l
<
book
->
ndimen
s
ions
;
l
++
)
buf
[
k
+
l
]
-=
a
[
l
];
buf
[
k
+
l
]
-=
a
[
l
];
}
}
}
else
{
}
else
{
...
@@ -932,10 +932,10 @@ static int residue_encode(vorbis_enc_context *venc, vorbis_enc_residue *rc,
...
@@ -932,10 +932,10 @@ static int residue_encode(vorbis_enc_context *venc, vorbis_enc_residue *rc,
a1
=
(
s
%
real_ch
)
*
samples
;
a1
=
(
s
%
real_ch
)
*
samples
;
b1
=
s
/
real_ch
;
b1
=
s
/
real_ch
;
s
=
real_ch
*
samples
;
s
=
real_ch
*
samples
;
for
(
k
=
0
;
k
<
psize
;
k
+=
book
->
ndimen
t
ions
)
{
for
(
k
=
0
;
k
<
psize
;
k
+=
book
->
ndimen
s
ions
)
{
int
dim
,
a2
=
a1
,
b2
=
b1
;
int
dim
,
a2
=
a1
,
b2
=
b1
;
float
vec
[
MAX_CODEBOOK_DIM
],
*
pv
=
vec
;
float
vec
[
MAX_CODEBOOK_DIM
],
*
pv
=
vec
;
for
(
dim
=
book
->
ndimen
t
ions
;
dim
--
;
)
{
for
(
dim
=
book
->
ndimen
s
ions
;
dim
--
;
)
{
*
pv
++
=
coeffs
[
a2
+
b2
];
*
pv
++
=
coeffs
[
a2
+
b2
];
if
((
a2
+=
samples
)
==
s
)
{
if
((
a2
+=
samples
)
==
s
)
{
a2
=
0
;
a2
=
0
;
...
@@ -945,7 +945,7 @@ static int residue_encode(vorbis_enc_context *venc, vorbis_enc_residue *rc,
...
@@ -945,7 +945,7 @@ static int residue_encode(vorbis_enc_context *venc, vorbis_enc_residue *rc,
pv
=
put_vector
(
book
,
pb
,
vec
);
pv
=
put_vector
(
book
,
pb
,
vec
);
if
(
!
pv
)
if
(
!
pv
)
return
AVERROR
(
EINVAL
);
return
AVERROR
(
EINVAL
);
for
(
dim
=
book
->
ndimen
t
ions
;
dim
--
;
)
{
for
(
dim
=
book
->
ndimen
s
ions
;
dim
--
;
)
{
coeffs
[
a1
+
b1
]
-=
*
pv
++
;
coeffs
[
a1
+
b1
]
-=
*
pv
++
;
if
((
a1
+=
samples
)
==
s
)
{
if
((
a1
+=
samples
)
==
s
)
{
a1
=
0
;
a1
=
0
;
...
@@ -1099,7 +1099,7 @@ static av_cold int vorbis_encode_close(AVCodecContext *avccontext)
...
@@ -1099,7 +1099,7 @@ static av_cold int vorbis_encode_close(AVCodecContext *avccontext)
av_freep
(
&
venc
->
codebooks
[
i
].
lens
);
av_freep
(
&
venc
->
codebooks
[
i
].
lens
);
av_freep
(
&
venc
->
codebooks
[
i
].
codewords
);
av_freep
(
&
venc
->
codebooks
[
i
].
codewords
);
av_freep
(
&
venc
->
codebooks
[
i
].
quantlist
);
av_freep
(
&
venc
->
codebooks
[
i
].
quantlist
);
av_freep
(
&
venc
->
codebooks
[
i
].
dimen
t
ions
);
av_freep
(
&
venc
->
codebooks
[
i
].
dimen
s
ions
);
av_freep
(
&
venc
->
codebooks
[
i
].
pow2
);
av_freep
(
&
venc
->
codebooks
[
i
].
pow2
);
}
}
av_freep
(
&
venc
->
codebooks
);
av_freep
(
&
venc
->
codebooks
);
...
...
libavformat/r3d.c
View file @
ffae713a
...
@@ -288,7 +288,7 @@ static int r3d_read_reda(AVFormatContext *s, AVPacket *pkt, Atom *atom)
...
@@ -288,7 +288,7 @@ static int r3d_read_reda(AVFormatContext *s, AVPacket *pkt, Atom *atom)
tmp
=
avio_rb32
(
s
->
pb
);
tmp
=
avio_rb32
(
s
->
pb
);
av_dlog
(
s
,
"packet num %d
\n
"
,
tmp
);
av_dlog
(
s
,
"packet num %d
\n
"
,
tmp
);
tmp
=
avio_rb16
(
s
->
pb
);
// unkown
tmp
=
avio_rb16
(
s
->
pb
);
// unk
n
own
av_dlog
(
s
,
"unknown %d
\n
"
,
tmp
);
av_dlog
(
s
,
"unknown %d
\n
"
,
tmp
);
tmp
=
avio_r8
(
s
->
pb
);
// major version
tmp
=
avio_r8
(
s
->
pb
);
// major version
...
...
tools/lavfi-showfiltfmts.c
View file @
ffae713a
...
@@ -50,7 +50,7 @@ int main(int argc, char **argv)
...
@@ -50,7 +50,7 @@ int main(int argc, char **argv)
}
}
if
(
avfilter_open
(
&
filter_ctx
,
filter
,
NULL
)
<
0
)
{
if
(
avfilter_open
(
&
filter_ctx
,
filter
,
NULL
)
<
0
)
{
fprintf
(
stderr
,
"I
n
possible to open filter with name '%s'
\n
"
,
fprintf
(
stderr
,
"I
m
possible to open filter with name '%s'
\n
"
,
filter_name
);
filter_name
);
return
1
;
return
1
;
}
}
...
...
tools/patcheck
View file @
ffae713a
...
@@ -67,7 +67,7 @@ $EGREP $OPT '^\+ *(const *|)static' $*| $EGREP --color=always '[^=]= *(0|NULL)[^
...
@@ -67,7 +67,7 @@ $EGREP $OPT '^\+ *(const *|)static' $*| $EGREP --color=always '[^=]= *(0|NULL)[^
cat
$TMP
cat
$TMP
hiegrep
'# *ifdef * (HAVE|CONFIG)_'
'ifdefs that should be #if'
$*
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)\b'
'common typos'
$*
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
)\b'
'common typos'
$*
hiegrep
'av_log\( *NULL'
'Missing context in av_log'
$*
hiegrep
'av_log\( *NULL'
'Missing context in av_log'
$*
hiegrep
'[^sn]printf'
'Please use 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