mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-13 12:51:16 +00:00
playback/player: Move library around into a proper directory
This commit is contained in:
parent
3352d5aee0
commit
b34e62884c
6 changed files with 8 additions and 8 deletions
|
@ -3,7 +3,7 @@ LOCAL_PATH := $(call my-dir)
|
|||
include $(CLEAR_VARS)
|
||||
|
||||
LOCAL_MODULE := gstplayer
|
||||
LOCAL_SRC_FILES := player.c ../../lib/gstplayer.c
|
||||
LOCAL_SRC_FILES := player.c ../../lib/gst/player/gstplayer.c
|
||||
LOCAL_SHARED_LIBRARIES := gstreamer_android
|
||||
LOCAL_LDLIBS := -llog -landroid
|
||||
include $(BUILD_SHARED_LIBRARY)
|
||||
|
|
|
@ -25,7 +25,7 @@
|
|||
#include <android/native_window.h>
|
||||
#include <android/native_window_jni.h>
|
||||
|
||||
#include "../../lib/gstplayer.h"
|
||||
#include "../../lib/gst/player/gstplayer.h"
|
||||
|
||||
GST_DEBUG_CATEGORY_STATIC (debug_category);
|
||||
#define GST_CAT_DEFAULT debug_category
|
||||
|
|
|
@ -10,11 +10,11 @@ clean:
|
|||
SOURCES = \
|
||||
gst-play.c \
|
||||
gst-play-kb.c \
|
||||
../lib/gstplayer.c
|
||||
../lib/gst/player/gstplayer.c
|
||||
|
||||
HEADERS = \
|
||||
gst-play-kb.h \
|
||||
../lib/gstplayer.h
|
||||
../lib/gst/player/gstplayer.h
|
||||
|
||||
gst-play: $(SOURCES) $(HEADERS)
|
||||
$(CC) -o $@ $(SOURCES) $(CFLAGS) $(LIBS) -I../lib
|
||||
|
|
|
@ -29,7 +29,7 @@
|
|||
#include <math.h>
|
||||
|
||||
#include "gst-play-kb.h"
|
||||
#include "gstplayer.h"
|
||||
#include <gst/player/gstplayer.h>
|
||||
|
||||
#define VOLUME_STEPS 20
|
||||
|
||||
|
|
|
@ -9,10 +9,10 @@ clean:
|
|||
|
||||
SOURCES = \
|
||||
gtk-play.c \
|
||||
../lib/gstplayer.c
|
||||
../lib/gst/player/gstplayer.c
|
||||
|
||||
HEADERS = \
|
||||
../lib/gstplayer.h
|
||||
../lib/gst/player/gstplayer.h
|
||||
|
||||
gtk-play: $(SOURCES) $(HEADERS)
|
||||
$(CC) -o $@ $(SOURCES) $(CFLAGS) $(LIBS) -I../lib
|
||||
|
|
|
@ -14,7 +14,7 @@
|
|||
|
||||
#include <gtk/gtk.h>
|
||||
|
||||
#include "../lib/gstplayer.h"
|
||||
#include <gst/player/gstplayer.h>
|
||||
|
||||
typedef struct
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue