Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
VLC
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
15
Merge Requests
15
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
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
Steve Lhomme
VLC
Commits
e87ac8fd
Commit
e87ac8fd
authored
Mar 09, 2016
by
François Cartegnie
🤞
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
demux: hls: fix include order
parent
e9c488a2
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
12 additions
and
19 deletions
+12
-19
modules/demux/hls/HLSStreams.cpp
modules/demux/hls/HLSStreams.cpp
+4
-0
modules/demux/hls/HLSStreams.hpp
modules/demux/hls/HLSStreams.hpp
+0
-4
modules/demux/hls/playlist/HLSSegment.cpp
modules/demux/hls/playlist/HLSSegment.cpp
+4
-0
modules/demux/hls/playlist/HLSSegment.hpp
modules/demux/hls/playlist/HLSSegment.hpp
+0
-4
modules/demux/hls/playlist/Parser.hpp
modules/demux/hls/playlist/Parser.hpp
+0
-4
modules/demux/hls/playlist/Tags.cpp
modules/demux/hls/playlist/Tags.cpp
+4
-3
modules/demux/hls/playlist/Tags.hpp
modules/demux/hls/playlist/Tags.hpp
+0
-4
No files found.
modules/demux/hls/HLSStreams.cpp
View file @
e87ac8fd
...
...
@@ -17,6 +17,10 @@
* along with this program; if not, write to the Free Software Foundation,
* Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
*****************************************************************************/
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
#include "HLSStreams.hpp"
#include <vlc_demux.h>
...
...
modules/demux/hls/HLSStreams.hpp
View file @
e87ac8fd
...
...
@@ -20,10 +20,6 @@
#ifndef HLSSTREAM_HPP
#define HLSSTREAM_HPP
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
#include "../adaptive/Streams.hpp"
namespace
hls
...
...
modules/demux/hls/playlist/HLSSegment.cpp
View file @
e87ac8fd
...
...
@@ -17,6 +17,10 @@
* along with this program; if not, write to the Free Software Foundation,
* Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
*****************************************************************************/
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
#include "HLSSegment.hpp"
#include "../adaptive/playlist/SegmentChunk.hpp"
#include "../adaptive/playlist/BaseRepresentation.h"
...
...
modules/demux/hls/playlist/HLSSegment.hpp
View file @
e87ac8fd
...
...
@@ -20,10 +20,6 @@
#ifndef HLSSEGMENT_HPP
#define HLSSEGMENT_HPP
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
#include "../adaptive/playlist/Segment.h"
#include <vector>
#ifdef HAVE_GCRYPT
...
...
modules/demux/hls/playlist/Parser.hpp
View file @
e87ac8fd
...
...
@@ -20,10 +20,6 @@
#ifndef PARSER_HPP
#define PARSER_HPP
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
#include "../adaptive/playlist/SegmentInfoCommon.h"
#include <cstdlib>
...
...
modules/demux/hls/playlist/Tags.cpp
View file @
e87ac8fd
...
...
@@ -17,13 +17,14 @@
* along with this program; if not, write to the Free Software Foundation,
* Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
*****************************************************************************/
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
#include "Tags.hpp"
#include <sstream>
#include <stack>
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
#include <vlc_common.h>
using
namespace
hls
::
playlist
;
...
...
modules/demux/hls/playlist/Tags.hpp
View file @
e87ac8fd
...
...
@@ -20,10 +20,6 @@
#ifndef TAGS_HPP
#define TAGS_HPP
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
#include <stdint.h>
#include <string>
...
...
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