Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
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
Commits
1c6ac615
Commit
1c6ac615
authored
Jul 21, 2010
by
Jean-Baptiste Kempf
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' of git.videolan.org:vlc
parents
c1cf203b
a81518d6
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
20 additions
and
16 deletions
+20
-16
Makefile.am
Makefile.am
+1
-1
configure.ac
configure.ac
+8
-12
include/vlc_vout_window.h
include/vlc_vout_window.h
+4
-2
modules/misc/svg.c
modules/misc/svg.c
+1
-1
src/video_output/window.c
src/video_output/window.c
+6
-0
No files found.
Makefile.am
View file @
1c6ac615
...
...
@@ -103,7 +103,7 @@ DISTCHECK_CONFIGURE_FLAGS = \
ACLOCAL_AMFLAGS
=
-I
m4
AUTOMAKE_OPTIONS
=
\
1.
9
\
1.
11
\
-Wall
\
check-news
\
dist-bzip2
\
...
...
configure.ac
View file @
1c6ac615
...
...
@@ -14,7 +14,6 @@ CONFIGURE_LINE="`echo "$0 $ac_configure_args" | sed -e 's/\\\/\\\\\\\/g'`"
CODENAME="Twoflower"
COPYRIGHT_YEARS="1996-2010"
AC_PREREQ(2.59c)
AC_CONFIG_SRCDIR(src/libvlc.c)
AC_CONFIG_AUX_DIR(autotools)
AC_CONFIG_MACRO_DIR(m4)
...
...
@@ -27,13 +26,7 @@ AM_INIT_AUTOMAKE(tar-ustar)
AM_CONFIG_HEADER(config.h)
# Disable with "./configure --disable-silent-rules" or "make V=1"
m4_ifdef([AM_SILENT_RULES], [
AM_SILENT_RULES([yes])
], [
AM_DEFAULT_VERBOSITY=1
AC_SUBST(AM_DEFAULT_VERBOSITY)
])
AM_SILENT_RULES([yes])
dnl Too many people are not aware of maintainer mode:
dnl If you want to use it, you definitely know what you are doing, so
...
...
@@ -2633,8 +2626,7 @@ dnl avcodec decoder/encoder plugin
dnl
AC_ARG_ENABLE(avcodec,
[ --enable-avcodec libavcodec codec (default enabled)])
if test "${enable_avcodec}" != "no"
then
AS_IF([test "${enable_avcodec}" != "no"], [
PKG_CHECK_MODULES(AVCODEC,[libavcodec >= 52.25.0 libavutil],
[
VLC_SAVE_FLAGS
...
...
@@ -2650,7 +2642,9 @@ then
],[
AC_MSG_ERROR([Could not find libavcodec or libavutil. Use --disable-avcodec to ignore this error.])
])
fi
], [
have_avcodec="no"
])
dnl
dnl libva needs avcodec
...
...
@@ -2742,7 +2736,9 @@ dnl avformat demuxer/muxer plugin
dnl
AC_ARG_ENABLE(avformat,
[ --enable-avformat libavformat containers (default enabled)])
[ --enable-avformat libavformat containers (default enabled)],, [
enable_avformat="${have_avcodec}"
])
if test "${enable_avformat}" != "no"
then
PKG_CHECK_MODULES(AVFORMAT,[libavformat > 52.30.0 libavutil],
...
...
include/vlc_vout_window.h
View file @
1c6ac615
...
...
@@ -43,6 +43,7 @@ typedef struct vout_window_sys_t vout_window_sys_t;
enum
{
VOUT_WINDOW_TYPE_XID
,
VOUT_WINDOW_TYPE_HWND
,
VOUT_WINDOW_TYPE_NSOBJECT
,
};
/**
...
...
@@ -88,8 +89,9 @@ struct vout_window_t {
* It must be filled in the open function.
*/
union
{
void
*
hwnd
;
/* Win32 window handle */
uint32_t
xid
;
/* X11 windows ID */
void
*
hwnd
;
/* Win32 window handle */
uint32_t
xid
;
/* X11 windows ID */
void
*
nsobject
;
/* Mac OSX view object */
}
handle
;
/* display server (mandatory) */
...
...
modules/misc/svg.c
View file @
1c6ac615
...
...
@@ -48,7 +48,7 @@
#include <glib.h>
#include <glib/gstdio.h>
#include <glib-object.h>
/* g_object_unref( ) */
#include <librsvg
-2/librsvg
/rsvg.h>
#include <librsvg/rsvg.h>
typedef
struct
svg_rendition_t
svg_rendition_t
;
...
...
src/video_output/window.c
View file @
1c6ac615
...
...
@@ -63,6 +63,12 @@ vout_window_t *vout_window_New(vlc_object_t *obj,
type
=
"vout window hwnd"
;
window
->
handle
.
hwnd
=
NULL
;
break
;
#endif
#ifdef __APPLE__
case
VOUT_WINDOW_TYPE_NSOBJECT
:
type
=
"vout window nsobject"
;
window
->
handle
.
nsobject
=
NULL
;
break
;
#endif
case
VOUT_WINDOW_TYPE_XID
:
type
=
"vout window xid"
;
...
...
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