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
98aafc5b
Commit
98aafc5b
authored
Jan 11, 2012
by
Clément Bœsch
Committed by
Clément Bœsch
Jan 11, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
timecode: set a fixed buffer size of 16B for tc string.
parent
0644cabd
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
4 deletions
+4
-4
timecode.c
libavcodec/timecode.c
+1
-1
timecode.h
libavcodec/timecode.h
+2
-2
vf_drawtext.c
libavfilter/vf_drawtext.c
+1
-1
No files found.
libavcodec/timecode.c
View file @
98aafc5b
...
...
@@ -91,7 +91,7 @@ char *avpriv_timecode_to_string(char *buf, const struct ff_timecode *tc, unsigne
ss
=
frame_num
/
fps
%
60
;
mm
=
frame_num
/
(
fps
*
60
)
%
60
;
hh
=
frame_num
/
(
fps
*
3600
)
%
24
;
snprintf
(
buf
,
sizeof
(
"hh:mm:ss.ff"
)
,
"%02d:%02d:%02d%c%02d"
,
snprintf
(
buf
,
16
,
"%02d:%02d:%02d%c%02d"
,
hh
,
mm
,
ss
,
tc
->
drop
?
';'
:
':'
,
ff
);
return
buf
;
}
...
...
libavcodec/timecode.h
View file @
98aafc5b
...
...
@@ -67,8 +67,8 @@ uint32_t avpriv_framenum_to_smpte_timecode(unsigned frame, int fps, int drop);
* @param tc Timecode struct pointer
* @param frame Frame id (timecode frame is computed with tc->start+frame)
* @return a pointer to the buf parameter
* @note buf must have enough space to store the timecode representation
*
(sizeof("hh:mm:ss.ff"))
* @note buf must have enough space to store the timecode representation
: 16
*
bytes is the minimum required size.
*/
char
*
avpriv_timecode_to_string
(
char
*
buf
,
const
struct
ff_timecode
*
tc
,
unsigned
frame
);
...
...
libavfilter/vf_drawtext.c
View file @
98aafc5b
...
...
@@ -731,7 +731,7 @@ static int draw_text(AVFilterContext *ctx, AVFilterBufferRef *picref,
#if CONFIG_AVCODEC
if
(
dtext
->
tc
.
str
)
{
char
tcbuf
[
sizeof
(
"hh:mm:ss.ff"
)
];
char
tcbuf
[
16
];
avpriv_timecode_to_string
(
tcbuf
,
&
dtext
->
tc
,
dtext
->
frame_id
++
);
buf
=
av_asprintf
(
"%s%s"
,
dtext
->
text
,
tcbuf
);
}
...
...
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