diff options
author | Rob Sykes <aquegg@yahoo.co.uk> | 2015-06-21 19:45:50 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2015-06-21 23:38:44 +0200 |
commit | c70c6be2259759b75c1b1dc7d68a0cf172f2cab8 (patch) | |
tree | ae34ddb3e282a339264712246fc93f26b5382352 /libswresample/swresample_internal.h | |
parent | 1e7008675b2d930955b0295808ef208d92e5639d (diff) | |
download | ffmpeg-c70c6be2259759b75c1b1dc7d68a0cf172f2cab8.tar.gz |
swresample: soxr implementation for swr_get_out_samples()
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libswresample/swresample_internal.h')
-rw-r--r-- | libswresample/swresample_internal.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libswresample/swresample_internal.h b/libswresample/swresample_internal.h index 7595588f41..6669cbfd70 100644 --- a/libswresample/swresample_internal.h +++ b/libswresample/swresample_internal.h @@ -157,6 +157,7 @@ struct SwrContext { int64_t outpts; ///< output PTS int64_t firstpts; ///< first PTS int drop_output; ///< number of output samples to drop + double delayed_samples_fixup; ///< soxr 0.1.1: needed to fixup delayed_samples after flush has been called. struct AudioConvert *in_convert; ///< input conversion context struct AudioConvert *out_convert; ///< output conversion context |