Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
VideoLAN
VLMC
Commits
5962391b
Commit
5962391b
authored
Apr 03, 2009
by
Ludovic Fauvet
Browse files
debug cleanup
parent
6f9f60da
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/Media.cpp
View file @
5962391b
...
...
@@ -31,7 +31,7 @@ Media::Media(LibVLCpp::Instance* instance, const QString& mrl )
{
char
const
*
vlc_argv
[]
=
{
"-v
erbose"
,
"3
"
,
//
"-v
vvvv
",
"--no-skip-frames"
,
"--no-audio"
,
//"--plugin-path", VLC_TREE "/modules",
...
...
@@ -48,22 +48,17 @@ Media::Media(LibVLCpp::Instance* instance, const QString& mrl )
Media
::~
Media
()
{
qDebug
()
<<
"dtor Media"
;
if
(
m_instance
&&
m_instanceOwned
==
true
)
{
delete
m_instance
;
qDebug
()
<<
"deleted m_instance"
;
}
if
(
m_vlcMedia
)
{
qDebug
()
<<
"deleting m_vlcMedia"
;
delete
m_vlcMedia
;
qDebug
()
<<
"deleted m_vlcMedia"
;
}
if
(
m_vlcMediaPlayer
)
{
delete
m_vlcMediaPlayer
;
qDebug
()
<<
"deleted m_vlcMediaPlayer"
;
}
}
...
...
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