mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-24 02:31:03 +00:00
build: fprintf, sprintf, sscanf need stdio.h
This commit is contained in:
parent
30a4d82edd
commit
d125baa8c5
2 changed files with 7 additions and 4 deletions
|
@ -37,6 +37,7 @@
|
||||||
#include <gst/riff/riff-media.h>
|
#include <gst/riff/riff-media.h>
|
||||||
#include <gst/tag/tag.h>
|
#include <gst/tag/tag.h>
|
||||||
#include <gst/gst-i18n-plugin.h>
|
#include <gst/gst-i18n-plugin.h>
|
||||||
|
#include <stdio.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
|
|
||||||
|
|
|
@ -56,6 +56,8 @@
|
||||||
#include "rdtmanager.h"
|
#include "rdtmanager.h"
|
||||||
#include "rdtjitterbuffer.h"
|
#include "rdtjitterbuffer.h"
|
||||||
|
|
||||||
|
#include <stdio.h>
|
||||||
|
|
||||||
GST_DEBUG_CATEGORY_STATIC (rdtmanager_debug);
|
GST_DEBUG_CATEGORY_STATIC (rdtmanager_debug);
|
||||||
#define GST_CAT_DEFAULT (rdtmanager_debug)
|
#define GST_CAT_DEFAULT (rdtmanager_debug)
|
||||||
|
|
||||||
|
@ -371,8 +373,8 @@ gst_rdt_manager_marshal_BOXED__UINT_UINT (GClosure * closure,
|
||||||
data2 = closure->data;
|
data2 = closure->data;
|
||||||
}
|
}
|
||||||
callback =
|
callback =
|
||||||
(GMarshalFunc_BOXED__UINT_UINT) (marshal_data ? marshal_data : cc->
|
(GMarshalFunc_BOXED__UINT_UINT) (marshal_data ? marshal_data :
|
||||||
callback);
|
cc->callback);
|
||||||
|
|
||||||
v_return = callback (data1,
|
v_return = callback (data1,
|
||||||
g_marshal_value_peek_uint (param_values + 1),
|
g_marshal_value_peek_uint (param_values + 1),
|
||||||
|
@ -404,8 +406,8 @@ gst_rdt_manager_marshal_VOID__UINT_UINT (GClosure * closure,
|
||||||
data2 = closure->data;
|
data2 = closure->data;
|
||||||
}
|
}
|
||||||
callback =
|
callback =
|
||||||
(GMarshalFunc_VOID__UINT_UINT) (marshal_data ? marshal_data : cc->
|
(GMarshalFunc_VOID__UINT_UINT) (marshal_data ? marshal_data :
|
||||||
callback);
|
cc->callback);
|
||||||
|
|
||||||
callback (data1,
|
callback (data1,
|
||||||
g_marshal_value_peek_uint (param_values + 1),
|
g_marshal_value_peek_uint (param_values + 1),
|
||||||
|
|
Loading…
Reference in a new issue