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
ce24095a
Commit
ce24095a
authored
Sep 09, 2006
by
Clément Stenac
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Copyright stuff
parent
230ff455
Changes
13
Hide whitespace changes
Inline
Side-by-side
Showing
13 changed files
with
23 additions
and
17 deletions
+23
-17
modules/access_output/shout.c
modules/access_output/shout.c
+1
-1
modules/codec/ffmpeg/mux.c
modules/codec/ffmpeg/mux.c
+1
-1
modules/demux/playlist/xspf.c
modules/demux/playlist/xspf.c
+2
-4
modules/demux/ts.c
modules/demux/ts.c
+1
-1
modules/gui/skins2/commands/cmd_playtree.cpp
modules/gui/skins2/commands/cmd_playtree.cpp
+2
-1
modules/gui/skins2/commands/cmd_playtree.hpp
modules/gui/skins2/commands/cmd_playtree.hpp
+2
-1
modules/gui/skins2/controls/ctrl_tree.cpp
modules/gui/skins2/controls/ctrl_tree.cpp
+2
-1
modules/gui/skins2/controls/ctrl_tree.hpp
modules/gui/skins2/controls/ctrl_tree.hpp
+3
-2
modules/gui/skins2/utils/var_tree.cpp
modules/gui/skins2/utils/var_tree.cpp
+2
-1
modules/gui/skins2/utils/var_tree.hpp
modules/gui/skins2/utils/var_tree.hpp
+2
-1
modules/gui/skins2/vars/playtree.cpp
modules/gui/skins2/vars/playtree.cpp
+2
-1
modules/gui/skins2/vars/playtree.hpp
modules/gui/skins2/vars/playtree.hpp
+2
-1
modules/mux/mpeg/ts.c
modules/mux/mpeg/ts.c
+1
-1
No files found.
modules/access_output/shout.c
View file @
ce24095a
/*****************************************************************************
* shout.c: This module forwards vorbis streams to an icecast server
*****************************************************************************
* Copyright (C) 2005
VideoLAN
* Copyright (C) 2005
the VideoLAN team
* $Id$
*
* Authors: Daniel Fischer <dan at subsignal dot org>
...
...
modules/codec/ffmpeg/mux.c
View file @
ce24095a
/*****************************************************************************
* mux.c: muxer using ffmpeg (libavformat).
*****************************************************************************
* Copyright (C) 2006
VideoLAN
* Copyright (C) 2006
the VideoLAN team
* $Id: demux.c 8444 2004-08-17 08:21:07Z gbazin $
*
* Authors: Gildas Bazin <gbazin@videolan.org>
...
...
modules/demux/playlist/xspf.c
View file @
ce24095a
...
...
@@ -117,9 +117,7 @@ int Demux( demux_t *p_demux )
xml_ReaderDelete
(
p_xml
,
p_xml_reader
);
if
(
p_xml
)
xml_Delete
(
p_xml
);
return
i_ret
;
return
0
;
return
VLC_SUCCESS
;
}
/** \brief dummy function for demux callback interface */
...
...
@@ -176,7 +174,7 @@ static vlc_bool_t parse_playlist_node COMPLEX_INTERFACE
}
/* attribute: version */
if
(
!
strcmp
(
psz_name
,
"version"
)
)
{
{
b_version_found
=
VLC_TRUE
;
if
(
strcmp
(
psz_value
,
"0"
)
&&
strcmp
(
psz_value
,
"1"
)
)
msg_Warn
(
p_demux
,
"unsupported XSPF version"
);
...
...
modules/demux/ts.c
View file @
ce24095a
/*****************************************************************************
* ts.c: Transport Stream input module for VLC.
*****************************************************************************
* Copyright (C) 2004-2005
VideoLAN (Centrale Réseaux) and its contributors
* Copyright (C) 2004-2005
the VideoLAN team
* $Id$
*
* Authors: Laurent Aimar <fenrir@via.ecp.fr>
...
...
modules/gui/skins2/commands/cmd_playtree.cpp
View file @
ce24095a
/*****************************************************************************
* cmd_playtree.cpp
*****************************************************************************
* Copyright (C) 2005
VideoLAN
* Copyright (C) 2005
the VideoLAN team
* $Id$
*
* Authors: Antoine Cellerier <dionoea@videolan.org>
* Clément Stenac <zorglub@videolan.org>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
...
...
modules/gui/skins2/commands/cmd_playtree.hpp
View file @
ce24095a
/*****************************************************************************
* cmd_playtree.hpp
*****************************************************************************
* Copyright (C) 2005
VideoLAN
* Copyright (C) 2005
the VideoLAN team
* $Id$
*
* Authors: Antoine Cellerier <dionoea@videolan.org>
* Clément Stenac <zorglub@videolan.org>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
...
...
modules/gui/skins2/controls/ctrl_tree.cpp
View file @
ce24095a
/*****************************************************************************
* ctrl_tree.cpp
*****************************************************************************
* Copyright (C) 2003
VideoLAN
* Copyright (C) 2003
the VideoLAN team
* $Id$
*
* Authors: Antoine Cellerier <dionoea@videolan.org>
* Clément Stenac <zorglub@videolan.org>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
...
...
modules/gui/skins2/controls/ctrl_tree.hpp
View file @
ce24095a
/*****************************************************************************
* ctrl_tree.hpp
*****************************************************************************
* Copyright (C) 2003
VideoLAN
* Copyright (C) 2003
the VideoLAN team
* $Id$
*
* Authors: Antoine Cellerier
* Authors: Antoine Cellerier <dionoea@videolan.org>
* Clément Stenac <zorglub@videolan.org>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
...
...
modules/gui/skins2/utils/var_tree.cpp
View file @
ce24095a
/*****************************************************************************
* var_tree.cpp
*****************************************************************************
* Copyright (C) 2005
VideoLAN
* Copyright (C) 2005
the VideoLAN team
* $Id$
*
* Authors: Antoine Cellerier <dionoea@videolan.org>
* Clément Stenac <zorglub@videolan.org>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
...
...
modules/gui/skins2/utils/var_tree.hpp
View file @
ce24095a
/*****************************************************************************
* var_tree.hpp
*****************************************************************************
* Copyright (C) 2005
VideoLAN
* Copyright (C) 2005
the VideoLAN team
* $Id$
*
* Authors: Antoine Cellerier <dionoea@videolan.org>
* Clément Stenac <zorglub@videolan.org>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
...
...
modules/gui/skins2/vars/playtree.cpp
View file @
ce24095a
/*****************************************************************************
* playtree.cpp
*****************************************************************************
* Copyright (C) 2005
VideoLAN
* Copyright (C) 2005
the VideoLAN team
* $Id$
*
* Authors: Antoine Cellerier <dionoea@videolan.org>
* Clément Stenac <zorglub@videolan.org>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
...
...
modules/gui/skins2/vars/playtree.hpp
View file @
ce24095a
/*****************************************************************************
* playtree.hpp
*****************************************************************************
* Copyright (C) 2005
VideoLAN
* Copyright (C) 2005
the VideoLAN team
* $Id$
*
* Authors: Antoine Cellerier <dionoea@videolan.org>
* Clément Stenac <zorglub@videolan.org>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
...
...
modules/mux/mpeg/ts.c
View file @
ce24095a
/*****************************************************************************
* ts.c: MPEG-II TS Muxer
*****************************************************************************
* Copyright (C) 2001-2005
VideoLAN (Centrale Réseaux) and its contributors
* Copyright (C) 2001-2005
the VideoLAN team
* $Id$
*
* Authors: Laurent Aimar <fenrir@via.ecp.fr>
...
...
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