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
0aeed985
Commit
0aeed985
authored
May 28, 2002
by
Sam Hocevar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* ./plugins/filters/*: fixed inconsistencies.
parent
e9577415
Changes
5
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
45 additions
and
38 deletions
+45
-38
plugins/filter/clone.c
plugins/filter/clone.c
+3
-3
plugins/filter/deinterlace.c
plugins/filter/deinterlace.c
+22
-16
plugins/filter/distort.c
plugins/filter/distort.c
+4
-4
plugins/filter/transform.c
plugins/filter/transform.c
+9
-8
plugins/filter/wall.c
plugins/filter/wall.c
+7
-7
No files found.
plugins/filter/clone.c
View file @
0aeed985
...
...
@@ -2,7 +2,7 @@
* clone.c : Clone video plugin for vlc
*****************************************************************************
* Copyright (C) 2002 VideoLAN
* $Id: clone.c,v 1.
3 2002/05/27 19:35:41
sam Exp $
* $Id: clone.c,v 1.
4 2002/05/28 22:49:25
sam Exp $
*
* Authors: Samuel Hocevar <sam@zoy.org>
*
...
...
@@ -45,7 +45,7 @@ static void vout_getfunctions( function_list_t * p_function_list );
*****************************************************************************/
MODULE_CONFIG_START
ADD_CATEGORY_HINT
(
N_
(
"Miscellaneous"
),
NULL
)
ADD_INTEGER
(
"clone
_
count"
,
2
,
NULL
,
N_
(
"Number of clones"
),
ADD_INTEGER
(
"clone
-
count"
,
2
,
NULL
,
N_
(
"Number of clones"
),
N_
(
"Select the number of videowindows in which to clone the video"
)
)
MODULE_CONFIG_STOP
...
...
@@ -122,7 +122,7 @@ static int vout_Create( vout_thread_t *p_vout )
}
/* Look what method was requested */
p_vout
->
p_sys
->
i_clones
=
config_GetIntVariable
(
"clone
_
count"
);
p_vout
->
p_sys
->
i_clones
=
config_GetIntVariable
(
"clone
-
count"
);
p_vout
->
p_sys
->
i_clones
=
__MAX
(
1
,
__MIN
(
99
,
p_vout
->
p_sys
->
i_clones
)
);
...
...
plugins/filter/deinterlace.c
View file @
0aeed985
...
...
@@ -2,7 +2,7 @@
* deinterlace.c : deinterlacer plugin for vlc
*****************************************************************************
* Copyright (C) 2000, 2001 VideoLAN
* $Id: deinterlace.c,v 1.1
1 2002/05/27 19:35:41
sam Exp $
* $Id: deinterlace.c,v 1.1
2 2002/05/28 22:49:25
sam Exp $
*
* Authors: Samuel Hocevar <sam@zoy.org>
*
...
...
@@ -50,7 +50,7 @@ static void *memblend( void *, const void *, const void *, size_t );
*****************************************************************************/
MODULE_CONFIG_START
ADD_CATEGORY_HINT
(
N_
(
"Miscellaneous"
),
NULL
)
ADD_STRING
(
"deinterlace
_
mode"
,
"bob"
,
NULL
,
N_
(
"Deinterlace mode"
),
ADD_STRING
(
"deinterlace
-
mode"
,
"bob"
,
NULL
,
N_
(
"Deinterlace mode"
),
N_
(
"one of 'bob' and 'blend'"
)
)
MODULE_CONFIG_STOP
...
...
@@ -127,13 +127,18 @@ static int vout_Create( vout_thread_t *p_vout )
}
/* Look what method was requested */
if
(
!
(
psz_method
=
config_GetPszVariable
(
"filter"
))
)
psz_method
=
config_GetPszVariable
(
"deinterlace-mode"
);
if
(
psz_method
==
NULL
)
{
intf_ErrMsg
(
"vout error: configuration variable %s empty"
,
"filter"
);
return
(
1
);
"deinterlace-mode"
);
intf_ErrMsg
(
"filter error: no valid deinterlace mode provided, "
"using deinterlace:bob"
);
p_vout
->
p_sys
->
i_mode
=
DEINTERLACE_MODE_BOB
;
}
else
{
if
(
!
strcmp
(
psz_method
,
"bob"
)
)
{
p_vout
->
p_sys
->
i_mode
=
DEINTERLACE_MODE_BOB
;
...
...
@@ -148,6 +153,7 @@ static int vout_Create( vout_thread_t *p_vout )
"using deinterlace:bob"
);
p_vout
->
p_sys
->
i_mode
=
DEINTERLACE_MODE_BOB
;
}
}
free
(
psz_method
);
...
...
plugins/filter/distort.c
View file @
0aeed985
...
...
@@ -2,7 +2,7 @@
* distort.c : Misc video effects plugin for vlc
*****************************************************************************
* Copyright (C) 2000, 2001 VideoLAN
* $Id: distort.c,v 1.1
2 2002/05/27 19:35:41
sam Exp $
* $Id: distort.c,v 1.1
3 2002/05/28 22:49:25
sam Exp $
*
* Authors: Samuel Hocevar <sam@zoy.org>
*
...
...
@@ -50,7 +50,7 @@ static void vout_getfunctions( function_list_t * p_function_list );
*****************************************************************************/
MODULE_CONFIG_START
ADD_CATEGORY_HINT
(
N_
(
"Miscellaneous"
),
NULL
)
ADD_STRING
(
"distort
_
mode"
,
"wave"
,
NULL
,
N_
(
"distort mode"
),
ADD_STRING
(
"distort
-
mode"
,
"wave"
,
NULL
,
N_
(
"distort mode"
),
N_
(
"one of
\"
wave
\"
and
\"
ripple
\"
"
)
)
MODULE_CONFIG_STOP
...
...
@@ -161,11 +161,11 @@ static int vout_Create( vout_thread_t *p_vout )
/* No method given in commandline. Look what method was
requested in configuration system */
if
(
!
(
psz_method
=
psz_method_tmp
=
config_GetPszVariable
(
"distort
_
mode"
))
)
=
config_GetPszVariable
(
"distort
-
mode"
))
)
{
intf_ErrMsg
(
"vout error: configuration variable %s empty "
"using wave"
,
"distort
_
mode"
);
"distort
-
mode"
);
p_vout
->
p_sys
->
i_mode
=
DISTORT_MODE_WAVE
;
}
else
{
...
...
plugins/filter/transform.c
View file @
0aeed985
...
...
@@ -2,7 +2,7 @@
* transform.c : transform image plugin for vlc
*****************************************************************************
* Copyright (C) 2000, 2001 VideoLAN
* $Id: transform.c,v 1.1
1 2002/05/27 19:35:41
sam Exp $
* $Id: transform.c,v 1.1
2 2002/05/28 22:49:25
sam Exp $
*
* Authors: Samuel Hocevar <sam@zoy.org>
*
...
...
@@ -51,7 +51,7 @@ static void vout_getfunctions( function_list_t * p_function_list );
*****************************************************************************/
MODULE_CONFIG_START
ADD_CATEGORY_HINT
(
N_
(
"Miscellaneous"
),
NULL
)
ADD_STRING
(
"transform
_
type"
,
"90"
,
NULL
,
N_
(
"Transform type"
),
ADD_STRING
(
"transform
-
type"
,
"90"
,
NULL
,
N_
(
"Transform type"
),
N_
(
"One of '90', '180', '270', 'hflip' and 'vflip'"
))
MODULE_CONFIG_STOP
...
...
@@ -117,7 +117,7 @@ static void vout_getfunctions( function_list_t * p_function_list )
*****************************************************************************/
static
int
vout_Create
(
vout_thread_t
*
p_vout
)
{
char
*
psz_method
,
*
psz_method_tmp
;
char
*
psz_method
;
/* Allocate structure */
p_vout
->
p_sys
=
malloc
(
sizeof
(
vout_sys_t
)
);
...
...
@@ -128,11 +128,12 @@ static int vout_Create( vout_thread_t *p_vout )
}
/* Look what method was requested */
if
(
!
(
psz_method
=
psz_method_tmp
=
config_GetPszVariable
(
"transform_type"
))
)
psz_method
=
config_GetPszVariable
(
"transform-type"
);
if
(
psz_method
==
NULL
)
{
intf_ErrMsg
(
"vout error: configuration variable %s empty"
,
"transform
_
type"
);
"transform
-
type"
);
intf_ErrMsg
(
"filter error: no valid transform mode provided, "
"using '90'"
);
p_vout
->
p_sys
->
i_mode
=
TRANSFORM_MODE_90
;
...
...
@@ -172,9 +173,9 @@ static int vout_Create( vout_thread_t *p_vout )
p_vout
->
p_sys
->
i_mode
=
TRANSFORM_MODE_90
;
p_vout
->
p_sys
->
b_rotation
=
1
;
}
}
free
(
psz_method_tmp
);
free
(
psz_method
);
}
return
(
0
);
}
...
...
plugins/filter/wall.c
View file @
0aeed985
...
...
@@ -2,7 +2,7 @@
* wall.c : Wall video plugin for vlc
*****************************************************************************
* Copyright (C) 2000, 2001 VideoLAN
* $Id: wall.c,v 1.1
8 2002/05/27 19:35:41
sam Exp $
* $Id: wall.c,v 1.1
9 2002/05/28 22:49:25
sam Exp $
*
* Authors: Samuel Hocevar <sam@zoy.org>
*
...
...
@@ -45,13 +45,13 @@ static void vout_getfunctions( function_list_t * p_function_list );
*****************************************************************************/
MODULE_CONFIG_START
ADD_CATEGORY_HINT
(
N_
(
"Miscellaneous"
),
NULL
)
ADD_INTEGER
(
"wall
_
cols"
,
3
,
NULL
,
N_
(
"Number of columns"
),
ADD_INTEGER
(
"wall
-
cols"
,
3
,
NULL
,
N_
(
"Number of columns"
),
N_
(
"Select the number of horizontal videowindows in which "
"to split the video"
)
)
ADD_INTEGER
(
"wall
_
rows"
,
3
,
NULL
,
N_
(
"Number of rows"
),
ADD_INTEGER
(
"wall
-
rows"
,
3
,
NULL
,
N_
(
"Number of rows"
),
N_
(
"Select the number of vertical videowindows in which "
"to split the video"
)
)
ADD_STRING
(
"wall
_
active"
,
NULL
,
NULL
,
N_
(
"Active windows"
),
ADD_STRING
(
"wall
-
active"
,
NULL
,
NULL
,
N_
(
"Active windows"
),
N_
(
"comma separated list of active windows, defaults to all"
)
)
MODULE_CONFIG_STOP
...
...
@@ -138,8 +138,8 @@ static int vout_Create( vout_thread_t *p_vout )
}
/* Look what method was requested */
p_vout
->
p_sys
->
i_col
=
config_GetIntVariable
(
"wall
_
cols"
);
p_vout
->
p_sys
->
i_row
=
config_GetIntVariable
(
"wall
_
rows"
);
p_vout
->
p_sys
->
i_col
=
config_GetIntVariable
(
"wall
-
cols"
);
p_vout
->
p_sys
->
i_row
=
config_GetIntVariable
(
"wall
-
rows"
);
p_vout
->
p_sys
->
i_col
=
__MAX
(
1
,
__MIN
(
15
,
p_vout
->
p_sys
->
i_col
)
);
p_vout
->
p_sys
->
i_row
=
__MAX
(
1
,
__MIN
(
15
,
p_vout
->
p_sys
->
i_row
)
);
...
...
@@ -158,7 +158,7 @@ static int vout_Create( vout_thread_t *p_vout )
return
(
1
);
}
psz_method_tmp
=
psz_method
=
config_GetPszVariable
(
"wall
_
active"
);
psz_method_tmp
=
psz_method
=
config_GetPszVariable
(
"wall
-
active"
);
/* If no trailing vout are specified, take them all */
if
(
psz_method
==
NULL
)
...
...
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