Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
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-gpu
Commits
9d32c978
Commit
9d32c978
authored
May 11, 2003
by
Sigmund Augdal Helberg
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
use c comment, and not c++
parent
b8c1ac48
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
8 deletions
+8
-8
src/libvlc.c
src/libvlc.c
+8
-8
No files found.
src/libvlc.c
View file @
9d32c978
...
...
@@ -2,7 +2,7 @@
* libvlc.c: main libvlc source
*****************************************************************************
* Copyright (C) 1998-2002 VideoLAN
* $Id: libvlc.c,v 1.8
5 2003/05/10 13:40:37 titer
Exp $
* $Id: libvlc.c,v 1.8
6 2003/05/11 13:14:04 sigmunau
Exp $
*
* Authors: Vincent Seguin <seguin@via.ecp.fr>
* Samuel Hocevar <sam@zoy.org>
...
...
@@ -273,7 +273,7 @@ int VLC_Init( int i_object, int i_argc, char *ppsz_argv[] )
p_help_module
=
vlc_object_create
(
p_vlc
,
VLC_OBJECT_MODULE
);
if
(
p_help_module
==
NULL
)
{
/
/module_EndBank( p_vlc );
/
*module_EndBank( p_vlc );*/
if
(
i_object
)
vlc_object_release
(
p_vlc
);
return
VLC_EGENERIC
;
}
...
...
@@ -287,7 +287,7 @@ int VLC_Init( int i_object, int i_argc, char *ppsz_argv[] )
vlc_object_detach
(
p_help_module
);
config_Free
(
p_help_module
);
vlc_object_destroy
(
p_help_module
);
/
/module_EndBank( p_vlc );
/
*module_EndBank( p_vlc );*/
if
(
i_object
)
vlc_object_release
(
p_vlc
);
return
VLC_EGENERIC
;
}
...
...
@@ -316,7 +316,7 @@ int VLC_Init( int i_object, int i_argc, char *ppsz_argv[] )
{
config_Free
(
p_help_module
);
vlc_object_destroy
(
p_help_module
);
/
/module_EndBank( p_vlc );
/
*module_EndBank( p_vlc );*/
if
(
i_object
)
vlc_object_release
(
p_vlc
);
return
VLC_EEXIT
;
}
...
...
@@ -394,7 +394,7 @@ int VLC_Init( int i_object, int i_argc, char *ppsz_argv[] )
if
(
b_exit
)
{
/
/module_EndBank( p_vlc );
/
*module_EndBank( p_vlc );*/
if
(
i_object
)
vlc_object_release
(
p_vlc
);
return
VLC_EEXIT
;
}
...
...
@@ -417,7 +417,7 @@ int VLC_Init( int i_object, int i_argc, char *ppsz_argv[] )
"that they are valid.
\n
Press the RETURN key to continue..."
);
getchar
();
#endif
/
/module_EndBank( p_vlc );
/
*module_EndBank( p_vlc );*/
if
(
i_object
)
vlc_object_release
(
p_vlc
);
return
VLC_EGENERIC
;
}
...
...
@@ -513,7 +513,7 @@ int VLC_Init( int i_object, int i_argc, char *ppsz_argv[] )
{
module_Unneed
(
p_vlc
,
p_vlc
->
p_memcpy_module
);
}
/
/module_EndBank( p_vlc );
/
*module_EndBank( p_vlc );*/
if
(
i_object
)
vlc_object_release
(
p_vlc
);
return
VLC_EGENERIC
;
}
...
...
@@ -641,7 +641,7 @@ int VLC_Destroy( int i_object )
/*
* XXX: Free module bank !
*/
/
/module_EndBank( p_vlc );
/
*module_EndBank( p_vlc );*/
/*
* System specific cleaning code
...
...
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