Changeset 263 for trunk/libavformat/avformat.h
- Timestamp:
- Nov 20, 2006, 9:45:29 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/libavformat/avformat.h ¶
r262 r263 32 32 #define LIBAVFORMAT_IDENT "Lavf" AV_STRINGIFY(LIBAVFORMAT_VERSION) 33 33 34 #include "config.h" 34 35 #include <time.h> 35 36 #include <stdio.h> /* FILE */ 36 37 #include "avcodec.h" 37 #include "config.h"38 38 39 39 #include "avio.h" … … 238 238 /** 239 239 * real base frame rate of the stream. 240 * this is the lowest framerate with which all timestamps can be 241 * represented accurately (its the least common multiple of all 242 * framerates in the stream), Note, this value is just a guess! 240 243 * for example if the timebase is 1/90000 and all frames have either 241 244 * approximately 3600 or 1800 timer ticks then r_frame_rate will be 50/1 … … 444 447 int av_seek_frame_binary(AVFormatContext *s, int stream_index, int64_t target_ts, int flags); 445 448 void av_update_cur_dts(AVFormatContext *s, AVStream *ref_st, int64_t timestamp); 449 int64_t av_gen_search(AVFormatContext *s, int stream_index, int64_t target_ts, int64_t pos_min, int64_t pos_max, int64_t pos_limit, int64_t ts_min, int64_t ts_max, int flags, int64_t *ts_ret, int64_t (*read_timestamp)(struct AVFormatContext *, int , int64_t *, int64_t )); 446 450 447 451 /* media file output */
Note:
See TracChangeset
for help on using the changeset viewer.