diff options
author | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2021-04-14 00:35:37 +0200 |
---|---|---|
committer | James Almer <jamrial@gmail.com> | 2021-04-27 10:43:10 -0300 |
commit | e83717e63eab1f1b78dc0990e5b8e927097fca29 (patch) | |
tree | d3398f8f2ea1548188300fa4d939317f8a46ff9d /libavformat/internal.h | |
parent | 0a071f7124beaf0929f772a8618ac1b6c17b0222 (diff) | |
download | ffmpeg-e83717e63eab1f1b78dc0990e5b8e927097fca29.tar.gz |
avformat: Switch AVChapter.id to 64bits
Announced in e318438f2f30525d8baca2b5683aa9898d0c56f7.
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Signed-off-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'libavformat/internal.h')
-rw-r--r-- | libavformat/internal.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/libavformat/internal.h b/libavformat/internal.h index a6987619f7..7d0eab44ac 100644 --- a/libavformat/internal.h +++ b/libavformat/internal.h @@ -579,11 +579,7 @@ void ff_configure_buffers_for_index(AVFormatContext *s, int64_t time_tolerance); * * @return AVChapter or NULL on error */ -#if FF_API_CHAPTER_ID_INT -AVChapter *avpriv_new_chapter(AVFormatContext *s, int id, AVRational time_base, -#else AVChapter *avpriv_new_chapter(AVFormatContext *s, int64_t id, AVRational time_base, -#endif int64_t start, int64_t end, const char *title); /** |