aboutsummaryrefslogtreecommitdiffstats
path: root/libavcodec/timecode.h
diff options
context:
space:
mode:
authorClément Bœsch <clement.boesch@smartjog.com>2012-01-11 17:51:57 +0100
committerClément Bœsch <ubitux@gmail.com>2012-01-11 18:14:03 +0100
commit98aafc5bbfa94cee889399d80177bca10ca202aa (patch)
tree49f83453ce3b6d218749ba9f07c2e5370b10bc1a /libavcodec/timecode.h
parent0644cabd7ab60b7384349ddc41262d4f21a084d3 (diff)
downloadffmpeg-98aafc5bbfa94cee889399d80177bca10ca202aa.tar.gz
timecode: set a fixed buffer size of 16B for tc string.
Diffstat (limited to 'libavcodec/timecode.h')
-rw-r--r--libavcodec/timecode.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/timecode.h b/libavcodec/timecode.h
index 50ea313afa..a2b6b0903b 100644
--- a/libavcodec/timecode.h
+++ b/libavcodec/timecode.h
@@ -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);