Skip to content
Snippets Groups Projects
Commit 9d89d1d4 authored by Michael Niedermayer's avatar Michael Niedermayer
Browse files

swr/resample: mark mm_flags as potentially unused


They are unused when asm is disabled

Signed-off-by: default avatarMichael Niedermayer <michaelni@gmx.at>
parent bd397726
No related branches found
No related tags found
No related merge requests found
...@@ -419,7 +419,7 @@ int swr_set_compensation(struct SwrContext *s, int sample_delta, int compensatio ...@@ -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 swri_multiple_resample(ResampleContext *c, AudioData *dst, int dst_size, AudioData *src, int src_size, int *consumed){
int i, ret= -1; int i, ret= -1;
int mm_flags = av_get_cpu_flags(); int av_unused mm_flags = av_get_cpu_flags();
int need_emms= 0; int need_emms= 0;
for(i=0; i<dst->ch_count; i++){ for(i=0; i<dst->ch_count; i++){
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment