1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2024-12-23 12:43:46 +02:00

cosmetics: Fix test program warnings.

Originally committed as revision 17849 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Diego Biurrun 2009-03-06 00:55:50 +00:00
parent 5a92cc663c
commit 6d16718e5d

View File

@ -74,7 +74,8 @@ double ff_timefilter_update(TimeFilter *self, double system_time, double period)
} }
#ifdef TEST #ifdef TEST
main(){ int main(void)
{
double n0,n1; double n0,n1;
#define SAMPLES 1000 #define SAMPLES 1000
double ideal[SAMPLES]; double ideal[SAMPLES];
@ -118,5 +119,6 @@ main(){
} }
printf("\n"); printf("\n");
} }
return 0;
} }
#endif #endif