diff options
author | Anton Khirnov <anton@khirnov.net> | 2011-02-06 15:38:55 +0100 |
---|---|---|
committer | Ronald S. Bultje <rsbultje@gmail.com> | 2011-02-06 16:35:00 -0500 |
commit | 19711af5cdc364f9e02ea8103dd6e1e09dc288a4 (patch) | |
tree | 41bbb517f80264ff1a492d64c4b2ce48916c1263 /libavformat/avformat.h | |
parent | b3190529dfefe3226302b23e76e16c631cde6649 (diff) | |
download | ffmpeg-19711af5cdc364f9e02ea8103dd6e1e09dc288a4.tar.gz |
lavf: move internal functions from avformat.h to internal.h
Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
Diffstat (limited to 'libavformat/avformat.h')
-rw-r--r-- | libavformat/avformat.h | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/libavformat/avformat.h b/libavformat/avformat.h index fd0cdba6dc..675c13c38f 100644 --- a/libavformat/avformat.h +++ b/libavformat/avformat.h @@ -1249,22 +1249,6 @@ AVStream *av_new_stream(AVFormatContext *s, int id); AVProgram *av_new_program(AVFormatContext *s, int id); /** - * Add a new chapter. - * This function is NOT part of the public API - * and should ONLY be used by demuxers. - * - * @param s media file handle - * @param id unique ID for this chapter - * @param start chapter start time in time_base units - * @param end chapter end time in time_base units - * @param title chapter title - * - * @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); - -/** * Set the pts for a given stream. If the new values would be invalid * (<= 0), it leaves the AVStream unchanged. * @@ -1295,15 +1279,6 @@ int av_find_default_stream_index(AVFormatContext *s); int av_index_search_timestamp(AVStream *st, int64_t timestamp, int flags); /** - * Ensure the index uses less memory than the maximum specified in - * AVFormatContext.max_index_size by discarding entries if it grows - * too large. - * This function is not part of the public API and should only be called - * by demuxers. - */ -void ff_reduce_index(AVFormatContext *s, int stream_index); - -/** * Add an index entry into a sorted list. Update the entry if the list * already contains it. * |