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
55f2b5d5
Commit
55f2b5d5
authored
Oct 26, 2011
by
Jean-Baptiste Kempf
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
DASH: remove unnecessary includes and other trivial fixes
parent
bab7fd93
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
9 additions
and
22 deletions
+9
-22
modules/stream_filter/dash/DASHManager.cpp
modules/stream_filter/dash/DASHManager.cpp
+3
-3
modules/stream_filter/dash/DASHManager.h
modules/stream_filter/dash/DASHManager.h
+2
-6
modules/stream_filter/dash/dash.cpp
modules/stream_filter/dash/dash.cpp
+4
-13
No files found.
modules/stream_filter/dash/DASHManager.cpp
View file @
55f2b5d5
/*
/*
****************************************************************************
* DASHManager.cpp
*****************************************************************************
* Copyright
(C)
2010 - 2011 Klagenfurt University
* Copyright
©
2010 - 2011 Klagenfurt University
*
* Created on: Aug 10, 2010
* Authors: Christopher Mueller <christopher.mueller@itec.uni-klu.ac.at>
...
...
@@ -15,7 +15,7 @@
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* GNU
Lesser
General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program; if not, write to the Free Software
...
...
modules/stream_filter/dash/DASHManager.h
View file @
55f2b5d5
/*
* DASHManager.h
*****************************************************************************
* Copyright
(C)
2010 - 2011 Klagenfurt University
* Copyright
©
2010 - 2011 Klagenfurt University
*
* Created on: Aug 10, 2010
* Authors: Christopher Mueller <christopher.mueller@itec.uni-klu.ac.at>
...
...
@@ -15,7 +15,7 @@
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* GNU
Lesser
General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program; if not, write to the Free Software
...
...
@@ -25,10 +25,6 @@
#ifndef DASHMANAGER_H_
#define DASHMANAGER_H_
#include <stdint.h>
#include <stddef.h>
#include <iostream>
#include "http/HTTPConnectionManager.h"
#include "xml/Node.h"
#include "adaptationlogic/IAdaptationLogic.h"
...
...
modules/stream_filter/dash/dash.cpp
View file @
55f2b5d5
/*****************************************************************************
* dash.cpp: DASH module
*****************************************************************************
* Copyright
(C)
2010 - 2011 Klagenfurt University
* Copyright
©
2010 - 2011 Klagenfurt University
*
* Created on: Aug 10, 2010
* Authors: Christopher Mueller <christopher.mueller@itec.uni-klu.ac.at>
...
...
@@ -15,7 +15,7 @@
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* GNU
Lesser
General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program; if not, write to the Free Software
...
...
@@ -29,21 +29,10 @@
# include "config.h"
#endif
#include <limits.h>
#include <vlc_common.h>
#include <vlc_plugin.h>
#include <vlc_demux.h>
#include <vlc_stream.h>
#include <vlc_modules.h>
#include <vlc_input.h>
#include <errno.h>
#include <string>
#include <map>
#include <fcntl.h>
#include <iostream>
#include <stdio.h>
#include "DASHManager.h"
#include "xml/DOMParser.h"
...
...
@@ -66,6 +55,7 @@ vlc_module_begin ()
set_subcategory
(
SUBCAT_INPUT_STREAM_FILTER
)
set_callbacks
(
Open
,
Close
)
vlc_module_end
()
/*****************************************************************************
* Local prototypes
*****************************************************************************/
...
...
@@ -82,6 +72,7 @@ static int Read (stream_t *p_stream, void *p_buffer, unsigned int i_
static
int
Peek
(
stream_t
*
p_stream
,
const
uint8_t
**
pp_peek
,
unsigned
int
i_peek
);
static
int
Control
(
stream_t
*
p_stream
,
int
i_query
,
va_list
args
);
static
bool
IsDash
(
stream_t
*
p_stream
,
dash
::
xml
::
DOMParser
*
p_parser
);
/*****************************************************************************
* Open:
*****************************************************************************/
...
...
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