diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2014-02-22 21:05:58 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-02-22 21:06:02 +0100 |
commit | 5367c0be623885eb0fcd0542564150d79d881a1c (patch) | |
tree | bb2a038ef12ee9a02f77fea7129356f5c893f07c /libavresample/avresample.h | |
parent | 55479f42ce60a2e3a5c468b6953ee232110d016b (diff) | |
parent | 7e86c27b4ee9e5a3fbe6cf5249b9d918b2a5e731 (diff) | |
download | ffmpeg-5367c0be623885eb0fcd0542564150d79d881a1c.tar.gz |
Merge commit '7e86c27b4ee9e5a3fbe6cf5249b9d918b2a5e731'
* commit '7e86c27b4ee9e5a3fbe6cf5249b9d918b2a5e731':
lavr: add a function for checking whether AVAudioResampleContext is open
Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavresample/avresample.h')
-rw-r--r-- | libavresample/avresample.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/libavresample/avresample.h b/libavresample/avresample.h index f62e53303d..dc392ad076 100644 --- a/libavresample/avresample.h +++ b/libavresample/avresample.h @@ -172,6 +172,14 @@ AVAudioResampleContext *avresample_alloc_context(void); int avresample_open(AVAudioResampleContext *avr); /** + * Check whether an AVAudioResampleContext is open or closed. + * + * @param avr AVAudioResampleContext to check + * @return 1 if avr is open, 0 if avr is closed. + */ +int avresample_is_open(AVAudioResampleContext *avr); + +/** * Close AVAudioResampleContext. * * This closes the context, but it does not change the parameters. The context |