gst/level/gstlevel.c: Use #include <math.h> instead of #include "math.h".

Original commit message from CVS:
* gst/level/gstlevel.c:
Use #include <math.h> instead of #include "math.h".
This commit is contained in:
Sebastian Dröge 2008-01-23 17:05:32 +00:00
parent 23b5b27e1c
commit 8cc6592938
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,8 @@
2008-01-23 Sebastian Dröge <slomo@circular-chaos.org>
* gst/level/gstlevel.c:
Use #include <math.h> instead of #include "math.h".
2008-01-21 Jan Schmidt <Jan.Schmidt@sun.com>
* tests/check/Makefile.am:

View file

@ -79,10 +79,10 @@
#include "config.h"
#endif
#include <string.h>
#include <math.h>
#include <gst/gst.h>
#include <gst/audio/audio.h>
#include "gstlevel.h"
#include "math.h"
GST_DEBUG_CATEGORY_STATIC (level_debug);
#define GST_CAT_DEFAULT level_debug