diff options
author | Anton Khirnov <anton@khirnov.net> | 2012-10-05 06:56:00 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2012-10-05 13:49:44 +0200 |
commit | e7ba5b1de063e9b1de441b0d1c5708857f739fa5 (patch) | |
tree | 05490f4e375f626b667dfdb230d23266e39cdb0b /libavresample/audio_data.c | |
parent | 30223b3bf2ab1c55499d3d52a244221d24fcc784 (diff) | |
download | ffmpeg-e7ba5b1de063e9b1de441b0d1c5708857f739fa5.tar.gz |
lavr: change the type of the data buffers to uint8_t**.
This is more consistent with what the rest of Libav does.
This breaks API.
Diffstat (limited to 'libavresample/audio_data.c')
-rw-r--r-- | libavresample/audio_data.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavresample/audio_data.c b/libavresample/audio_data.c index d624ad3796..199a68cb11 100644 --- a/libavresample/audio_data.c +++ b/libavresample/audio_data.c @@ -62,7 +62,7 @@ int ff_audio_data_set_channels(AudioData *a, int channels) return 0; } -int ff_audio_data_init(AudioData *a, void **src, int plane_size, int channels, +int ff_audio_data_init(AudioData *a, uint8_t **src, int plane_size, int channels, int nb_samples, enum AVSampleFormat sample_fmt, int read_only, const char *name) { |