Commit c0a2390f authored by Rafaël Carré's avatar Rafaël Carré

android: add libvlc specific file

parent 3902c186
...@@ -203,6 +203,7 @@ libvlc_win32_rc.$(OBJEXT): libvlc_win32_rc.rc ...@@ -203,6 +203,7 @@ libvlc_win32_rc.$(OBJEXT): libvlc_win32_rc.rc
EXTRA_libvlccore_la_SOURCES = \ EXTRA_libvlccore_la_SOURCES = \
$(SOURCES_libvlc_darwin) \ $(SOURCES_libvlc_darwin) \
$(SOURCES_libvlc_android) \
$(SOURCES_libvlc_linux) \ $(SOURCES_libvlc_linux) \
$(SOURCES_libvlc_win32) \ $(SOURCES_libvlc_win32) \
$(SOURCES_libvlc_os2) \ $(SOURCES_libvlc_os2) \
...@@ -214,6 +215,9 @@ EXTRA_libvlccore_la_SOURCES = \ ...@@ -214,6 +215,9 @@ EXTRA_libvlccore_la_SOURCES = \
if HAVE_DARWIN if HAVE_DARWIN
libvlccore_la_SOURCES += $(SOURCES_libvlc_darwin) libvlccore_la_SOURCES += $(SOURCES_libvlc_darwin)
else else
if HAVE_ANDROID
libvlccore_la_SOURCES += $(SOURCES_libvlc_android)
else
if HAVE_LINUX if HAVE_LINUX
libvlccore_la_SOURCES += $(SOURCES_libvlc_linux) libvlccore_la_SOURCES += $(SOURCES_libvlc_linux)
else else
...@@ -232,6 +236,7 @@ endif ...@@ -232,6 +236,7 @@ endif
endif endif
endif endif
endif endif
endif
if BUILD_HTTPD if BUILD_HTTPD
libvlccore_la_SOURCES += $(SOURCES_libvlc_httpd) libvlccore_la_SOURCES += $(SOURCES_libvlc_httpd)
endif endif
...@@ -252,6 +257,18 @@ SOURCES_libvlc_darwin = \ ...@@ -252,6 +257,18 @@ SOURCES_libvlc_darwin = \
posix/rand.c \ posix/rand.c \
$(NULL) $(NULL)
SOURCES_libvlc_android = \
android/dirs.c \
posix/filesystem.c \
posix/plugin.c \
posix/thread.c \
posix/timer.c \
posix/linux_cpu.c \
posix/linux_specific.c \
posix/specific.c \
posix/rand.c \
$(NULL)
SOURCES_libvlc_linux = \ SOURCES_libvlc_linux = \
posix/dirs.c \ posix/dirs.c \
posix/filesystem.c \ posix/filesystem.c \
......
/*****************************************************************************
* dirs.c: Android directories configuration
*****************************************************************************
* Copyright © 2012 Rafaël Carré
*
* Authors: Rafaël Carré <funman@videolanorg>
*
* This program is free software; you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation; either version 2.1 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program; if not, write to the Free Software Foundation,
* Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
*****************************************************************************/
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
#include <vlc_common.h>
#include "config/configuration.h"
#include <string.h>
char *config_GetUserDir (vlc_userdir_t type)
{
switch (type)
{
case VLC_DATA_DIR:
return strdup("/sdcard/Android/data/org.videolan.vlc");
case VLC_CACHE_DIR:
return strdup("/sdcard/Android/data/org.videolan.vlc/cache");
case VLC_HOME_DIR:
case VLC_CONFIG_DIR:
return NULL;
case VLC_DESKTOP_DIR:
case VLC_DOWNLOAD_DIR:
case VLC_TEMPLATES_DIR:
case VLC_PUBLICSHARE_DIR:
case VLC_DOCUMENTS_DIR:
case VLC_MUSIC_DIR:
case VLC_PICTURES_DIR:
case VLC_VIDEOS_DIR:
return NULL;
}
return NULL;
}
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment