diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2012-05-19 18:42:11 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2012-05-19 19:23:37 +0200 |
commit | f88f705abcb925cede3ffa392156489956e8c0b9 (patch) | |
tree | da7bcc4cd973091499328a25df51c76a643d8359 /libswresample/swresample.h | |
parent | 7a59964ba9c2e39ccf500ae3e57e77abc9afdfa2 (diff) | |
download | ffmpeg-f88f705abcb925cede3ffa392156489956e8c0b9.tar.gz |
swr: add swr_drop_output()
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libswresample/swresample.h')
-rw-r--r-- | libswresample/swresample.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/libswresample/swresample.h b/libswresample/swresample.h index 61ac2d4317..e027f5619c 100644 --- a/libswresample/swresample.h +++ b/libswresample/swresample.h @@ -30,7 +30,7 @@ #include "libavutil/samplefmt.h" #define LIBSWRESAMPLE_VERSION_MAJOR 0 -#define LIBSWRESAMPLE_VERSION_MINOR 13 +#define LIBSWRESAMPLE_VERSION_MINOR 14 #define LIBSWRESAMPLE_VERSION_MICRO 100 #define LIBSWRESAMPLE_VERSION_INT AV_VERSION_INT(LIBSWRESAMPLE_VERSION_MAJOR, \ @@ -159,6 +159,11 @@ int swr_set_channel_mapping(struct SwrContext *s, const int *channel_map); int swr_set_matrix(struct SwrContext *s, const double *matrix, int stride); /** + * Drops the specified number of output samples. + */ +int swr_drop_output(struct SwrContext *s, int count); + +/** * Injects the specified number of silence samples. */ int swr_inject_silence(struct SwrContext *s, int count); |