mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-14 05:12:09 +00:00
playback/player: android: Fix compilation
This commit is contained in:
parent
af371bf38e
commit
8ccf31fcf9
2 changed files with 11 additions and 2 deletions
|
@ -3,7 +3,16 @@ LOCAL_PATH := $(call my-dir)
|
|||
include $(CLEAR_VARS)
|
||||
|
||||
LOCAL_MODULE := gstplayer
|
||||
LOCAL_SRC_FILES := player.c ../../lib/gst/player/gstplayer.c ../../lib/gst/player/gstplayer-media-info.c
|
||||
LOCAL_SRC_FILES := \
|
||||
player.c \
|
||||
../../lib/gst/player/gstplayer.c \
|
||||
../../lib/gst/player/gstplayer-signal-dispatcher.c \
|
||||
../../lib/gst/player/gstplayer-video-renderer.c \
|
||||
../../lib/gst/player/gstplayer-media-info.c \
|
||||
../../lib/gst/player/gstplayer-g-main-context-signal-dispatcher.c \
|
||||
../../lib/gst/player/gstplayer-video-overlay-video-renderer.c \
|
||||
../../lib/gst/player/gstplayer-visualization.c
|
||||
|
||||
LOCAL_C_INCLUDES := $(LOCAL_PATH)/../../lib
|
||||
LOCAL_SHARED_LIBRARIES := gstreamer_android
|
||||
LOCAL_LDLIBS := -llog -landroid
|
||||
|
|
|
@ -25,7 +25,7 @@
|
|||
#include <android/native_window.h>
|
||||
#include <android/native_window_jni.h>
|
||||
|
||||
#include "gst/player/gstplayer.h"
|
||||
#include "gst/player/player.h"
|
||||
|
||||
GST_DEBUG_CATEGORY_STATIC (debug_category);
|
||||
#define GST_CAT_DEFAULT debug_category
|
||||
|
|
Loading…
Reference in a new issue