Searched refs:max_ts (Results 26 - 33 of 33) sorted by relevance

12

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/include/libavformat/
H A Davformat.h387 * can be presented successfully will be closest to ts and within min/max_ts.
390 int (*read_seek2)(struct AVFormatContext *s, int stream_index, int64_t min_ts, int64_t ts, int64_t max_ts, int flags);
948 * can be presented successfully will be closest to ts and within min/max_ts.
963 * @param max_ts largest acceptable timestamp
971 int avformat_seek_file(AVFormatContext *s, int stream_index, int64_t min_ts, int64_t ts, int64_t max_ts, int flags);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavformat/
H A Davformat.h671 * can be presented successfully will be closest to ts and within min/max_ts.
674 int (*read_seek2)(struct AVFormatContext *s, int stream_index, int64_t min_ts, int64_t ts, int64_t max_ts, int flags);
2095 * can be presented successfully will be closest to ts and within min/max_ts.
2112 * @param max_ts largest acceptable timestamp
2120 int avformat_seek_file(AVFormatContext *s, int stream_index, int64_t min_ts, int64_t ts, int64_t max_ts, int flags);
H A Dutils.c2242 int64_t min_ts = INT64_MIN, max_ts = INT64_MAX; local
2244 max_ts = timestamp;
2247 return avformat_seek_file(s, stream_index, min_ts, timestamp, max_ts,
2260 int64_t ts, int64_t max_ts, int flags)
2262 if (min_ts > ts || max_ts < ts)
2281 max_ts = av_rescale_rnd(max_ts, time_base.den,
2287 ts, max_ts, flags);
2301 int dir = (ts - (uint64_t)min_ts > (uint64_t)max_ts - ts ? AVSEEK_FLAG_BACKWARD : 0);
2303 if (ret<0 && ts != min_ts && max_ts !
2259 avformat_seek_file(AVFormatContext *s, int stream_index, int64_t min_ts, int64_t ts, int64_t max_ts, int flags) argument
[all...]
H A Dsbgdec.c1464 int64_t min_ts, int64_t ts, int64_t max_ts, int flags)
1463 sbg_read_seek2(AVFormatContext *avf, int stream_index, int64_t min_ts, int64_t ts, int64_t max_ts, int flags) argument
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavformat/
H A Davformat.h560 * can be presented successfully will be closest to ts and within min/max_ts.
563 int (*read_seek2)(struct AVFormatContext *s, int stream_index, int64_t min_ts, int64_t ts, int64_t max_ts, int flags);
1524 * can be presented successfully will be closest to ts and within min/max_ts.
1539 * @param max_ts largest acceptable timestamp
1547 int avformat_seek_file(AVFormatContext *s, int stream_index, int64_t min_ts, int64_t ts, int64_t max_ts, int flags);
H A Dflvdec.c642 int64_t min_ts, int64_t ts, int64_t max_ts, int flags)
646 if (ts - min_ts > (uint64_t)(max_ts - ts)) flags |= AVSEEK_FLAG_BACKWARD;
H A Dmpegts.c2097 int64_t max_ts,
2110 flags |= (target_ts - min_ts > (uint64_t)(max_ts - target_ts)) ?
2147 min_ts, target_ts, max_ts,
2093 read_seek2(AVFormatContext *s, int stream_index, int64_t min_ts, int64_t target_ts, int64_t max_ts, int flags) argument
H A Dutils.c1840 int avformat_seek_file(AVFormatContext *s, int stream_index, int64_t min_ts, int64_t ts, int64_t max_ts, int flags) argument
1842 if(min_ts > ts || max_ts < ts)
1847 return s->iformat->read_seek2(s, stream_index, min_ts, ts, max_ts, flags);
1857 return av_seek_frame(s, stream_index, ts, flags | ((uint64_t)ts - min_ts > (uint64_t)max_ts - ts ? AVSEEK_FLAG_BACKWARD : 0));

Completed in 228 milliseconds

12