mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-03 23:16:38 +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)
|
include $(CLEAR_VARS)
|
||||||
|
|
||||||
LOCAL_MODULE := gstplayer
|
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_SHARED_LIBRARIES := gstreamer_android
|
||||||
LOCAL_LDLIBS := -llog -landroid
|
LOCAL_LDLIBS := -llog -landroid
|
||||||
include $(BUILD_SHARED_LIBRARY)
|
include $(BUILD_SHARED_LIBRARY)
|
||||||
|
|
|
@ -25,7 +25,7 @@
|
||||||
#include <android/native_window.h>
|
#include <android/native_window.h>
|
||||||
#include <android/native_window_jni.h>
|
#include <android/native_window_jni.h>
|
||||||
|
|
||||||
#include "../../lib/gstplayer.h"
|
#include "../../lib/gst/player/gstplayer.h"
|
||||||
|
|
||||||
GST_DEBUG_CATEGORY_STATIC (debug_category);
|
GST_DEBUG_CATEGORY_STATIC (debug_category);
|
||||||
#define GST_CAT_DEFAULT debug_category
|
#define GST_CAT_DEFAULT debug_category
|
||||||
|
|
|
@ -10,11 +10,11 @@ clean:
|
||||||
SOURCES = \
|
SOURCES = \
|
||||||
gst-play.c \
|
gst-play.c \
|
||||||
gst-play-kb.c \
|
gst-play-kb.c \
|
||||||
../lib/gstplayer.c
|
../lib/gst/player/gstplayer.c
|
||||||
|
|
||||||
HEADERS = \
|
HEADERS = \
|
||||||
gst-play-kb.h \
|
gst-play-kb.h \
|
||||||
../lib/gstplayer.h
|
../lib/gst/player/gstplayer.h
|
||||||
|
|
||||||
gst-play: $(SOURCES) $(HEADERS)
|
gst-play: $(SOURCES) $(HEADERS)
|
||||||
$(CC) -o $@ $(SOURCES) $(CFLAGS) $(LIBS) -I../lib
|
$(CC) -o $@ $(SOURCES) $(CFLAGS) $(LIBS) -I../lib
|
||||||
|
|
|
@ -29,7 +29,7 @@
|
||||||
#include <math.h>
|
#include <math.h>
|
||||||
|
|
||||||
#include "gst-play-kb.h"
|
#include "gst-play-kb.h"
|
||||||
#include "gstplayer.h"
|
#include <gst/player/gstplayer.h>
|
||||||
|
|
||||||
#define VOLUME_STEPS 20
|
#define VOLUME_STEPS 20
|
||||||
|
|
||||||
|
|
|
@ -9,10 +9,10 @@ clean:
|
||||||
|
|
||||||
SOURCES = \
|
SOURCES = \
|
||||||
gtk-play.c \
|
gtk-play.c \
|
||||||
../lib/gstplayer.c
|
../lib/gst/player/gstplayer.c
|
||||||
|
|
||||||
HEADERS = \
|
HEADERS = \
|
||||||
../lib/gstplayer.h
|
../lib/gst/player/gstplayer.h
|
||||||
|
|
||||||
gtk-play: $(SOURCES) $(HEADERS)
|
gtk-play: $(SOURCES) $(HEADERS)
|
||||||
$(CC) -o $@ $(SOURCES) $(CFLAGS) $(LIBS) -I../lib
|
$(CC) -o $@ $(SOURCES) $(CFLAGS) $(LIBS) -I../lib
|
||||||
|
|
|
@ -14,7 +14,7 @@
|
||||||
|
|
||||||
#include <gtk/gtk.h>
|
#include <gtk/gtk.h>
|
||||||
|
|
||||||
#include "../lib/gstplayer.h"
|
#include <gst/player/gstplayer.h>
|
||||||
|
|
||||||
typedef struct
|
typedef struct
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue