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
dc09f863
Commit
dc09f863
authored
Dec 15, 2005
by
Clément Stenac
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove unused structures from vlc_common.h
Minor headers cleanup
parent
bf50e13b
Changes
20
Show whitespace changes
Inline
Side-by-side
Showing
20 changed files
with
61 additions
and
69 deletions
+61
-69
include/main.h
include/main.h
+2
-2
include/mtime.h
include/mtime.h
+1
-1
include/network.h
include/network.h
+7
-6
include/stream_output.h
include/stream_output.h
+1
-1
include/vlc_access.h
include/vlc_access.h
+2
-2
include/vlc_acl.h
include/vlc_acl.h
+1
-0
include/vlc_bits.h
include/vlc_bits.h
+1
-1
include/vlc_common.h
include/vlc_common.h
+12
-24
include/vlc_demux.h
include/vlc_demux.h
+2
-2
include/vlc_es_out.h
include/vlc_es_out.h
+1
-1
include/vlc_image.h
include/vlc_image.h
+13
-12
include/vlc_input.h
include/vlc_input.h
+1
-1
include/vlc_meta.h
include/vlc_meta.h
+8
-8
include/vlc_objects.h
include/vlc_objects.h
+1
-1
include/vlc_stream.h
include/vlc_stream.h
+1
-1
include/vlc_tls.h
include/vlc_tls.h
+3
-3
include/vlc_video.h
include/vlc_video.h
+1
-1
include/vlc_vlm.h
include/vlc_vlm.h
+1
-1
include/vlc_xml.h
include/vlc_xml.h
+1
-1
include/vout_synchro.h
include/vout_synchro.h
+1
-0
No files found.
include/main.h
View file @
dc09f863
include/mtime.h
View file @
dc09f863
include/network.h
View file @
dc09f863
...
...
@@ -305,7 +305,8 @@ static inline int vlc_UrlIsNotEncoded( const char *psz_url )
*****************************************************************************/
static
inline
char
*
vlc_b64_encode
(
char
*
src
)
{
static
const
char
b64
[]
=
"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/"
;
static
const
char
b64
[]
=
"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/"
;
size_t
len
=
strlen
(
src
);
char
*
ret
;
...
...
include/stream_output.h
View file @
dc09f863
include/vlc_access.h
View file @
dc09f863
/*****************************************************************************
* vlc_access.h
* vlc_access.h
: Access descriptor, queries and methods
*****************************************************************************
* Copyright (C) 1999-2004 the VideoLAN team
* $Id$
...
...
include/vlc_acl.h
View file @
dc09f863
...
...
@@ -2,6 +2,7 @@
* vlc_acl.h: interface to the network Access Control List internal API
*****************************************************************************
* Copyright (C) 2005 Rémi Denis-Courmont
* Copyright (C) 2005 the VideoLAN team
* $Id$
*
* Authors: Rémi Denis-Courmont <rem # videolan.org>
...
...
include/vlc_bits.h
View file @
dc09f863
/*****************************************************************************
* bits.h :
* bits.h :
Bit handling helpers
*****************************************************************************
* Copyright (C) 2003 the VideoLAN team
* $Id$
...
...
include/vlc_common.h
View file @
dc09f863
...
...
@@ -250,7 +250,6 @@ typedef struct intf_thread_t intf_thread_t;
typedef
struct
intf_sys_t
intf_sys_t
;
typedef
struct
intf_console_t
intf_console_t
;
typedef
struct
intf_msg_t
intf_msg_t
;
typedef
struct
intf_channel_t
intf_channel_t
;
typedef
struct
interaction_t
interaction_t
;
typedef
struct
interaction_dialog_t
interaction_dialog_t
;
typedef
struct
user_widget_t
user_widget_t
;
...
...
@@ -259,16 +258,16 @@ typedef struct user_widget_t user_widget_t;
typedef
struct
input_thread_t
input_thread_t
;
typedef
struct
input_thread_sys_t
input_thread_sys_t
;
typedef
struct
input_item_t
input_item_t
;
typedef
struct
input_area_t
input_area_t
;
typedef
struct
input_buffers_t
input_buffers_t
;
typedef
struct
input_socket_t
input_socket_t
;
typedef
struct
access_t
access_t
;
typedef
struct
access_sys_t
access_sys_t
;
typedef
struct
stream_t
stream_t
;
typedef
struct
stream_sys_t
stream_sys_t
;
typedef
struct
demux_t
demux_t
;
typedef
struct
demux_sys_t
demux_sys_t
;
typedef
struct
es_out_t
es_out_t
;
typedef
struct
es_out_id_t
es_out_id_t
;
typedef
struct
es_out_sys_t
es_out_sys_t
;
typedef
struct
es_descriptor_t
es_descriptor_t
;
typedef
struct
es_sys_t
es_sys_t
;
typedef
struct
pgrm_descriptor_t
pgrm_descriptor_t
;
typedef
struct
pgrm_sys_t
pgrm_sys_t
;
typedef
struct
stream_descriptor_t
stream_descriptor_t
;
typedef
struct
seekpoint_t
seekpoint_t
;
typedef
struct
info_t
info_t
;
typedef
struct
info_category_t
info_category_t
;
...
...
@@ -280,15 +279,6 @@ typedef struct subs_format_t subs_format_t;
typedef
struct
es_format_t
es_format_t
;
typedef
struct
video_palette_t
video_palette_t
;
/* NInput */
typedef
struct
stream_sys_t
stream_sys_t
;
typedef
struct
stream_t
stream_t
;
typedef
struct
es_out_t
es_out_t
;
typedef
struct
es_out_id_t
es_out_id_t
;
typedef
struct
es_out_sys_t
es_out_sys_t
;
typedef
struct
demux_t
demux_t
;
typedef
struct
access_t
access_t
;
/* Audio */
typedef
struct
aout_instance_t
aout_instance_t
;
typedef
struct
aout_sys_t
aout_sys_t
;
...
...
@@ -310,6 +300,7 @@ typedef struct picture_t picture_t;
typedef
struct
picture_sys_t
picture_sys_t
;
typedef
struct
picture_heap_t
picture_heap_t
;
/* Subpictures */
typedef
struct
spu_t
spu_t
;
typedef
struct
subpicture_t
subpicture_t
;
typedef
struct
subpicture_sys_t
subpicture_sys_t
;
...
...
@@ -341,7 +332,6 @@ typedef struct session_descriptor_t session_descriptor_t;
typedef
struct
announce_method_t
announce_method_t
;
typedef
struct
announce_handler_t
announce_handler_t
;
typedef
struct
sap_handler_t
sap_handler_t
;
/* typedef struct slp_session_t slp_session_t; */
/* Decoders */
typedef
struct
decoder_t
decoder_t
;
...
...
@@ -355,18 +345,16 @@ typedef struct encoder_sys_t encoder_sys_t;
typedef
struct
filter_t
filter_t
;
typedef
struct
filter_sys_t
filter_sys_t
;
/* Misc */
typedef
struct
data_packet_t
data_packet_t
;
typedef
struct
data_buffer_t
data_buffer_t
;
typedef
struct
stream_ctrl_t
stream_ctrl_t
;
typedef
struct
pes_packet_t
pes_packet_t
;
/* Network */
typedef
struct
network_socket_t
network_socket_t
;
typedef
struct
virtual_socket_t
v_socket_t
;
typedef
struct
iso639_lang_t
iso639_lang_t
;
typedef
struct
sockaddr
sockaddr
;
typedef
struct
addrinfo
addrinfo
;
typedef
struct
vlc_acl_t
vlc_acl_t
;
/* Misc */
typedef
struct
iso639_lang_t
iso639_lang_t
;
/* block */
typedef
struct
block_t
block_t
;
typedef
struct
block_fifo_t
block_fifo_t
;
...
...
include/vlc_demux.h
View file @
dc09f863
/*****************************************************************************
* vlc_demux.h
* vlc_demux.h
: Demuxer descriptor, queries and methods
*****************************************************************************
* Copyright (C) 1999-2005
VideoLAN (Centrale Réseaux) and its contributors
* Copyright (C) 1999-2005
the VideoLAN team
* $Id$
*
* Authors: Laurent Aimar <fenrir@via.ecp.fr>
...
...
include/vlc_es_out.h
View file @
dc09f863
/*****************************************************************************
* vlc_es_out.h
* vlc_es_out.h
: es_out (demuxer output) descriptor, queries and methods
*****************************************************************************
* Copyright (C) 1999-2004 the VideoLAN team
* $Id$
...
...
include/vlc_image.h
View file @
dc09f863
...
...
@@ -39,7 +39,8 @@ struct image_handler_t
block_t
*
(
*
pf_write
)
(
image_handler_t
*
,
picture_t
*
,
video_format_t
*
,
video_format_t
*
);
int
(
*
pf_write_url
)
(
image_handler_t
*
,
picture_t
*
,
video_format_t
*
,
video_format_t
*
,
const
char
*
);
video_format_t
*
,
video_format_t
*
,
const
char
*
);
picture_t
*
(
*
pf_convert
)
(
image_handler_t
*
,
picture_t
*
,
video_format_t
*
,
video_format_t
*
);
...
...
include/vlc_input.h
View file @
dc09f863
/*****************************************************************************
* vlc_input.h:
* vlc_input.h:
Core input structures
*****************************************************************************
* Copyright (C) 1999-2004 the VideoLAN team
* $Id$
...
...
include/vlc_meta.h
View file @
dc09f863
/*****************************************************************************
* vlc_meta.h
* vlc_meta.h
: Stream meta-data
*****************************************************************************
* Copyright (C) 2004 the VideoLAN team
* $Id$
...
...
include/vlc_objects.h
View file @
dc09f863
/*****************************************************************************
* vlc_objects.h: vlc_object_t definition
.
* vlc_objects.h: vlc_object_t definition
and manipulation methods
*****************************************************************************
* Copyright (C) 2002 the VideoLAN team
* $Id$
...
...
include/vlc_stream.h
View file @
dc09f863
/*****************************************************************************
* vlc_stream.h
* vlc_stream.h
: Stream (between access and demux) descriptor and methods
*****************************************************************************
* Copyright (C) 1999-2004 the VideoLAN team
* $Id$
...
...
include/vlc_tls.h
View file @
dc09f863
/*****************************************************************************
* tls.c
* tls.c
: TLS wrapper
*****************************************************************************
* Copyright (C) 2004-2005 the VideoLAN team
* $Id$
...
...
include/vlc_video.h
View file @
dc09f863
include/vlc_vlm.h
View file @
dc09f863
/*****************************************************************************
* vlc_vlm.h: VLM
interface plugin
* vlc_vlm.h: VLM
core structures
*****************************************************************************
* Copyright (C) 2000, 2001 the VideoLAN team
* $Id$
...
...
include/vlc_xml.h
View file @
dc09f863
/*****************************************************************************
* xml.h
* xml.h
: XML abstraction layer
*****************************************************************************
* Copyright (C) 2004 the VideoLAN team
* $Id$
...
...
include/vout_synchro.h
View file @
dc09f863
/*****************************************************************************
* vout_synchro.h: frame-dropping structures
* Only used in libmpeg2 decoder at the moment
*****************************************************************************
* Copyright (C) 1999-2005 the VideoLAN team
* $Id$
...
...
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