cosmetics: Fix test program warnings.

Originally committed as revision 17849 to svn://svn.ffmpeg.org/ffmpeg/trunk
release/0.6
Diego Biurrun 16 years ago
parent 5a92cc663c
commit 6d16718e5d
  1. 4
      libavformat/timefilter.c

@ -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

Loading…
Cancel
Save