Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
GSoC
GSoC2018
macOS
vlc
Commits
312754c3
Commit
312754c3
authored
Feb 23, 2003
by
Laurent Aimar
Browse files
* all : declaration of http and httpd.
parent
84aaa859
Changes
5
Hide whitespace changes
Inline
Side-by-side
Makefile.am
View file @
312754c3
...
...
@@ -170,6 +170,7 @@ HEADERS_include = \
include/interface.h
\
include/intf_eject.h
\
include/iso_lang.h
\
include/httpd.h
\
include/main.h
\
include/mmx.h
\
include/modules.h
\
...
...
include/vlc_objects.h
View file @
312754c3
...
...
@@ -2,7 +2,7 @@
* vlc_objects.h: vlc_object_t definition.
*****************************************************************************
* Copyright (C) 2002 VideoLAN
* $Id: vlc_objects.h,v 1.1
5
2003/0
1
/2
7
1
7:41:01 ipkiss
Exp $
* $Id: vlc_objects.h,v 1.1
6
2003/0
2
/2
3
1
9:07:02 fenrir
Exp $
*
* Authors: Samuel Hocevar <sam@zoy.org>
*
...
...
@@ -33,6 +33,8 @@
#define VLC_OBJECT_VOUT (-9)
#define VLC_OBJECT_AOUT (-10)
#define VLC_OBJECT_SOUT (-11)
#define VLC_OBJECT_HTTPD (-12)
#define VLC_OBJECT_GENERIC (-666)
/* Object search mode */
...
...
modules/access_output/Modules.am
View file @
312754c3
SOURCES_access_output_dummy = modules/access_output/dummy.c
SOURCES_access_output_file = modules/access_output/file.c
SOURCES_access_output_udp = modules/access_output/udp.c
SOURCES_access_output_http = modules/access_output/http.c
modules/misc/Modules.am
View file @
312754c3
...
...
@@ -3,3 +3,4 @@ SOURCES_gnome_main = modules/misc/gtk_main.c
SOURCES_sap = modules/misc/sap.c
SOURCES_screensaver = modules/misc/screensaver.c
SOURCES_qte_main = modules/misc/qte_main.cpp
SOURCES_httpd = modules/misc/httpd.c
src/misc/objects.c
View file @
312754c3
...
...
@@ -2,7 +2,7 @@
* objects.c: vlc_object_t handling
*****************************************************************************
* Copyright (C) 2002 VideoLAN
* $Id: objects.c,v 1.3
4
2003/0
1
/2
7
1
7:41:01 ipkiss
Exp $
* $Id: objects.c,v 1.3
5
2003/0
2
/2
3
1
9:07:02 fenrir
Exp $
*
* Authors: Samuel Hocevar <sam@zoy.org>
*
...
...
@@ -44,6 +44,7 @@
#include
"vlc_playlist.h"
#include
"interface.h"
#include
"httpd.h"
/*****************************************************************************
* Local prototypes
*****************************************************************************/
...
...
@@ -123,6 +124,10 @@ void * __vlc_object_create( vlc_object_t *p_this, int i_type )
i_size
=
sizeof
(
sout_instance_t
);
psz_type
=
"stream output"
;
break
;
case
VLC_OBJECT_HTTPD
:
i_size
=
sizeof
(
httpd_t
);
psz_type
=
"http daemon"
;
break
;
default:
i_size
=
i_type
>
0
?
i_type
>
(
int
)
sizeof
(
vlc_object_t
)
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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