summaryrefslogtreecommitdiff
path: root/libavresample/avresample-test.c
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2012-10-05 06:56:00 +0200
committerAnton Khirnov <anton@khirnov.net>2012-10-05 13:49:44 +0200
commite7ba5b1de063e9b1de441b0d1c5708857f739fa5 (patch)
tree05490f4e375f626b667dfdb230d23266e39cdb0b /libavresample/avresample-test.c
parent30223b3bf2ab1c55499d3d52a244221d24fcc784 (diff)
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/avresample-test.c')
-rw-r--r--libavresample/avresample-test.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavresample/avresample-test.c b/libavresample/avresample-test.c
index 0d4f2df37c..ab49e489cd 100644
--- a/libavresample/avresample-test.c
+++ b/libavresample/avresample-test.c
@@ -305,8 +305,8 @@ int main(int argc, char **argv)
goto end;
}
- ret = avresample_convert(s, (void **)out_data, out_linesize, out_rate * 6,
- (void **) in_data, in_linesize, in_rate * 6);
+ ret = avresample_convert(s, out_data, out_linesize, out_rate * 6,
+ in_data, in_linesize, in_rate * 6);
if (ret < 0) {
char errbuf[256];
av_strerror(ret, errbuf, sizeof(errbuf));