diff options
author | Hendrik Leppkes <h.leppkes@gmail.com> | 2016-01-02 10:13:58 +0100 |
---|---|---|
committer | Hendrik Leppkes <h.leppkes@gmail.com> | 2016-01-02 10:13:58 +0100 |
commit | d1262262de8402109cd5f1d6c4971d956c99f11e (patch) | |
tree | 9d458cf4ce187b5f9d64267994945c070ab647aa /libavresample/avresample.h | |
parent | b966a403dd80604bb7dbb9ee6ec331ade0e84953 (diff) | |
parent | cc4c24208159200b7aff5b5c313903c7f23fa345 (diff) | |
download | ffmpeg-d1262262de8402109cd5f1d6c4971d956c99f11e.tar.gz |
Merge commit 'cc4c24208159200b7aff5b5c313903c7f23fa345'
* commit 'cc4c24208159200b7aff5b5c313903c7f23fa345':
avresample: Mark avresample_buffer() as pointer to const
Merged-by: Hendrik Leppkes <h.leppkes@gmail.com>
Diffstat (limited to 'libavresample/avresample.h')
-rw-r--r-- | libavresample/avresample.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/libavresample/avresample.h b/libavresample/avresample.h index 2431bddcc6..1c2bce841e 100644 --- a/libavresample/avresample.h +++ b/libavresample/avresample.h @@ -377,8 +377,9 @@ int avresample_get_out_samples(AVAudioResampleContext *avr, int in_nb_samples); * output FIFO */ int avresample_convert(AVAudioResampleContext *avr, uint8_t **output, - int out_plane_size, int out_samples, uint8_t **input, - int in_plane_size, int in_samples); + int out_plane_size, int out_samples, + uint8_t * const *input, int in_plane_size, + int in_samples); /** * Return the number of samples currently in the resampling delay buffer. |