diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2004-10-18 09:43:39 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2004-10-18 09:43:39 +0000 |
commit | 595bf4ef63fc9a4d863b5ecc53605640301f2273 (patch) | |
tree | b7dddab15a994a4ea2256c94d55ce95fe7526588 /libavformat/au.c | |
parent | 15862411e696ffab99821e6204f48806d1b34ead (diff) | |
download | ffmpeg-595bf4ef63fc9a4d863b5ecc53605640301f2273.tar.gz |
set correct timebase
Originally committed as revision 3607 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/au.c')
-rw-r--r-- | libavformat/au.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavformat/au.c b/libavformat/au.c index 6ce326f57a..1721902623 100644 --- a/libavformat/au.c +++ b/libavformat/au.c @@ -148,6 +148,7 @@ static int au_read_header(AVFormatContext *s, st->codec.codec_id = codec; st->codec.channels = channels; st->codec.sample_rate = rate; + av_set_pts_info(st, 64, 1, rate); return 0; } |