summaryrefslogtreecommitdiff
path: root/libavutil/timecode.h
diff options
context:
space:
mode:
authorMarton Balint <cus@passwd.hu>2020-09-05 22:45:52 +0200
committerMarton Balint <cus@passwd.hu>2020-12-03 18:32:13 +0100
commit2d90d51c561c2e4c36a00d1ba666adee5028663c (patch)
treec0b92dfa56d9d47f2bdf1aaf0e8f40bc890645bc /libavutil/timecode.h
parent53b4550bddfcef65d770ec81cc86a1a6ba12c830 (diff)
avutil/timecode: allow drop frame timecodes for multiples of 30000/1001 fps
Signed-off-by: Marton Balint <cus@passwd.hu>
Diffstat (limited to 'libavutil/timecode.h')
-rw-r--r--libavutil/timecode.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavutil/timecode.h b/libavutil/timecode.h
index f9471a6e38..697e61180b 100644
--- a/libavutil/timecode.h
+++ b/libavutil/timecode.h
@@ -49,9 +49,9 @@ typedef struct {
* Adjust frame number for NTSC drop frame time code.
*
* @param framenum frame number to adjust
- * @param fps frame per second, 30 or 60
+ * @param fps frame per second, multiples of 30
* @return adjusted frame number
- * @warning adjustment is only valid in NTSC 29.97 and 59.94
+ * @warning adjustment is only valid for multiples of NTSC 29.97
*/
int av_timecode_adjust_ntsc_framenum2(int framenum, int fps);