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.h
parent0644cabd7ab60b7384349ddc41262d4f21a084d3 (diff)
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);