mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-17 03:35:21 +00:00
androidcamera: Fix some compiler warnings
This commit is contained in:
parent
64b869ea40
commit
acfb1c44a7
1 changed files with 7 additions and 4 deletions
|
@ -294,11 +294,14 @@ gst_ah_camera_on_auto_focus (JNIEnv * env, jclass klass, jboolean success,
|
||||||
}
|
}
|
||||||
|
|
||||||
static JNINativeMethod native_methods[] = {
|
static JNINativeMethod native_methods[] = {
|
||||||
{"gst_ah_camera_on_preview_frame", "([BLandroid/hardware/Camera;JJ)V",
|
{(gchar *) "gst_ah_camera_on_preview_frame",
|
||||||
|
(gchar *) "([BLandroid/hardware/Camera;JJ)V",
|
||||||
(void *) gst_ah_camera_on_preview_frame},
|
(void *) gst_ah_camera_on_preview_frame},
|
||||||
{"gst_ah_camera_on_error", "(ILandroid/hardware/Camera;JJ)V",
|
{(gchar *) "gst_ah_camera_on_error",
|
||||||
|
(gchar *) "(ILandroid/hardware/Camera;JJ)V",
|
||||||
(void *) gst_ah_camera_on_error},
|
(void *) gst_ah_camera_on_error},
|
||||||
{"gst_ah_camera_on_auto_focus", "(ZLandroid/hardware/Camera;JJ)V",
|
{(gchar *) "gst_ah_camera_on_auto_focus",
|
||||||
|
(gchar *) "(ZLandroid/hardware/Camera;JJ)V",
|
||||||
(void *) gst_ah_camera_on_auto_focus}
|
(void *) gst_ah_camera_on_auto_focus}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -2898,7 +2901,7 @@ gst_ahc_parameters_get_supported_preview_fps_range (GstAHCParameters * self)
|
||||||
jintArray range = java_util_iterator_next (env, iterator);
|
jintArray range = java_util_iterator_next (env, iterator);
|
||||||
|
|
||||||
if (range) {
|
if (range) {
|
||||||
jint *fps = malloc (sizeof (jint) * 2);
|
jint *fps = g_new (jint, 2);
|
||||||
|
|
||||||
(*env)->GetIntArrayRegion (env, range, 0, 2, fps);
|
(*env)->GetIntArrayRegion (env, range, 0, 2, fps);
|
||||||
ret = g_list_append (ret, fps);
|
ret = g_list_append (ret, fps);
|
||||||
|
|
Loading…
Reference in a new issue