Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
GSoC
GSoC2018
macOS
vlc
Commits
1a29a30f
Commit
1a29a30f
authored
Jun 10, 2015
by
François Cartegnie
🤞
Browse files
demux: hls: correctly ifdef gcrypt include
parent
88f858e9
Changes
2
Hide whitespace changes
Inline
Side-by-side
modules/demux/hls/playlist/HLSSegment.cpp
View file @
1a29a30f
...
...
@@ -17,10 +17,6 @@
* 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
<vlc_common.h>
...
...
modules/demux/hls/playlist/HLSSegment.hpp
View file @
1a29a30f
...
...
@@ -20,9 +20,15 @@
#ifndef HLSSEGMENT_HPP
#define HLSSEGMENT_HPP
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
#include
"../adaptative/playlist/Segment.h"
#include
<vector>
#include
<gcrypt.h>
#ifdef HAVE_GCRYPT
#include
<gcrypt.h>
#endif
namespace
hls
{
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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