comparison armv4l/mpegvideo_armv5te.c @ 8250:cf4d575b1982 libavcodec

Delete unnecessary 'extern' keywords.
author diego
date Wed, 03 Dec 2008 15:23:30 +0000
parents 06acc3ab4bdc
children
comparison
equal deleted inserted replaced
8249:5057047bcc52 8250:cf4d575b1982
21 21
22 #include "libavcodec/avcodec.h" 22 #include "libavcodec/avcodec.h"
23 #include "libavcodec/dsputil.h" 23 #include "libavcodec/dsputil.h"
24 #include "libavcodec/mpegvideo.h" 24 #include "libavcodec/mpegvideo.h"
25 25
26 extern void ff_dct_unquantize_h263_armv5te(DCTELEM *block, int qmul, int qadd, 26 void ff_dct_unquantize_h263_armv5te(DCTELEM *block, int qmul, int qadd, int count);
27 int count);
28 27
29 #ifdef ENABLE_ARM_TESTS 28 #ifdef ENABLE_ARM_TESTS
30 /** 29 /**
31 * h263 dequantizer supplementary function, it is performance critical and needs to 30 * h263 dequantizer supplementary function, it is performance critical and needs to
32 * have optimized implementations for each architecture. Is also used as a reference 31 * have optimized implementations for each architecture. Is also used as a reference