summaryrefslogtreecommitdiff
path: root/libswresample
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2012-09-13 18:03:13 +0200
committerMichael Niedermayer <michaelni@gmx.at>2012-09-13 19:31:02 +0200
commit9d89d1d484cde14768ea7eb50bf712c474bd624c (patch)
tree7b750c0a0bb85f80269f139541f68c5bb593f6d2 /libswresample
parentbd3977267ea0bd6d3978d4593e1cd3b3f65788d7 (diff)
swr/resample: mark mm_flags as potentially unused
They are unused when asm is disabled Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libswresample')
-rw-r--r--libswresample/resample.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libswresample/resample.c b/libswresample/resample.c
index 809d847f40..5a82e73875 100644
--- a/libswresample/resample.c
+++ b/libswresample/resample.c
@@ -419,7 +419,7 @@ int swr_set_compensation(struct SwrContext *s, int sample_delta, int compensatio
int swri_multiple_resample(ResampleContext *c, AudioData *dst, int dst_size, AudioData *src, int src_size, int *consumed){
int i, ret= -1;
- int mm_flags = av_get_cpu_flags();
+ int av_unused mm_flags = av_get_cpu_flags();
int need_emms= 0;
for(i=0; i<dst->ch_count; i++){