diff options
author | Aurelien Jacobs <aurel@gnuage.org> | 2007-03-13 00:02:55 +0000 |
---|---|---|
committer | Aurelien Jacobs <aurel@gnuage.org> | 2007-03-13 00:02:55 +0000 |
commit | 7fde6331a76ad273e9be746bc7f9b06fd3d66619 (patch) | |
tree | 213c220d56d87f59144dac5b4e88cda0c84842bd /libavformat/matroska.c | |
parent | 25f2b76fdb741316eb1b98fadc5d4062ccec167b (diff) | |
download | ffmpeg-7fde6331a76ad273e9be746bc7f9b06fd3d66619.tar.gz |
calculate default_duration for AAC tracks
Originally committed as revision 8364 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/matroska.c')
-rw-r--r-- | libavformat/matroska.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavformat/matroska.c b/libavformat/matroska.c index b3ea7a056f..d1b76f50f2 100644 --- a/libavformat/matroska.c +++ b/libavformat/matroska.c @@ -2313,6 +2313,7 @@ matroska_read_header (AVFormatContext *s, } else { extradata_size = 2; } + track->default_duration = 1024*1000 / audiotrack->internal_samplerate; } else if (codec_id == CODEC_ID_TTA) { |