summaryrefslogtreecommitdiff
path: root/libavutil/timecode.c
diff options
context:
space:
mode:
Diffstat (limited to 'libavutil/timecode.c')
-rw-r--r--libavutil/timecode.c11
1 files changed, 0 insertions, 11 deletions
diff --git a/libavutil/timecode.c b/libavutil/timecode.c
index fcbd00d660..77d828d56f 100644
--- a/libavutil/timecode.c
+++ b/libavutil/timecode.c
@@ -31,17 +31,6 @@
#include "log.h"
#include "error.h"
-#ifdef FF_API_OLD_TC_ADJUST_FRAMENUM
-int av_timecode_adjust_ntsc_framenum(int framenum)
-{
- /* only works for NTSC 29.97 */
- int d = framenum / 17982;
- int m = framenum % 17982;
- //if (m < 2) m += 2; /* not needed since -2,-1 / 1798 in C returns 0 */
- return framenum + 18 * d + 2 * ((m - 2) / 1798);
-}
-#endif
-
int av_timecode_adjust_ntsc_framenum2(int framenum, int fps)
{
/* only works for NTSC 29.97 and 59.94 */