Ignore:
Timestamp:
Nov 20, 2006, 9:45:29 PM (18 years ago)
Author:
vladest
Message:

FFMPEG update
significal changes - avi/mpegts/mpegps now handled by ffmpeg demuxer. From my point of view it works much more corrdctly

File:
1 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified trunk/libavformat/avformat.h

    r262 r263  
    3232#define LIBAVFORMAT_IDENT       "Lavf" AV_STRINGIFY(LIBAVFORMAT_VERSION)
    3333
     34#include "config.h"
    3435#include <time.h>
    3536#include <stdio.h>  /* FILE */
    3637#include "avcodec.h"
    37 #include "config.h"
    3838
    3939#include "avio.h"
     
    238238    /**
    239239     * 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!
    240243     * for example if the timebase is 1/90000 and all frames have either
    241244     * approximately 3600 or 1800 timer ticks then r_frame_rate will be 50/1
     
    444447int av_seek_frame_binary(AVFormatContext *s, int stream_index, int64_t target_ts, int flags);
    445448void av_update_cur_dts(AVFormatContext *s, AVStream *ref_st, int64_t timestamp);
     449int64_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 ));
    446450
    447451/* media file output */
Note: See TracChangeset for help on using the changeset viewer.