diff options
author | Roman Shaposhnik <roman@shaposhnik.org> | 2003-07-12 07:37:05 +0000 |
---|---|---|
committer | Roman Shaposhnik <roman@shaposhnik.org> | 2003-07-12 07:37:05 +0000 |
commit | 445f1b83ad8dab3100f7182abf4bf48ca10175cc (patch) | |
tree | 68f52eb3085e5c7fadda602c87aa2014b333b444 /libavformat/avformat.h | |
parent | 1bc1cfdddf7ab8ef50d0fc888808d6b609eb5d8d (diff) | |
download | ffmpeg-445f1b83ad8dab3100f7182abf4bf48ca10175cc.tar.gz |
* First round of AV sync fixes.
* -r now does the right thing.
* frame rate and frame sizes now share same abbv. table and you
can do -r ntsc as well as -s ntsc
Originally committed as revision 2035 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/avformat.h')
-rw-r--r-- | libavformat/avformat.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavformat/avformat.h b/libavformat/avformat.h index 052d642b96..15edc9001c 100644 --- a/libavformat/avformat.h +++ b/libavformat/avformat.h @@ -408,6 +408,7 @@ void dump_format(AVFormatContext *ic, const char *url, int is_output); int parse_image_size(int *width_ptr, int *height_ptr, const char *str); +int parse_frame_rate(int *frame_rate, int *frame_rate_base, const char *arg); int64_t parse_date(const char *datestr, int duration); int64_t av_gettime(void); |