diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2011-10-21 00:33:04 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2011-10-21 00:33:04 +0200 |
commit | a911177276d8d600fe79909b15af593dbd57a938 (patch) | |
tree | 15fc12e19914b834589bba032704c032b8ea9843 /libswresample | |
parent | 03e56a2ad932203987ba48678689cf1836a86337 (diff) | |
download | ffmpeg-streaming-a911177276d8d600fe79909b15af593dbd57a938.zip ffmpeg-streaming-a911177276d8d600fe79909b15af593dbd57a938.tar.gz |
swr: Fix assignment discards qualifiers from pointer target type warning.
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libswresample')
-rw-r--r-- | libswresample/swresample_internal.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libswresample/swresample_internal.h b/libswresample/swresample_internal.h index 4c6cf67..3137be6 100644 --- a/libswresample/swresample_internal.h +++ b/libswresample/swresample_internal.h @@ -33,7 +33,7 @@ typedef struct AudioData{ } AudioData; typedef struct SwrContext { //FIXME find unused fields - AVClass *av_class; + const AVClass *av_class; int log_level_offset; void *log_ctx; enum AVSampleFormat in_sample_fmt; |