Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-1.1
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-1.1
Commits
7c8b9f86
Commit
7c8b9f86
authored
Jan 04, 2010
by
Jean-Baptiste Kempf
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove qnx modules.
Unmaintained and no maintainer showed up
parent
f5aed5af
Changes
9
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
3 additions
and
1491 deletions
+3
-1491
NEWS
NEWS
+1
-1
configure.ac
configure.ac
+1
-15
modules/LIST
modules/LIST
+0
-1
modules/gui/Modules.am
modules/gui/Modules.am
+1
-2
modules/gui/qnx/Modules.am
modules/gui/qnx/Modules.am
+0
-4
modules/gui/qnx/aout.c
modules/gui/qnx/aout.c
+0
-321
modules/gui/qnx/qnx.c
modules/gui/qnx/qnx.c
+0
-56
modules/gui/qnx/vout.c
modules/gui/qnx/vout.c
+0
-1088
po/POTFILES.in
po/POTFILES.in
+0
-3
No files found.
NEWS
View file @
7c8b9f86
...
...
@@ -99,7 +99,7 @@ Removed modules:
* gtk_main, gtk_main2, gnome_main, gnome_main2 and pda interfaces
* linear_resampler and trivial_resampler are removed. Use the ugly one.
* XvMC accelerated modules
* WinCE
interface
* WinCE
and qnx interfaces
* opie, qte and qte_main
* opengllayer
* cddax. Use cdda instead
...
...
configure.ac
View file @
7c8b9f86
...
...
@@ -2639,7 +2639,7 @@ if test "${enable_screen}" != "no"; then
fi
dnl
dnl ipv6 plugin
- not for QNX yet
dnl ipv6 plugin
dnl
have_ipv6=no
AC_CHECK_FUNCS(inet_pton,[have_ipv6=yes],[
...
...
@@ -4396,19 +4396,6 @@ AM_CONDITIONAL(BUILD_MACOSX_VLC_APP, [test "${enable_macosx_vlc_app}" != "no" &&
(test "${SYS}" = "darwin" || test "${enable_macosx_vlc_app}" = "yes") ])
dnl
dnl QNX RTOS module
dnl
AC_ARG_ENABLE(qnx,
[ --enable-qnx QNX RTOS support (default enabled on QNX RTOS)])
if test "${enable_qnx}" != "no"
then
AC_CHECK_HEADERS(Ph.h, [
VLC_ADD_PLUGIN([qnx])
VLC_ADD_LIBS([qnx],[-lasound -lph])
])
fi
dnl
dnl ncurses module
dnl
...
...
@@ -5168,7 +5155,6 @@ AC_CONFIG_FILES([
modules/gui/hildon/Makefile
modules/gui/minimal_macosx/Makefile
modules/gui/macosx_dialog_provider/Makefile
modules/gui/qnx/Makefile
modules/gui/qt4/Makefile
modules/gui/skins2/Makefile
modules/meta_engine/Makefile
...
...
modules/LIST
View file @
7c8b9f86
...
...
@@ -258,7 +258,6 @@ $Id$
* puzzle: puzzle video filter
* pva: PVA demuxer
* pvr: input module to read from a PVR card
* qnx: QNX RTOS plugin
* qt4: interface module using the cross-platform Qt4 library
* qtcapture: Quicktime Capture
* quartztext: Text renderer using native Mac OS X API
...
...
modules/gui/Modules.am
View file @
7c8b9f86
DIST_SUBDIRS = beos macosx hildon minimal_macosx q
nx q
t4 skins2 macosx_dialog_provider
DIST_SUBDIRS = beos macosx hildon minimal_macosx qt4 skins2 macosx_dialog_provider
SUBDIRS =
if HAVE_BEOS
...
...
@@ -10,7 +10,6 @@ endif
if BUILD_HILDON
SUBDIRS += hildon
endif
SUBDIRS += qnx
if ENABLE_QT4
SUBDIRS += qt4
endif
...
...
modules/gui/qnx/Modules.am
deleted
100644 → 0
View file @
f5aed5af
SOURCES_qnx = \
qnx.c \
aout.c \
vout.c
modules/gui/qnx/aout.c
deleted
100644 → 0
View file @
f5aed5af
This diff is collapsed.
Click to expand it.
modules/gui/qnx/qnx.c
deleted
100644 → 0
View file @
f5aed5af
/*****************************************************************************
* qnx.c : QNX RTOS plugin for vlc
*****************************************************************************
* Copyright (C) 2000, 2001 the VideoLAN team
*
* Authors: Jon Lech Johansen <jon-vl@nanocrew.net>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 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 General Public License for more details.
*
* You should have received a copy of the GNU 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.
*****************************************************************************/
/*****************************************************************************
* Preamble
*****************************************************************************/
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
#include <vlc_common.h>
#include <vlc_plugin.h>
/*****************************************************************************
* External prototypes
******************************************************************************/
int
OpenAudio
(
vlc_object_t
*
);
void
CloseAudio
(
vlc_object_t
*
);
int
OpenVideo
(
vlc_object_t
*
);
void
CloseVideo
(
vlc_object_t
*
);
/*****************************************************************************
* Module descriptor
*****************************************************************************/
vlc_module_begin
()
set_description
(
N_
(
"QNX RTOS video and audio output"
)
)
set_capability
(
"video output"
,
100
)
set_callbacks
(
OpenVideo
,
CloseVideo
)
set_category
(
CAT_INTERFACE
)
set_subcategory
(
SUBCAT_INTERFACE_MAIN
)
add_submodule
()
set_capability
(
"audio output"
,
100
)
set_callbacks
(
OpenAudio
,
CloseAudio
)
vlc_module_end
()
modules/gui/qnx/vout.c
deleted
100644 → 0
View file @
f5aed5af
This diff is collapsed.
Click to expand it.
po/POTFILES.in
View file @
7c8b9f86
...
...
@@ -631,9 +631,6 @@ modules/gui/minimal_macosx/voutagl.m
modules/gui/minimal_macosx/voutgl.h
modules/gui/minimal_macosx/voutgl.m
modules/gui/ncurses.c
modules/gui/qnx/aout.c
modules/gui/qnx/qnx.c
modules/gui/qnx/vout.c
modules/gui/qt4/components/complete_preferences.cpp
modules/gui/qt4/components/complete_preferences.hpp
modules/gui/qt4/components/controller.cpp
...
...
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