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
0196bc6f
Commit
0196bc6f
authored
Sep 09, 2012
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
tiff/doubles2str: factor out component_len
Signed-off-by:
Michael Niedermayer
<
michaelni@gmx.at
>
parent
07108caf
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
tiff.c
libavcodec/tiff.c
+3
-2
No files found.
libavcodec/tiff.c
View file @
0196bc6f
...
@@ -207,14 +207,15 @@ static char *doubles2str(double *dp, int count, const char *sep)
...
@@ -207,14 +207,15 @@ static char *doubles2str(double *dp, int count, const char *sep)
{
{
int
i
;
int
i
;
char
*
ap
,
*
ap0
;
char
*
ap
,
*
ap0
;
int
component_len
=
15
+
strlen
(
sep
);
if
(
!
sep
)
sep
=
", "
;
if
(
!
sep
)
sep
=
", "
;
ap
=
av_malloc
(
(
15
+
strlen
(
sep
))
*
count
);
ap
=
av_malloc
(
component_len
*
count
);
if
(
!
ap
)
if
(
!
ap
)
return
NULL
;
return
NULL
;
ap0
=
ap
;
ap0
=
ap
;
ap
[
0
]
=
'\0'
;
ap
[
0
]
=
'\0'
;
for
(
i
=
0
;
i
<
count
;
i
++
)
{
for
(
i
=
0
;
i
<
count
;
i
++
)
{
int
l
=
snprintf
(
ap
,
15
+
strlen
(
sep
)
,
"%f%s"
,
dp
[
i
],
sep
);
int
l
=
snprintf
(
ap
,
component_len
,
"%f%s"
,
dp
[
i
],
sep
);
ap
+=
l
;
ap
+=
l
;
}
}
ap0
[
strlen
(
ap0
)
-
strlen
(
sep
)]
=
'\0'
;
ap0
[
strlen
(
ap0
)
-
strlen
(
sep
)]
=
'\0'
;
...
...
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