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
312754c3
Commit
312754c3
authored
Feb 23, 2003
by
Laurent Aimar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* all : declaration of http and httpd.
parent
84aaa859
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
12 additions
and
2 deletions
+12
-2
Makefile.am
Makefile.am
+1
-0
include/vlc_objects.h
include/vlc_objects.h
+3
-1
modules/access_output/Modules.am
modules/access_output/Modules.am
+1
-0
modules/misc/Modules.am
modules/misc/Modules.am
+1
-0
src/misc/objects.c
src/misc/objects.c
+6
-1
No files found.
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/01/27 17:41:01 ipkiss
Exp $
* $Id: vlc_objects.h,v 1.1
6 2003/02/23 19: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/01/27 17:41:01 ipkiss
Exp $
* $Id: objects.c,v 1.3
5 2003/02/23 19: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
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