diff options
author | Stefano Sabatini <stefasab@gmail.com> | 2012-11-04 12:05:30 +0100 |
---|---|---|
committer | Stefano Sabatini <stefasab@gmail.com> | 2012-11-04 18:10:39 +0100 |
commit | 74a50e75a8954bdbf142a93a7bb022d16d93512f (patch) | |
tree | 103a2d1bfcac14e134026ce380791b01c6f1b0fb /libavutil/timecode.h | |
parent | 008ace3524697f75295b57655215ffe6cad6496b (diff) | |
download | ffmpeg-74a50e75a8954bdbf142a93a7bb022d16d93512f.tar.gz |
lavu: drop disabled FF_API_OLD_TC_ADJUST_FRAMENUM code
Diffstat (limited to 'libavutil/timecode.h')
-rw-r--r-- | libavutil/timecode.h | 12 |
1 files changed, 1 insertions, 11 deletions
diff --git a/libavutil/timecode.h b/libavutil/timecode.h index 17d6b95ffd..56e3975fd8 100644 --- a/libavutil/timecode.h +++ b/libavutil/timecode.h @@ -49,16 +49,6 @@ typedef struct { * Adjust frame number for NTSC drop frame time code. * * @param framenum frame number to adjust - * @return adjusted frame number - * @warning adjustment is only valid in NTSC 29.97 - * @deprecated use av_timecode_adjust_ntsc_framenum2 instead - */ -attribute_deprecated int av_timecode_adjust_ntsc_framenum(int framenum); - -/** - * Adjust frame number for NTSC drop frame time code. - * - * @param framenum frame number to adjust * @param fps frame per second, 30 or 60 * @return adjusted frame number * @warning adjustment is only valid in NTSC 29.97 and 59.94 @@ -73,7 +63,7 @@ int av_timecode_adjust_ntsc_framenum2(int framenum, int fps); * @return the SMPTE binary representation * * @note Frame number adjustment is automatically done in case of drop timecode, - * you do NOT have to call av_timecode_adjust_ntsc_framenum(). + * you do NOT have to call av_timecode_adjust_ntsc_framenum2(). * @note The frame number is relative to tc->start. * @note Color frame (CF), binary group flags (BGF) and biphase mark polarity * correction (PC) bits are set to zero. |