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
04427182
Commit
04427182
authored
Sep 15, 2013
by
Clément Bœsch
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avcodec: typo fix sepera* → separa*
parent
24678a61
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
5 deletions
+5
-5
jpeg2000dec.c
libavcodec/jpeg2000dec.c
+1
-1
tiff_common.h
libavcodec/tiff_common.h
+4
-4
No files found.
libavcodec/jpeg2000dec.c
View file @
04427182
...
...
@@ -275,7 +275,7 @@ static int get_siz(Jpeg2000DecoderContext *s)
s
->
cdy
[
i
]
=
bytestream2_get_byteu
(
&
s
->
g
);
if
(
!
s
->
cdx
[
i
]
||
s
->
cdx
[
i
]
==
3
||
s
->
cdx
[
i
]
>
4
||
!
s
->
cdy
[
i
]
||
s
->
cdy
[
i
]
==
3
||
s
->
cdy
[
i
]
>
4
)
{
av_log
(
s
->
avctx
,
AV_LOG_ERROR
,
"Invalid sample sep
e
ration %d/%d
\n
"
,
s
->
cdx
[
i
],
s
->
cdy
[
i
]);
av_log
(
s
->
avctx
,
AV_LOG_ERROR
,
"Invalid sample sep
a
ration %d/%d
\n
"
,
s
->
cdx
[
i
],
s
->
cdy
[
i
]);
return
AVERROR_INVALIDDATA
;
}
log2_chroma_wh
|=
s
->
cdy
[
i
]
>>
1
<<
i
*
4
|
s
->
cdx
[
i
]
>>
1
<<
i
*
4
+
2
;
...
...
libavcodec/tiff_common.h
View file @
04427182
...
...
@@ -80,22 +80,22 @@ double ff_tget_double(GetByteContext *gb, int le);
unsigned
ff_tget
(
GetByteContext
*
gb
,
int
type
,
int
le
);
/** Returns an allocated string containing count
* rational values using the given sep
e
rator.
* rational values using the given sep
a
rator.
*/
char
*
ff_trationals2str
(
int
*
rp
,
int
count
,
const
char
*
sep
);
/** Returns an allocated string containing count
* long values using the given sep
e
rator.
* long values using the given sep
a
rator.
*/
char
*
ff_tlongs2str
(
int32_t
*
lp
,
int
count
,
const
char
*
sep
);
/** Returns an allocated string containing count
* double values using the given sep
e
rator.
* double values using the given sep
a
rator.
*/
char
*
ff_tdoubles2str
(
double
*
dp
,
int
count
,
const
char
*
sep
);
/** Returns an allocated string containing count
* short values using the given sep
e
rator.
* short values using the given sep
a
rator.
*/
char
*
ff_tshorts2str
(
int16_t
*
sp
,
int
count
,
const
char
*
sep
);
...
...
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