Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
VideoLAN
VLMC
Commits
7d7ed50d
Commit
7d7ed50d
authored
Aug 14, 2009
by
Ludovic Fauvet
Browse files
Fix warnings
parent
5539992d
Changes
3
Hide whitespace changes
Inline
Side-by-side
src/API/vlmc_module_variables.cpp
View file @
7d7ed50d
...
...
@@ -3,5 +3,10 @@
vlmc_return_type_t
vlmc_add_variable_int
(
vlmc_module_t
*
p_module
,
const
char
*
psz_varname
,
int
value
)
{
Q_UNUSED
(
p_module
);
Q_UNUSED
(
psz_varname
);
Q_UNUSED
(
value
);
qDebug
()
<<
"Setting variable"
;
return
VLMC_SUCCESS
;
}
src/Media.cpp
View file @
7d7ed50d
...
...
@@ -182,6 +182,7 @@ void Media::initAudioData( void* datas, unsigned int* freq, unsig
void
Media
::
addAudioFrame
(
void
*
datas
,
unsigned
char
*
buffer
,
size_t
buffSize
,
unsigned
int
nbSample
)
{
Q_UNUSED
(
datas
);
m_audioData
.
nbSample
=
nbSample
;
m_audioData
.
buffSize
=
buffSize
;
...
...
src/gui/LibraryWidget.cpp
View file @
7d7ed50d
...
...
@@ -125,6 +125,7 @@ void LibraryWidget::newClipLoaded( Clip* clip )
void
LibraryWidget
::
insertNewMediasFromFileDialog
(
QString
title
,
QString
filter
,
Media
::
FileType
fileType
)
{
Q_UNUSED
(
fileType
);
QSettings
settings
;
QString
path
;
...
...
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