Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-2-2
Commits
e0de50a5
Commit
e0de50a5
authored
Feb 23, 2013
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove old Nokia N900 hacks
These were broken since
6270a4c7
.
parent
30696477
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
2 additions
and
25 deletions
+2
-25
bin/vlc.c
bin/vlc.c
+1
-1
configure.ac
configure.ac
+0
-5
modules/codec/omxil/omxil.c
modules/codec/omxil/omxil.c
+0
-5
modules/text_renderer/freetype.c
modules/text_renderer/freetype.c
+0
-4
src/libvlc-module.c
src/libvlc-module.c
+1
-7
src/posix/thread.c
src/posix/thread.c
+0
-3
No files found.
bin/vlc.c
View file @
e0de50a5
...
...
@@ -241,7 +241,7 @@ int main( int i_argc, const char *ppsz_argv[] )
libvlc_set_user_agent
(
vlc
,
"VLC media player"
,
"VLC/"
PACKAGE_VERSION
);
libvlc_add_intf
(
vlc
,
"hotkeys,none"
);
#if !defined
(HAVE_MAEMO) && !defined
__APPLE__ && !defined (__OS2__)
#if !defined __APPLE__ && !defined (__OS2__)
libvlc_add_intf
(
vlc
,
"globalhotkeys,none"
);
#endif
#ifdef HAVE_DBUS
...
...
configure.ac
View file @
e0de50a5
...
...
@@ -3888,11 +3888,6 @@ AS_IF([test "${enable_gnutls}" != "no"], [
])
AS_IF([test -f "/etc/maemo_version"], [
AC_DEFINE([HAVE_MAEMO], 1, [Define to 1 if building for the Maemo platform.])
])
dnl
dnl Taglib plugin
dnl
...
...
modules/codec/omxil/omxil.c
View file @
e0de50a5
...
...
@@ -836,11 +836,6 @@ static int OpenDecoder( vlc_object_t *p_this )
if
(
0
||
!
GetOmxRole
(
p_dec
->
fmt_in
.
i_codec
,
p_dec
->
fmt_in
.
i_cat
,
false
)
)
return
VLC_EGENERIC
;
#ifdef HAVE_MAEMO
if
(
p_dec
->
fmt_in
.
i_cat
!=
VIDEO_ES
&&
!
p_dec
->
b_force
)
return
VLC_EGENERIC
;
#endif
status
=
OpenGeneric
(
p_this
,
false
);
if
(
status
!=
VLC_SUCCESS
)
return
status
;
...
...
modules/text_renderer/freetype.c
View file @
e0de50a5
...
...
@@ -61,10 +61,6 @@
# define DEFAULT_FAMILY "Times New Roman WT K"
# define DEFAULT_MONOSPACE_FONT_FILE "/psfonts/mtsansdk.ttf"
# define DEFAULT_MONOSPACE_FAMILY "Monotype Sans Duospace WT K"
#elif defined( HAVE_MAEMO )
# define DEFAULT_FONT_FILE "/usr/share/fonts/nokia/nosnb.ttf"
# define DEFAULT_FAMILY "Nokia Sans Bold"
# error Missing monospaced fonts
#elif defined( __ANDROID__ )
# define DEFAULT_FONT_FILE "/system/fonts/DroidSans-Bold.ttf"
# define DEFAULT_FAMILY "Droid Sans Bold"
...
...
src/libvlc-module.c
View file @
e0de50a5
...
...
@@ -1527,13 +1527,7 @@ vlc_module_begin ()
change_safe
()
add_bool
(
"grayscale"
,
0
,
GRAYSCALE_TEXT
,
GRAYSCALE_LONGTEXT
,
true
)
#if defined (HAVE_MAEMO)
# define FULLSCREEN_DEFAULT true
#else
# define FULLSCREEN_DEFAULT false
#endif
add_bool
(
"fullscreen"
,
FULLSCREEN_DEFAULT
,
FULLSCREEN_TEXT
,
FULLSCREEN_LONGTEXT
,
false
)
add_bool
(
"fullscreen"
,
false
,
FULLSCREEN_TEXT
,
FULLSCREEN_LONGTEXT
,
false
)
change_short
(
'f'
)
change_safe
()
add_bool
(
"embedded-video"
,
1
,
EMBEDDED_TEXT
,
EMBEDDED_LONGTEXT
,
...
...
src/posix/thread.c
View file @
e0de50a5
...
...
@@ -828,9 +828,6 @@ int vlc_set_priority (vlc_thread_t th, int priority)
void
vlc_cancel
(
vlc_thread_t
thread_id
)
{
pthread_cancel
(
thread_id
);
#ifdef HAVE_MAEMO
pthread_kill
(
thread_id
,
SIGRTMIN
);
#endif
}
/**
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment