diff options
Diffstat (limited to 'gst/rtp')
-rw-r--r-- | gst/rtp/gstrtpL16depay.c | 2 | ||||
-rw-r--r-- | gst/rtp/gstrtpmp4gdepay.c | 3 | ||||
-rw-r--r-- | gst/rtp/gstrtpspeexdepay.c | 2 |
3 files changed, 6 insertions, 1 deletions
diff --git a/gst/rtp/gstrtpL16depay.c b/gst/rtp/gstrtpL16depay.c index fb753b75..2a5a4b71 100644 --- a/gst/rtp/gstrtpL16depay.c +++ b/gst/rtp/gstrtpL16depay.c @@ -20,7 +20,9 @@ #ifdef HAVE_CONFIG_H #include "config.h" #endif + #include <string.h> +#include <stdlib.h> #include "gstrtpL16depay.h" diff --git a/gst/rtp/gstrtpmp4gdepay.c b/gst/rtp/gstrtpmp4gdepay.c index 403412b5..c9e2d453 100644 --- a/gst/rtp/gstrtpmp4gdepay.c +++ b/gst/rtp/gstrtpmp4gdepay.c @@ -21,9 +21,10 @@ # include "config.h" #endif +#include <string.h> +#include <stdlib.h> #include <gst/rtp/gstrtpbuffer.h> -#include <string.h> #include "gstrtpmp4gdepay.h" GST_DEBUG_CATEGORY_STATIC (rtpmp4gdepay_debug); diff --git a/gst/rtp/gstrtpspeexdepay.c b/gst/rtp/gstrtpspeexdepay.c index 833b029f..c18c5e22 100644 --- a/gst/rtp/gstrtpspeexdepay.c +++ b/gst/rtp/gstrtpspeexdepay.c @@ -22,7 +22,9 @@ #endif #include <string.h> +#include <stdlib.h> #include <gst/rtp/gstrtpbuffer.h> + #include "gstrtpspeexdepay.h" /* elementfactory information */ |