[FFmpeg-cvslog] avcodec/fft-test: fix type of cpuflags
Michael Niedermayer
git at videolan.org
Fri Jun 19 02:26:48 CEST 2015
ffmpeg | branch: master | Michael Niedermayer <michaelni at gmx.at> | Fri Jun 19 02:08:06 2015 +0200| [76cc8582fd6f9b122d144023186ef42c2f9a7ca6] | committer: Michael Niedermayer
avcodec/fft-test: fix type of cpuflags
Signed-off-by: Michael Niedermayer <michaelni at gmx.at>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=76cc8582fd6f9b122d144023186ef42c2f9a7ca6
---
libavcodec/fft-test.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/libavcodec/fft-test.c b/libavcodec/fft-test.c
index 7c3eea4..d647fde 100644
--- a/libavcodec/fft-test.c
+++ b/libavcodec/fft-test.c
@@ -285,7 +285,7 @@ int main(int argc, char **argv)
break;
case 'c':
{
- int cpuflags = av_get_cpu_flags();
+ unsigned cpuflags = av_get_cpu_flags();
if (av_parse_cpu_caps(&cpuflags, optarg) < 0)
return 1;
More information about the ffmpeg-cvslog
mailing list