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
dd159d08
Commit
dd159d08
authored
Nov 24, 2011
by
Hugo Beauzée-Luyssen
Committed by
Rémi Denis-Courmont
Nov 24, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dash: Removing factory another class instantiation.
Signed-off-by:
Rémi Denis-Courmont
<
remi@remlab.net
>
parent
c1a6296e
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
5 additions
and
21 deletions
+5
-21
modules/stream_filter/dash/DASHManager.cpp
modules/stream_filter/dash/DASHManager.cpp
+1
-3
modules/stream_filter/dash/DASHManager.h
modules/stream_filter/dash/DASHManager.h
+0
-1
modules/stream_filter/dash/mpd/MPDManagerFactory.cpp
modules/stream_filter/dash/mpd/MPDManagerFactory.cpp
+2
-12
modules/stream_filter/dash/mpd/MPDManagerFactory.h
modules/stream_filter/dash/mpd/MPDManagerFactory.h
+2
-5
No files found.
modules/stream_filter/dash/DASHManager.cpp
View file @
dd159d08
...
...
@@ -40,8 +40,7 @@ DASHManager::DASHManager (HTTPConnectionManager *conManager, Node *node, IAda
this
->
node
=
node
;
this
->
logicType
=
type
;
this
->
profile
=
profile
;
this
->
mpdManagerFactory
=
new
MPDManagerFactory
();
this
->
mpdManager
=
this
->
mpdManagerFactory
->
create
(
this
->
profile
,
this
->
node
);
this
->
mpdManager
=
mpd
::
MPDManagerFactory
::
create
(
this
->
profile
,
this
->
node
);
this
->
adaptationLogic
=
AdaptationLogicFactory
::
create
(
this
->
logicType
,
this
->
mpdManager
);
this
->
currentChunk
=
NULL
;
...
...
@@ -50,7 +49,6 @@ DASHManager::DASHManager (HTTPConnectionManager *conManager, Node *node, IAda
DASHManager
::~
DASHManager
()
{
delete
(
this
->
adaptationLogic
);
delete
(
this
->
mpdManager
);
}
int
DASHManager
::
read
(
void
*
p_buffer
,
size_t
len
)
...
...
modules/stream_filter/dash/DASHManager.h
View file @
dd159d08
...
...
@@ -51,7 +51,6 @@ namespace dash
logic
::
IAdaptationLogic
::
LogicType
logicType
;
mpd
::
Profile
profile
;
xml
::
Node
*
node
;
mpd
::
MPDManagerFactory
*
mpdManagerFactory
;
mpd
::
IMPDManager
*
mpdManager
;
};
}
...
...
modules/stream_filter/dash/mpd/MPDManagerFactory.cpp
View file @
dd159d08
...
...
@@ -30,29 +30,19 @@
using
namespace
dash
::
mpd
;
using
namespace
dash
::
xml
;
MPDManagerFactory
::
MPDManagerFactory
()
{
// TODO Auto-generated constructor stub
}
MPDManagerFactory
::~
MPDManagerFactory
()
{
// TODO Auto-generated destructor stub
}
IMPDManager
*
MPDManagerFactory
::
create
(
Profile
profile
,
Node
*
root
)
{
switch
(
profile
)
{
case
mpd
:
:
Basic
:
return
new
NullManager
();
case
mpd
:
:
BasicCM
:
return
this
->
createBasicCMManager
(
root
);
case
mpd
:
:
BasicCM
:
return
createBasicCMManager
(
root
);
case
mpd
:
:
Full2011
:
return
new
NullManager
();
case
mpd
:
:
NotValid
:
return
new
NullManager
();
default:
return
new
NullManager
();
}
}
IMPDManager
*
MPDManagerFactory
::
createBasicCMManager
(
Node
*
root
)
{
BasicCMParser
*
parser
=
new
BasicCMParser
(
root
);
...
...
modules/stream_filter/dash/mpd/MPDManagerFactory.h
View file @
dd159d08
...
...
@@ -38,13 +38,10 @@ namespace dash
class
MPDManagerFactory
{
public:
MPDManagerFactory
();
virtual
~
MPDManagerFactory
();
IMPDManager
*
create
(
Profile
profile
,
dash
::
xml
::
Node
*
root
);
static
IMPDManager
*
create
(
Profile
profile
,
dash
::
xml
::
Node
*
root
);
private:
IMPDManager
*
createBasicCMManager
(
dash
::
xml
::
Node
*
root
);
static
IMPDManager
*
createBasicCMManager
(
dash
::
xml
::
Node
*
root
);
};
}
}
...
...
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