diff options
author | Anton Khirnov <anton@khirnov.net> | 2011-10-17 08:58:50 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2011-10-20 20:57:23 +0200 |
commit | 1fa395e471d563166f3fe3071fce8148e27679a8 (patch) | |
tree | 134da128707ce6c0a1524691a48a2312552d961b /libavformat/internal.h | |
parent | 68d3aec819138183cedb11cd2783a830bc3a3866 (diff) | |
download | ffmpeg-1fa395e471d563166f3fe3071fce8148e27679a8.tar.gz |
lavf: use avpriv_ prefix for ff_new_chapter().
It's used in libavdevice.
Diffstat (limited to 'libavformat/internal.h')
-rw-r--r-- | libavformat/internal.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavformat/internal.h b/libavformat/internal.h index 8440e6bd0a..9ef9d64051 100644 --- a/libavformat/internal.h +++ b/libavformat/internal.h @@ -225,8 +225,8 @@ int ff_add_index_entry(AVIndexEntry **index_entries, * * @return AVChapter or NULL on error */ -AVChapter *ff_new_chapter(AVFormatContext *s, int id, AVRational time_base, - int64_t start, int64_t end, const char *title); +AVChapter *avpriv_new_chapter(AVFormatContext *s, int id, AVRational time_base, + int64_t start, int64_t end, const char *title); /** * Ensure the index uses less memory than the maximum specified in |