Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
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-2-2
Commits
9ec7c59b
Commit
9ec7c59b
authored
Oct 01, 2006
by
Antoine Cellerier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
The time video filter doesn't exist anymore.
parent
73433b8c
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
85 deletions
+0
-85
modules/control/rc.c
modules/control/rc.c
+0
-85
No files found.
modules/control/rc.c
View file @
9ec7c59b
...
@@ -433,22 +433,6 @@ static void RegisterCallbacks( intf_thread_t *p_intf )
...
@@ -433,22 +433,6 @@ static void RegisterCallbacks( intf_thread_t *p_intf )
VLC_VAR_INTEGER
|
VLC_VAR_ISCOMMAND
);
VLC_VAR_INTEGER
|
VLC_VAR_ISCOMMAND
);
var_AddCallback
(
p_intf
,
"mosaic-keep-aspect-ratio"
,
Other
,
NULL
);
var_AddCallback
(
p_intf
,
"mosaic-keep-aspect-ratio"
,
Other
,
NULL
);
/* time on the fly items */
var_Create
(
p_intf
,
"time-format"
,
VLC_VAR_VOID
|
VLC_VAR_ISCOMMAND
);
var_AddCallback
(
p_intf
,
"time-format"
,
Other
,
NULL
);
var_Create
(
p_intf
,
"time-x"
,
VLC_VAR_INTEGER
|
VLC_VAR_ISCOMMAND
);
var_AddCallback
(
p_intf
,
"time-x"
,
Other
,
NULL
);
var_Create
(
p_intf
,
"time-y"
,
VLC_VAR_INTEGER
|
VLC_VAR_ISCOMMAND
);
var_AddCallback
(
p_intf
,
"time-y"
,
Other
,
NULL
);
var_Create
(
p_intf
,
"time-position"
,
VLC_VAR_INTEGER
|
VLC_VAR_ISCOMMAND
);
var_AddCallback
(
p_intf
,
"time-position"
,
Other
,
NULL
);
var_Create
(
p_intf
,
"time-color"
,
VLC_VAR_INTEGER
|
VLC_VAR_ISCOMMAND
);
var_AddCallback
(
p_intf
,
"time-color"
,
Other
,
NULL
);
var_Create
(
p_intf
,
"time-opacity"
,
VLC_VAR_INTEGER
|
VLC_VAR_ISCOMMAND
);
var_AddCallback
(
p_intf
,
"time-opacity"
,
Other
,
NULL
);
var_Create
(
p_intf
,
"time-size"
,
VLC_VAR_INTEGER
|
VLC_VAR_ISCOMMAND
);
var_AddCallback
(
p_intf
,
"time-size"
,
Other
,
NULL
);
/* logo on the fly items */
/* logo on the fly items */
var_Create
(
p_intf
,
"logo-file"
,
VLC_VAR_VOID
|
VLC_VAR_ISCOMMAND
);
var_Create
(
p_intf
,
"logo-file"
,
VLC_VAR_VOID
|
VLC_VAR_ISCOMMAND
);
var_AddCallback
(
p_intf
,
"logo-file"
,
Other
,
NULL
);
var_AddCallback
(
p_intf
,
"logo-file"
,
Other
,
NULL
);
...
@@ -951,14 +935,6 @@ static void Help( intf_thread_t *p_intf, vlc_bool_t b_longhelp)
...
@@ -951,14 +935,6 @@ static void Help( intf_thread_t *p_intf, vlc_bool_t b_longhelp)
msg_rc
(
_
(
"| marq-timeout T. . . . . . . . . . timeout, in ms"
));
msg_rc
(
_
(
"| marq-timeout T. . . . . . . . . . timeout, in ms"
));
msg_rc
(
_
(
"| marq-size # . . . . . . . . font size, in pixels"
));
msg_rc
(
_
(
"| marq-size # . . . . . . . . font size, in pixels"
));
msg_rc
(
"| "
);
msg_rc
(
"| "
);
msg_rc
(
_
(
"| time-format STRING . . . overlay STRING in video"
));
msg_rc
(
_
(
"| time-x X . . . . . . . . . . . .offset from left"
));
msg_rc
(
_
(
"| time-y Y . . . . . . . . . . . . offset from top"
));
msg_rc
(
_
(
"| time-position #. . . . . . . . relative position"
));
msg_rc
(
_
(
"| time-color # . . . . . . . . . . font color, RGB"
));
msg_rc
(
_
(
"| time-opacity # . . . . . . . . . . . . . opacity"
));
msg_rc
(
_
(
"| time-size # . . . . . . . . font size, in pixels"
));
msg_rc
(
"| "
);
msg_rc
(
_
(
"| logo-file STRING . . .the overlay file path/name"
));
msg_rc
(
_
(
"| logo-file STRING . . .the overlay file path/name"
));
msg_rc
(
_
(
"| logo-x X . . . . . . . . . . . .offset from left"
));
msg_rc
(
_
(
"| logo-x X . . . . . . . . . . . .offset from left"
));
msg_rc
(
_
(
"| logo-y Y . . . . . . . . . . . . offset from top"
));
msg_rc
(
_
(
"| logo-y Y . . . . . . . . . . . . offset from top"
));
...
@@ -1662,67 +1638,6 @@ static int Other( vlc_object_t *p_this, char const *psz_cmd,
...
@@ -1662,67 +1638,6 @@ static int Other( vlc_object_t *p_this, char const *psz_cmd,
var_Set
(
p_input
->
p_libvlc_global
,
"mosaic-keep-aspect-ratio"
,
val
);
var_Set
(
p_input
->
p_libvlc_global
,
"mosaic-keep-aspect-ratio"
,
val
);
}
}
}
}
else
if
(
!
strcmp
(
psz_cmd
,
"time-format"
)
)
{
if
(
strlen
(
newval
.
psz_string
)
>
0
)
{
val
.
psz_string
=
newval
.
psz_string
;
var_Set
(
p_input
->
p_libvlc_global
,
"time-format"
,
val
);
}
else
{
val
.
psz_string
=
""
;
var_Set
(
p_input
->
p_libvlc_global
,
"time-format"
,
val
);
}
}
else
if
(
!
strcmp
(
psz_cmd
,
"time-x"
)
)
{
if
(
strlen
(
newval
.
psz_string
)
>
0
)
{
val
.
i_int
=
atoi
(
newval
.
psz_string
);
var_Set
(
p_input
->
p_libvlc_global
,
"time-x"
,
val
);
}
}
else
if
(
!
strcmp
(
psz_cmd
,
"time-y"
)
)
{
if
(
strlen
(
newval
.
psz_string
)
>
0
)
{
val
.
i_int
=
atoi
(
newval
.
psz_string
);
var_Set
(
p_input
->
p_libvlc_global
,
"time-y"
,
val
);
}
}
else
if
(
!
strcmp
(
psz_cmd
,
"time-position"
)
)
{
if
(
strlen
(
newval
.
psz_string
)
>
0
)
{
val
.
i_int
=
atoi
(
newval
.
psz_string
);
var_Set
(
p_input
->
p_libvlc_global
,
"time-position"
,
val
);
}
}
else
if
(
!
strcmp
(
psz_cmd
,
"time-color"
)
)
{
if
(
strlen
(
newval
.
psz_string
)
>
0
)
{
val
.
i_int
=
strtol
(
newval
.
psz_string
,
NULL
,
0
);
var_Set
(
p_input
->
p_libvlc_global
,
"time-color"
,
val
);
}
}
else
if
(
!
strcmp
(
psz_cmd
,
"time-opacity"
)
)
{
if
(
strlen
(
newval
.
psz_string
)
>
0
)
{
val
.
i_int
=
strtol
(
newval
.
psz_string
,
NULL
,
0
);
var_Set
(
p_input
->
p_libvlc_global
,
"time-opacity"
,
val
);
}
}
else
if
(
!
strcmp
(
psz_cmd
,
"time-size"
)
)
{
if
(
strlen
(
newval
.
psz_string
)
>
0
)
{
val
.
i_int
=
atoi
(
newval
.
psz_string
);
var_Set
(
p_input
->
p_libvlc_global
,
"time-size"
,
val
);
}
}
else
if
(
!
strcmp
(
psz_cmd
,
"logo-file"
)
)
else
if
(
!
strcmp
(
psz_cmd
,
"logo-file"
)
)
{
{
if
(
strlen
(
newval
.
psz_string
)
>
0
)
if
(
strlen
(
newval
.
psz_string
)
>
0
)
...
...
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