diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2012-10-26 21:55:37 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2012-10-27 00:26:35 +0200 |
commit | a9d97e1b0af676c82abbf2673c7fdf7e557a363c (patch) | |
tree | c2165276a215c516b7c5a9595d2f56df52c2b3b7 /ffmpeg.h | |
parent | 8766ad9eb1b0b498ec5db824c8c34385e3d6d713 (diff) | |
download | ffmpeg-a9d97e1b0af676c82abbf2673c7fdf7e557a363c.tar.gz |
ffmpeg: use av_rescale_delta() on the audio filter input
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'ffmpeg.h')
-rw-r--r-- | ffmpeg.h | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -217,6 +217,9 @@ typedef struct InputStream { int64_t next_pts; ///< synthetic pts for the next decode frame (in AV_TIME_BASE units) int64_t pts; ///< current pts of the decoded frame (in AV_TIME_BASE units) int wrap_correction_done; + + int64_t filter_in_rescale_delta_last; + double ts_scale; int is_start; /* is 1 at the start and after a discontinuity */ int saw_first_ts; |