comparison avformat.h @ 6279:111c9026932e libavformat

fix av_seek_frame_binary() documentation read_timestamp() is part of AVInputFormat, not AVCodec
author aurel
date Mon, 19 Jul 2010 14:58:37 +0000
parents 21b8d2334030
children ab5b82b7b8e6
comparison
equal deleted inserted replaced
6278:5f0bde61870e 6279:111c9026932e
1151 int av_add_index_entry(AVStream *st, int64_t pos, int64_t timestamp, 1151 int av_add_index_entry(AVStream *st, int64_t pos, int64_t timestamp,
1152 int size, int distance, int flags); 1152 int size, int distance, int flags);
1153 1153
1154 /** 1154 /**
1155 * Perform a binary search using av_index_search_timestamp() and 1155 * Perform a binary search using av_index_search_timestamp() and
1156 * AVCodec.read_timestamp(). 1156 * AVInputFormat.read_timestamp().
1157 * This is not supposed to be called directly by a user application, 1157 * This is not supposed to be called directly by a user application,
1158 * but by demuxers. 1158 * but by demuxers.
1159 * @param target_ts target timestamp in the time base of the given stream 1159 * @param target_ts target timestamp in the time base of the given stream
1160 * @param stream_index stream number 1160 * @param stream_index stream number
1161 */ 1161 */