Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mpc-hc/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2011-12-03 03:46:46 +0400
committerMichael Niedermayer <michaelni@gmx.at>2011-12-03 03:46:46 +0400
commit12804348f5babf56a315fa01751eea1ffdddf98a (patch)
tree5a2e0fe66d5c469b187fdc7918c12a69938daba4 /libswresample
parentebe4d5adc5a9ab9cd61f873b63099d42383ef117 (diff)
swr-test: drop one const, silence most const qualifer warnings.
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libswresample')
-rw-r--r--libswresample/swresample_test.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libswresample/swresample_test.c b/libswresample/swresample_test.c
index fa7422d7df..d41b964ba4 100644
--- a/libswresample/swresample_test.c
+++ b/libswresample/swresample_test.c
@@ -28,7 +28,7 @@
#define ASSERT_LEVEL 2
-static double get(const uint8_t *a[], int ch, int index, int ch_count, enum AVSampleFormat f){
+static double get(uint8_t *a[], int ch, int index, int ch_count, enum AVSampleFormat f){
const uint8_t *p;
if(av_sample_fmt_is_planar(f)){
f= av_get_alt_sample_fmt(f, 0);