Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorClément Bœsch <clement.boesch@smartjog.com>2012-01-11 20:51:57 +0400
committerClément Bœsch <ubitux@gmail.com>2012-01-11 21:14:03 +0400
commit98aafc5bbfa94cee889399d80177bca10ca202aa (patch)
tree49f83453ce3b6d218749ba9f07c2e5370b10bc1a /libavcodec/timecode.c
parent0644cabd7ab60b7384349ddc41262d4f21a084d3 (diff)
timecode: set a fixed buffer size of 16B for tc string.
Diffstat (limited to 'libavcodec/timecode.c')
-rw-r--r--libavcodec/timecode.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/timecode.c b/libavcodec/timecode.c
index 420b276c20..95aed96d9e 100644
--- a/libavcodec/timecode.c
+++ b/libavcodec/timecode.c
@@ -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;
}