mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-21 07:46:38 +00:00
legacyresample: Include _stdint.h for int16_t and friends
This commit is contained in:
parent
960deb823f
commit
5e8a24274f
2 changed files with 4 additions and 1 deletions
|
@ -28,6 +28,8 @@
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <limits.h>
|
#include <limits.h>
|
||||||
|
|
||||||
|
#include "_stdint.h"
|
||||||
|
|
||||||
#include "resample.h"
|
#include "resample.h"
|
||||||
#include "buffer.h"
|
#include "buffer.h"
|
||||||
#include "debug.h"
|
#include "debug.h"
|
||||||
|
|
|
@ -28,11 +28,12 @@
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <limits.h>
|
#include <limits.h>
|
||||||
|
|
||||||
|
#include "_stdint.h"
|
||||||
|
|
||||||
#include "resample.h"
|
#include "resample.h"
|
||||||
#include "buffer.h"
|
#include "buffer.h"
|
||||||
#include "debug.h"
|
#include "debug.h"
|
||||||
|
|
||||||
|
|
||||||
static double
|
static double
|
||||||
resample_sinc_window (double x, double halfwidth, double scale)
|
resample_sinc_window (double x, double halfwidth, double scale)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue