]> git.sesse.net Git - ffmpeg/commit
avconv: Set audio filter time base to the sample rate
authorMartin Storsjö <martin@martin.st>
Sat, 30 Jun 2012 08:26:11 +0000 (11:26 +0300)
committerMartin Storsjö <martin@martin.st>
Thu, 5 Jul 2012 06:57:04 +0000 (09:57 +0300)
commit715129cdc409499245fc9519da3db1436b660d3d
treeca6bf41ccce8d83400c830ee4e4593691d93bd77
parent07eeeb1d4fa6dea0fb3ad7cd11859db760a76528
avconv: Set audio filter time base to the sample rate

If the output frame size is smaller than the input sample rate,
and the input stream time base corresponds exactly to the input
frame size (getting input packet timestamps like 0, 1, 2, 3, 4 etc),
the output timestamps from the filter will be like
0, 1, 2, 3, 4, 4, 5 ..., leadning to non-monotone timestamps later.

A concrete example is input mp3 data having frame sizes of 1152
samples, transcoded to aac with 1024 sample frames.

By setting the audio filter time base to the sample rate, we will
get sensible timestamps for all output packets, regardless of
the ratio between the input and output frame sizes.

Signed-off-by: Martin Storsjö <martin@martin.st>
avconv.c