Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
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-gpu
Commits
cf4eaf99
Commit
cf4eaf99
authored
Sep 28, 2007
by
Rafaël Carré
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
telepathy: fixes [22301]. '-' is forbidden in variable names.
parent
d6bdaf03
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
modules/misc/notify/telepathy.c
modules/misc/notify/telepathy.c
+4
-4
No files found.
modules/misc/notify/telepathy.c
View file @
cf4eaf99
...
...
@@ -40,7 +40,7 @@ struct intf_sys_t
char
*
psz_format
;
DBusConnection
*
p_conn
;
int
i_id
;
int
i_item
-
changes
;
int
i_item
_
changes
;
};
/*****************************************************************************
...
...
@@ -163,7 +163,7 @@ static int ItemChange( vlc_object_t *p_this, const char *psz_var,
if
(
!
strncmp
(
"playlist-current"
,
psz_var
,
16
)
)
{
/* stores the current input item id */
p_intf
->
p_sys
->
i_id
=
newval
.
i_int
;
p_intf
->
p_sys
->
i_item
-
changes
=
0
;
p_intf
->
p_sys
->
i_item
_
changes
=
0
;
}
else
{
...
...
@@ -171,9 +171,9 @@ static int ItemChange( vlc_object_t *p_this, const char *psz_var,
return
VLC_SUCCESS
;
/* some variable bitrate inputs call "item-change callbacks each time
* their length is updated, that is several times per second. */
if
(
p_intf
->
p_sys
->
i_item
-
changes
>
5
)
if
(
p_intf
->
p_sys
->
i_item
_
changes
>
5
)
return
VLC_SUCCESS
;
p_intf
->
p_sys
->
i_item
-
changes
++
;
p_intf
->
p_sys
->
i_item
_
changes
++
;
}
...
...
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