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
ab4967ce
Commit
ab4967ce
authored
May 14, 2011
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
atmo: fix most warnings, convert to Unicode, kill useless functions
parent
b0ccf95d
Changes
15
Hide whitespace changes
Inline
Side-by-side
Showing
15 changed files
with
32 additions
and
98 deletions
+32
-98
modules/video_filter/atmo/AtmoCalculations.cpp
modules/video_filter/atmo/AtmoCalculations.cpp
+1
-1
modules/video_filter/atmo/AtmoClassicConnection.cpp
modules/video_filter/atmo/AtmoClassicConnection.cpp
+1
-1
modules/video_filter/atmo/AtmoConfig.cpp
modules/video_filter/atmo/AtmoConfig.cpp
+1
-1
modules/video_filter/atmo/AtmoConnection.h
modules/video_filter/atmo/AtmoConnection.h
+19
-15
modules/video_filter/atmo/AtmoDefs.h
modules/video_filter/atmo/AtmoDefs.h
+2
-2
modules/video_filter/atmo/AtmoDmxSerialConnection.cpp
modules/video_filter/atmo/AtmoDmxSerialConnection.cpp
+1
-14
modules/video_filter/atmo/AtmoDmxSerialConnection.h
modules/video_filter/atmo/AtmoDmxSerialConnection.h
+0
-10
modules/video_filter/atmo/AtmoDynData.cpp
modules/video_filter/atmo/AtmoDynData.cpp
+1
-1
modules/video_filter/atmo/AtmoMultiConnection.cpp
modules/video_filter/atmo/AtmoMultiConnection.cpp
+1
-1
modules/video_filter/atmo/FnordlichtConnection.cpp
modules/video_filter/atmo/FnordlichtConnection.cpp
+1
-14
modules/video_filter/atmo/FnordlichtConnection.h
modules/video_filter/atmo/FnordlichtConnection.h
+0
-10
modules/video_filter/atmo/MoMoConnection.cpp
modules/video_filter/atmo/MoMoConnection.cpp
+1
-14
modules/video_filter/atmo/MoMoConnection.h
modules/video_filter/atmo/MoMoConnection.h
+0
-10
modules/video_filter/atmo/README.txt
modules/video_filter/atmo/README.txt
+1
-1
modules/video_filter/atmo/atmo.cpp
modules/video_filter/atmo/atmo.cpp
+2
-3
No files found.
modules/video_filter/atmo/AtmoCalculations.cpp
View file @
ab4967ce
...
@@ -75,7 +75,7 @@ CAtmoColorCalculator::~CAtmoColorCalculator(void)
...
@@ -75,7 +75,7 @@ CAtmoColorCalculator::~CAtmoColorCalculator(void)
void
CAtmoColorCalculator
::
UpdateParameters
()
void
CAtmoColorCalculator
::
UpdateParameters
()
{
{
// Zonen Definition neu laden
// Zonen Definition neu laden
// diverse Vorberechnungen neu ausfhren
// diverse Vorberechnungen neu ausf
ü
hren
// Speicherbuffer neu allokieren!
// Speicherbuffer neu allokieren!
}
}
...
...
modules/video_filter/atmo/AtmoClassicConnection.cpp
View file @
ab4967ce
...
@@ -61,7 +61,7 @@ ATMO_BOOL CAtmoClassicConnection::OpenConnection() {
...
@@ -61,7 +61,7 @@ ATMO_BOOL CAtmoClassicConnection::OpenConnection() {
return
ATMO_FALSE
;
return
ATMO_FALSE
;
}
}
/* change serial settings (Speed, stopbits etc.) */
/* change serial settings (Speed, stopbits etc.) */
DCB
dcb
;
// fr comport-parameter
DCB
dcb
;
// f
ü
r comport-parameter
dcb
.
DCBlength
=
sizeof
(
DCB
);
dcb
.
DCBlength
=
sizeof
(
DCB
);
GetCommState
(
m_hComport
,
&
dcb
);
// ger current serialport settings
GetCommState
(
m_hComport
,
&
dcb
);
// ger current serialport settings
dcb
.
BaudRate
=
38400
;
// set speed
dcb
.
BaudRate
=
38400
;
// set speed
...
...
modules/video_filter/atmo/AtmoConfig.cpp
View file @
ab4967ce
...
@@ -386,7 +386,7 @@ void CAtmoConfig::UpdateZoneDefinitionCount()
...
@@ -386,7 +386,7 @@ void CAtmoConfig::UpdateZoneDefinitionCount()
{
{
if
(
getZoneCount
()
!=
m_AtmoZoneDefCount
)
if
(
getZoneCount
()
!=
m_AtmoZoneDefCount
)
{
{
// okay zonen anzahl hat sich ge
ndert - wir m
ssen neu rechnen
// okay zonen anzahl hat sich ge
ändert - wir mü
ssen neu rechnen
// und allokieren!
// und allokieren!
if
(
m_ZoneDefinitions
)
if
(
m_ZoneDefinitions
)
{
{
...
...
modules/video_filter/atmo/AtmoConnection.h
View file @
ab4967ce
...
@@ -43,24 +43,27 @@ protected:
...
@@ -43,24 +43,27 @@ protected:
public:
public:
CAtmoConnection
(
CAtmoConfig
*
cfg
);
CAtmoConnection
(
CAtmoConfig
*
cfg
);
virtual
~
CAtmoConnection
(
void
);
virtual
~
CAtmoConnection
(
void
);
virtual
ATMO_BOOL
OpenConnection
()
{
return
false
;
}
virtual
ATMO_BOOL
OpenConnection
()
=
0
;
virtual
void
CloseConnection
()
{};
virtual
void
CloseConnection
()
{};
virtual
ATMO_BOOL
isOpen
(
void
)
{
return
false
;
}
virtual
ATMO_BOOL
isOpen
(
void
)
{
return
false
;
}
virtual
ATMO_BOOL
SendData
(
pColorPacket
data
)
{
return
false
;
}
virtual
ATMO_BOOL
SendData
(
pColorPacket
data
)
=
0
;
virtual
ATMO_BOOL
setChannelColor
(
int
channel
,
tRGBColor
color
)
{
return
false
;
}
virtual
ATMO_BOOL
setChannelColor
(
int
/*channel*/
,
tRGBColor
/*color*/
)
virtual
ATMO_BOOL
setChannelValues
(
int
numValues
,
unsigned
char
*
channel_values
)
{
return
false
;
}
{
return
false
;
}
virtual
ATMO_BOOL
setChannelValues
(
int
/*num*/
,
unsigned
char
*
/*values*/
)
{
return
false
;
}
virtual
ATMO_BOOL
HardwareWhiteAdjust
(
int
global_gamma
,
virtual
ATMO_BOOL
HardwareWhiteAdjust
(
int
/*global_gamma*/
,
int
global_contrast
,
int
/*global_contrast*/
,
int
contrast_red
,
int
/*contrast_red*/
,
int
contrast_green
,
int
/*contrast_green*/
,
int
contrast_blue
,
int
/*contrast_blue*/
,
int
gamma_red
,
int
/*gamma_red*/
,
int
gamma_green
,
int
/*gamma_green*/
,
int
gamma_blue
,
int
/*gamma_blue*/
,
ATMO_BOOL
storeToEeprom
)
{
return
false
;
}
ATMO_BOOL
/*storeToEeprom*/
)
{
return
false
;
}
#if !defined(_ATMO_VLC_PLUGIN_)
#if !defined(_ATMO_VLC_PLUGIN_)
virtual
ATMO_BOOL
ShowConfigDialog
(
HINSTANCE
hInst
,
HWND
parent
,
CAtmoConfig
*
cfg
);
virtual
ATMO_BOOL
ShowConfigDialog
(
HINSTANCE
hInst
,
HWND
parent
,
CAtmoConfig
*
cfg
);
...
@@ -69,11 +72,12 @@ public:
...
@@ -69,11 +72,12 @@ public:
virtual
void
SetChannelAssignment
(
CAtmoChannelAssignment
*
ca
);
virtual
void
SetChannelAssignment
(
CAtmoChannelAssignment
*
ca
);
virtual
int
getNumChannels
()
{
return
0
;
}
virtual
int
getNumChannels
()
{
return
0
;
}
virtual
char
*
getChannelName
(
int
ch
)
{
return
NULL
;
}
virtual
char
*
getChannelName
(
int
/*ch*/
)
{
return
NULL
;
}
virtual
const
char
*
getDevicePath
()
{
return
"none"
;
}
virtual
const
char
*
getDevicePath
()
{
return
"none"
;
}
virtual
ATMO_BOOL
CreateDefaultMapping
(
CAtmoChannelAssignment
*
ca
)
{
return
false
;
}
virtual
ATMO_BOOL
CreateDefaultMapping
(
CAtmoChannelAssignment
*
/*ca*/
)
{
return
false
;
}
};
};
...
...
modules/video_filter/atmo/AtmoDefs.h
View file @
ab4967ce
...
@@ -78,7 +78,7 @@ typedef struct
...
@@ -78,7 +78,7 @@ typedef struct
// maximal Anzahl Kanle... original 5!
// maximal Anzahl Kan
ä
le... original 5!
#define CAP_MAX_NUM_ZONES 64
#define CAP_MAX_NUM_ZONES 64
// only for classic to avoid changing too much code!
// only for classic to avoid changing too much code!
// #define ATMO_MAX_NUM_CHANNELS 5
// #define ATMO_MAX_NUM_CHANNELS 5
...
@@ -116,7 +116,7 @@ enum AtmoConnectionType
...
@@ -116,7 +116,7 @@ enum AtmoConnectionType
actMoMoLight
=
6
,
actMoMoLight
=
6
,
actFnordlicht
=
7
actFnordlicht
=
7
};
};
static
const
char
*
AtmoDeviceTypes
[
]
=
{
static
const
char
AtmoDeviceTypes
[
8
][
16
]
=
{
"Atmo-Classic"
,
"Atmo-Classic"
,
"Dummy"
,
"Dummy"
,
"DMX"
,
"DMX"
,
...
...
modules/video_filter/atmo/AtmoDmxSerialConnection.cpp
View file @
ab4967ce
...
@@ -76,7 +76,7 @@ ATMO_BOOL CAtmoDmxSerialConnection::OpenConnection() {
...
@@ -76,7 +76,7 @@ ATMO_BOOL CAtmoDmxSerialConnection::OpenConnection() {
return
ATMO_FALSE
;
return
ATMO_FALSE
;
}
}
/* change serial settings (Speed, stopbits etc.) */
/* change serial settings (Speed, stopbits etc.) */
DCB
dcb
;
// fr comport-parameter
DCB
dcb
;
// f
ü
r comport-parameter
dcb
.
DCBlength
=
sizeof
(
DCB
);
dcb
.
DCBlength
=
sizeof
(
DCB
);
GetCommState
(
m_hComport
,
&
dcb
);
// ger current serialport settings
GetCommState
(
m_hComport
,
&
dcb
);
// ger current serialport settings
dcb
.
BaudRate
=
115200
;
// set speed
dcb
.
BaudRate
=
115200
;
// set speed
...
@@ -128,19 +128,6 @@ ATMO_BOOL CAtmoDmxSerialConnection::isOpen(void) {
...
@@ -128,19 +128,6 @@ ATMO_BOOL CAtmoDmxSerialConnection::isOpen(void) {
return
(
m_hComport
!=
INVALID_HANDLE_VALUE
);
return
(
m_hComport
!=
INVALID_HANDLE_VALUE
);
}
}
ATMO_BOOL
CAtmoDmxSerialConnection
::
HardwareWhiteAdjust
(
int
global_gamma
,
int
global_contrast
,
int
contrast_red
,
int
contrast_green
,
int
contrast_blue
,
int
gamma_red
,
int
gamma_green
,
int
gamma_blue
,
ATMO_BOOL
storeToEeprom
)
{
return
ATMO_FALSE
;
}
ATMO_BOOL
CAtmoDmxSerialConnection
::
SendData
(
pColorPacket
data
)
{
ATMO_BOOL
CAtmoDmxSerialConnection
::
SendData
(
pColorPacket
data
)
{
if
(
m_hComport
==
INVALID_HANDLE_VALUE
)
if
(
m_hComport
==
INVALID_HANDLE_VALUE
)
return
ATMO_FALSE
;
return
ATMO_FALSE
;
...
...
modules/video_filter/atmo/AtmoDmxSerialConnection.h
View file @
ab4967ce
...
@@ -44,16 +44,6 @@ class CAtmoDmxSerialConnection : public CAtmoConnection {
...
@@ -44,16 +44,6 @@ class CAtmoDmxSerialConnection : public CAtmoConnection {
virtual
ATMO_BOOL
SendData
(
pColorPacket
data
);
virtual
ATMO_BOOL
SendData
(
pColorPacket
data
);
virtual
ATMO_BOOL
HardwareWhiteAdjust
(
int
global_gamma
,
int
global_contrast
,
int
contrast_red
,
int
contrast_green
,
int
contrast_blue
,
int
gamma_red
,
int
gamma_green
,
int
gamma_blue
,
ATMO_BOOL
storeToEeprom
);
virtual
ATMO_BOOL
setChannelColor
(
int
channel
,
tRGBColor
color
);
virtual
ATMO_BOOL
setChannelColor
(
int
channel
,
tRGBColor
color
);
virtual
ATMO_BOOL
setChannelValues
(
int
numValues
,
unsigned
char
*
channel_values
);
virtual
ATMO_BOOL
setChannelValues
(
int
numValues
,
unsigned
char
*
channel_values
);
...
...
modules/video_filter/atmo/AtmoDynData.cpp
View file @
ab4967ce
...
@@ -169,7 +169,7 @@ char *CAtmoDynData::getWorkDir()
...
@@ -169,7 +169,7 @@ char *CAtmoDynData::getWorkDir()
void
CAtmoDynData
::
ReloadZoneDefinitionBitmaps
()
void
CAtmoDynData
::
ReloadZoneDefinitionBitmaps
()
{
{
int
i
;
int
i
;
// suchlogik fr die Bitmaps ...
// suchlogik f
ü
r die Bitmaps ...
// <WorkDir>\hardware\numchannels\zone..0..n.bmp
// <WorkDir>\hardware\numchannels\zone..0..n.bmp
// <WorkDir>\hardware\zone..0..n.bmp
// <WorkDir>\hardware\zone..0..n.bmp
// <WorkDir>\zone..0..n.bmp
// <WorkDir>\zone..0..n.bmp
...
...
modules/video_filter/atmo/AtmoMultiConnection.cpp
View file @
ab4967ce
...
@@ -58,7 +58,7 @@ HANDLE CAtmoMultiConnection::OpenDevice(char *devName)
...
@@ -58,7 +58,7 @@ HANDLE CAtmoMultiConnection::OpenDevice(char *devName)
return
INVALID_HANDLE_VALUE
;
return
INVALID_HANDLE_VALUE
;
}
}
/* change serial settings (Speed, stopbits etc.) */
/* change serial settings (Speed, stopbits etc.) */
DCB
dcb
;
// fr comport-parameter
DCB
dcb
;
// f
ü
r comport-parameter
dcb
.
DCBlength
=
sizeof
(
DCB
);
dcb
.
DCBlength
=
sizeof
(
DCB
);
GetCommState
(
hComport
,
&
dcb
);
// ger current serialport settings
GetCommState
(
hComport
,
&
dcb
);
// ger current serialport settings
dcb
.
BaudRate
=
38400
;
// set speed
dcb
.
BaudRate
=
38400
;
// set speed
...
...
modules/video_filter/atmo/FnordlichtConnection.cpp
View file @
ab4967ce
...
@@ -84,7 +84,7 @@ ATMO_BOOL CFnordlichtConnection::OpenConnection()
...
@@ -84,7 +84,7 @@ ATMO_BOOL CFnordlichtConnection::OpenConnection()
return
ATMO_FALSE
;
return
ATMO_FALSE
;
}
}
/* change serial settings (Speed, stopbits etc.) */
/* change serial settings (Speed, stopbits etc.) */
DCB
dcb
;
// fr comport-parameter
DCB
dcb
;
// f
ü
r comport-parameter
dcb
.
DCBlength
=
sizeof
(
DCB
);
dcb
.
DCBlength
=
sizeof
(
DCB
);
GetCommState
(
m_hComport
,
&
dcb
);
// ger current serialport settings
GetCommState
(
m_hComport
,
&
dcb
);
// ger current serialport settings
dcb
.
BaudRate
=
19200
;
// set speed
dcb
.
BaudRate
=
19200
;
// set speed
...
@@ -146,19 +146,6 @@ ATMO_BOOL CFnordlichtConnection::isOpen(void)
...
@@ -146,19 +146,6 @@ ATMO_BOOL CFnordlichtConnection::isOpen(void)
return
(
m_hComport
!=
INVALID_HANDLE_VALUE
);
return
(
m_hComport
!=
INVALID_HANDLE_VALUE
);
}
}
ATMO_BOOL
CFnordlichtConnection
::
HardwareWhiteAdjust
(
int
global_gamma
,
int
global_contrast
,
int
contrast_red
,
int
contrast_green
,
int
contrast_blue
,
int
gamma_red
,
int
gamma_green
,
int
gamma_blue
,
ATMO_BOOL
storeToEeprom
)
{
return
ATMO_FALSE
;
//no hardware adjust required
}
/*
/*
def fade_rgb(addr, r, g, b, step, delay)
def fade_rgb(addr, r, g, b, step, delay)
$dev.write addr.chr
$dev.write addr.chr
...
...
modules/video_filter/atmo/FnordlichtConnection.h
View file @
ab4967ce
...
@@ -62,16 +62,6 @@ class CFnordlichtConnection : public CAtmoConnection
...
@@ -62,16 +62,6 @@ class CFnordlichtConnection : public CAtmoConnection
virtual
ATMO_BOOL
SendData
(
pColorPacket
data
);
virtual
ATMO_BOOL
SendData
(
pColorPacket
data
);
virtual
ATMO_BOOL
HardwareWhiteAdjust
(
int
global_gamma
,
int
global_contrast
,
int
contrast_red
,
int
contrast_green
,
int
contrast_blue
,
int
gamma_red
,
int
gamma_green
,
int
gamma_blue
,
ATMO_BOOL
storeToEeprom
);
virtual
int
getAmountFnordlichter
();
virtual
int
getAmountFnordlichter
();
virtual
const
char
*
getDevicePath
()
{
return
"fnordlicht"
;
}
virtual
const
char
*
getDevicePath
()
{
return
"fnordlicht"
;
}
...
...
modules/video_filter/atmo/MoMoConnection.cpp
View file @
ab4967ce
...
@@ -61,7 +61,7 @@ ATMO_BOOL CMoMoConnection::OpenConnection() {
...
@@ -61,7 +61,7 @@ ATMO_BOOL CMoMoConnection::OpenConnection() {
return
ATMO_FALSE
;
return
ATMO_FALSE
;
}
}
/* change serial settings (Speed, stopbits etc.) */
/* change serial settings (Speed, stopbits etc.) */
DCB
dcb
;
// fr comport-parameter
DCB
dcb
;
// f
ü
r comport-parameter
dcb
.
DCBlength
=
sizeof
(
DCB
);
dcb
.
DCBlength
=
sizeof
(
DCB
);
GetCommState
(
m_hComport
,
&
dcb
);
// ger current serialport settings
GetCommState
(
m_hComport
,
&
dcb
);
// ger current serialport settings
dcb
.
BaudRate
=
9600
;
// set speed
dcb
.
BaudRate
=
9600
;
// set speed
...
@@ -113,19 +113,6 @@ ATMO_BOOL CMoMoConnection::isOpen(void) {
...
@@ -113,19 +113,6 @@ ATMO_BOOL CMoMoConnection::isOpen(void) {
return
(
m_hComport
!=
INVALID_HANDLE_VALUE
);
return
(
m_hComport
!=
INVALID_HANDLE_VALUE
);
}
}
ATMO_BOOL
CMoMoConnection
::
HardwareWhiteAdjust
(
int
global_gamma
,
int
global_contrast
,
int
contrast_red
,
int
contrast_green
,
int
contrast_blue
,
int
gamma_red
,
int
gamma_green
,
int
gamma_blue
,
ATMO_BOOL
storeToEeprom
)
{
return
ATMO_FALSE
;
}
ATMO_BOOL
CMoMoConnection
::
SendData
(
pColorPacket
data
)
{
ATMO_BOOL
CMoMoConnection
::
SendData
(
pColorPacket
data
)
{
if
(
m_hComport
==
INVALID_HANDLE_VALUE
)
if
(
m_hComport
==
INVALID_HANDLE_VALUE
)
return
ATMO_FALSE
;
return
ATMO_FALSE
;
...
...
modules/video_filter/atmo/MoMoConnection.h
View file @
ab4967ce
...
@@ -40,16 +40,6 @@ class CMoMoConnection : public CAtmoConnection {
...
@@ -40,16 +40,6 @@ class CMoMoConnection : public CAtmoConnection {
virtual
ATMO_BOOL
SendData
(
pColorPacket
data
);
virtual
ATMO_BOOL
SendData
(
pColorPacket
data
);
virtual
ATMO_BOOL
HardwareWhiteAdjust
(
int
global_gamma
,
int
global_contrast
,
int
contrast_red
,
int
contrast_green
,
int
contrast_blue
,
int
gamma_red
,
int
gamma_green
,
int
gamma_blue
,
ATMO_BOOL
storeToEeprom
);
virtual
int
getNumChannels
();
virtual
int
getNumChannels
();
...
...
modules/video_filter/atmo/README.txt
View file @
ab4967ce
This piece of software is based on the software and descriptions mentioned below -
This piece of software is based on the software and descriptions mentioned below -
(re)Written by: Igor / Atmo (aka Andr
é
Weber) - WeberAndre@gmx.de
(re)Written by: Igor / Atmo (aka Andr
é
Weber) - WeberAndre@gmx.de
Matthiaz
Matthiaz
MacGyver2k
MacGyver2k
...
...
modules/video_filter/atmo/atmo.cpp
View file @
ab4967ce
...
@@ -1558,7 +1558,6 @@ if this fails fallback to the buildin software
...
@@ -1558,7 +1558,6 @@ if this fails fallback to the buildin software
*/
*/
static
void
Atmo_SetupParameters
(
filter_t
*
p_filter
)
static
void
Atmo_SetupParameters
(
filter_t
*
p_filter
)
{
{
char
*
psz_path
;
filter_sys_t
*
p_sys
=
p_filter
->
p_sys
;
filter_sys_t
*
p_sys
=
p_filter
->
p_sys
;
...
@@ -2450,7 +2449,7 @@ static void CheckAndStopFadeThread(filter_t *p_filter)
...
@@ -2450,7 +2449,7 @@ static void CheckAndStopFadeThread(filter_t *p_filter)
* StateCallback: Callback for the inputs variable "State" to get notified
* StateCallback: Callback for the inputs variable "State" to get notified
* about Pause and Continue Playback events.
* about Pause and Continue Playback events.
*****************************************************************************/
*****************************************************************************/
static
int
StateCallback
(
vlc_object_t
*
p_this
,
char
const
*
psz_cmd
,
static
int
StateCallback
(
vlc_object_t
*
,
char
const
*
,
vlc_value_t
oldval
,
vlc_value_t
newval
,
vlc_value_t
oldval
,
vlc_value_t
newval
,
void
*
p_data
)
void
*
p_data
)
{
{
...
@@ -2551,7 +2550,7 @@ static void DelStateVariableCallback( filter_t *p_filter )
...
@@ -2551,7 +2550,7 @@ static void DelStateVariableCallback( filter_t *p_filter )
* StateCallback: Callback for the inputs variable "State" to get notified
* StateCallback: Callback for the inputs variable "State" to get notified
* about Pause and Continue Playback events.
* about Pause and Continue Playback events.
*****************************************************************************/
*****************************************************************************/
static
int
AtmoSettingsCallback
(
vlc_object_t
*
p_this
,
char
const
*
psz_var
,
static
int
AtmoSettingsCallback
(
vlc_object_t
*
,
char
const
*
psz_var
,
vlc_value_t
oldval
,
vlc_value_t
newval
,
vlc_value_t
oldval
,
vlc_value_t
newval
,
void
*
p_data
)
void
*
p_data
)
{
{
...
...
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